/* Music Vault - Raw Frequency Rebrand */

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core colors - no gold! */
  --frequency-red: #ff3b3b;
  --frequency-cyan: #00e5ff;
  --deep-black: #0a0a0a;
  --carbon: #1a1a1a;
  --static: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-dim: #606060;

  /* Signal colors */
  --signal-active: #00ff88;
  --signal-warn: #ff9500;
  --signal-error: #ff3b3b;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--deep-black);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Animated background - frequency waves */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
      radial-gradient(circle at 20% 50%, rgba(255, 59, 59, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.02) 0%, transparent 50%),
      radial-gradient(circle at 40% 20%, rgba(0, 255, 136, 0.01) 0%, transparent 50%);
  z-index: -2;
}

/* Signal lines animation */
.signal-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  animation: signalFadeIn 2s ease forwards;
}

.signal-lines::before,
.signal-lines::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
  transparent,
  var(--frequency-cyan) 20%,
  transparent 40%,
  var(--frequency-red) 60%,
  transparent 80%
  );
  animation: scanline 8s linear infinite;
}

.signal-lines::before {
  top: 30%;
  opacity: 0.1;
}

.signal-lines::after {
  top: 70%;
  opacity: 0.1;
  animation-delay: -4s;
}

@keyframes signalFadeIn {
  to { opacity: 1; }
}

@keyframes scanline {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 32px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
  backdrop-filter: blur(20px);
  z-index: 100;
  transform: translateY(-100%);
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes slideDown {
  to { transform: translateY(0); }
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.iiiisoul-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
  border-radius: 8px;
}

.vault-branding {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.artist-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  line-height: 1;
}

.vault-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  font-weight: 600;
}

.back-to-doughjo {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  position: relative;
}

.back-to-doughjo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--frequency-cyan);
  transition: width 0.3s;
}

.back-to-doughjo:hover {
  color: var(--text-primary);
}

.back-to-doughjo:hover::after {
  width: 100%;
}

/* Main content */
.access-gate {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  text-align: center;
  position: relative;
}

/* Hero section */
.hero {
  max-width: 900px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Frequency counter badge */
.frequency-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  margin-bottom: 32px;
  transition: all 0.5s;
  opacity: 0;
  transform: scale(0.9);
}

.frequency-counter.active {
  opacity: 1;
  transform: scale(1);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { border-color: rgba(0, 255, 136, 0.2); }
  50% { border-color: rgba(0, 255, 136, 0.4); }
}

.track-count {
  color: var(--signal-active);
  font-weight: 700;
  font-size: 1.1rem;
}

.badge-text {
  color: var(--text-secondary);
}

/* Hero title with glitch effect */
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
}

.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.hero-title:hover::before {
  animation: glitch-1 0.3s ease infinite;
  color: var(--frequency-cyan);
  opacity: 0.8;
}

.hero-title:hover::after {
  animation: glitch-2 0.3s ease infinite reverse;
  color: var(--frequency-red);
  opacity: 0.8;
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(2px, -2px); }
  40% { transform: translate(2px, 2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(-2px, 2px); }
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Access cards */
.access-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 800px;
  width: 100%;
  margin-bottom: 60px;
}

.access-card {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid var(--static);
  border-radius: 12px;
  padding: 48px 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.access-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Signal indicator */
.signal-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-error);
  animation: signalBlink 2s ease infinite;
}

.access-card:hover .signal-indicator {
  background: var(--signal-active);
  animation: none;
}

@keyframes signalBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Card hover effects */
.access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  transition: left 0.6s;
}

.access-card:hover::before {
  left: 100%;
}

.token-path {
  border-color: rgba(0, 229, 255, 0.2);
}

.token-path::before {
  color: var(--frequency-cyan);
}

.token-path:hover {
  background: rgba(0, 229, 255, 0.02);
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
}

.subscription-path {
  border-color: rgba(255, 59, 59, 0.2);
}

.subscription-path::before {
  color: var(--frequency-red);
}

.subscription-path:hover {
  background: rgba(255, 59, 59, 0.02);
  border-color: rgba(255, 59, 59, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.1);
}

/* Card content */
.card-header {
  margin-bottom: 24px;
}

.frequency-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.8); }
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-subtitle {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-body {
  margin-bottom: 32px;
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
}

.feature-list {
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-check {
  color: var(--signal-active);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

/* Buttons */
.access-button {
  width: 100%;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.token-button {
  background: transparent;
  color: var(--frequency-cyan);
  border: 2px solid var(--frequency-cyan);
}

.token-button:hover {
  background: var(--frequency-cyan);
  color: var(--deep-black);
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.subscription-button {
  background: transparent;
  color: var(--frequency-red);
  border: 2px solid var(--frequency-red);
}

.subscription-button:hover {
  background: var(--frequency-red);
  color: var(--deep-black);
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(255, 59, 59, 0.4);
}

.price-tag {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
}

/* Footer */
.footer-text {
  color: var(--text-dim);
  font-size: 0.875rem;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s;
}

.artist-signature {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Loading state */
.loaded .hero-title {
  animation: frequencyGlow 3s ease infinite alternate;
}

@keyframes frequencyGlow {
  0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.1); }
  100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
}

/* Bottom Navigation */
.music-vault-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: rgba(10, 10, 14, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(57, 255, 20, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  padding: 0 10px;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
}

.music-vault-nav-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border-radius: 8px;
  min-width: 70px;
  position: relative;
}

.music-vault-nav-button:hover {
  color: #39FF14;
  background: rgba(57, 255, 20, 0.05);
}

.music-vault-nav-button.active {
  color: #39FF14;
}

.music-vault-nav-button.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #39FF14;
  border-radius: 0 0 3px 3px;
}

.music-vault-nav-icon {
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-vault-nav-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.music-vault-nav-subtitle {
  font-size: 0.6rem;
  opacity: 0.7;
  white-space: nowrap;
}

/* Adjust main content to account for bottom nav */
.access-gate {
  padding-bottom: 100px;
}

/* Tablet and desktop */
@media (min-width: 769px) {
  .music-vault-bottom-nav {
    height: 70px;
    padding: 0 20px;
  }

  .music-vault-nav-button {
    padding: 12px 20px;
  }

  .music-vault-nav-icon {
    font-size: 26px;
  }

  .music-vault-nav-label {
    font-size: 0.75rem;
  }
}

/* Ultra-wide screen optimizations */
@media (min-width: 1800px) {
  .music-vault-bottom-nav {
    height: 75px;
  }

  .music-vault-nav-icon {
    font-size: 28px;
  }

  .music-vault-nav-label {
    font-size: 0.8rem;
  }
}

/* iOS Safari safe area support */
@supports (-webkit-touch-callout: none) {
  .music-vault-bottom-nav {
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(65px + env(safe-area-inset-bottom));
  }

  @media (min-width: 769px) {
    .music-vault-bottom-nav {
      height: calc(70px + env(safe-area-inset-bottom));
    }
  }

  @media (min-width: 1800px) {
    .music-vault-bottom-nav {
      height: calc(75px + env(safe-area-inset-bottom));
    }
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .header {
    padding: 20px;
  }

  .header-content {
    flex-direction: column;
    gap: 16px;
  }

  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .vault-branding {
    align-items: center;
  }

  .access-gate {
    padding: 100px 20px 100px;
  }

  .hero {
    margin-bottom: 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .access-options {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .access-card {
    padding: 32px 24px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .music-vault-nav-icon {
    font-size: 22px;
  }

  .music-vault-nav-label {
    font-size: 0.65rem;
  }
}
/* ==========================================
   VAULT UNLOCK MODAL STYLES
   ========================================== */

/* Modal overlay */
.vault-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.vault-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Modal content */
.vault-modal-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Close button */
.vault-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.vault-modal-close:hover {
  background: rgba(255, 59, 59, 0.2);
  border-color: var(--frequency-red);
  color: var(--frequency-red);
  transform: rotate(90deg);
}

/* Modal header */
.vault-modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.vault-modal-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.vault-modal-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* User token balance display */
.user-token-balance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 100px;
  font-size: 1rem;
  margin-top: 10px;
}

.balance-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.balance-amount {
  color: var(--signal-active);
  font-weight: 800;
  font-size: 1.2rem;
}

.balance-token {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Tiers grid */
.vault-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.loading-tiers {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.5);
}

/* Tier card */
.vault-tier-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.vault-tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.vault-tier-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.vault-tier-card.disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* Recommended badge */
.vault-tier-card.recommended {
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(0, 229, 255, 0.05);
}

.recommended-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--frequency-cyan);
  color: var(--deep-black);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Legendary badge */
.legendary-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Tier content */
.tier-header {
  margin-bottom: 20px;
  margin-top: 20px;
}

.tier-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.tier-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.tier-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.tier-cost {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--signal-active);
  line-height: 1;
}

.tier-token-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.tier-duration {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.tier-alt-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

/* Tier unlock button */
.tier-unlock-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--signal-active) 0%, #00cc6a 100%);
  color: var(--deep-black);
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier-unlock-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.tier-unlock-btn.disabled,
.tier-unlock-btn:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.tier-help-text {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

.tier-help-text a {
  color: var(--signal-active);
  text-decoration: none;
  font-weight: 600;
}

.tier-help-text a:hover {
  text-decoration: underline;
}

/* Modal footer */
.vault-modal-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vault-modal-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* Spinner for loading states */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .vault-modal-content {
    padding: 30px 20px;
    max-height: 85vh;
  }

  .vault-modal-title {
    font-size: 1.5rem;
  }

  .vault-modal-subtitle {
    font-size: 0.9rem;
  }

  .user-token-balance {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .balance-amount {
    font-size: 1.1rem;
  }

  .vault-tiers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vault-tier-card {
    padding: 24px 20px;
  }

  .tier-name {
    font-size: 1.1rem;
  }

  .tier-cost {
    font-size: 2rem;
  }

  .recommended-badge,
  .legendary-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
}

/* Success overlay animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scrollbar styling for modal */
.vault-modal-content::-webkit-scrollbar {
  width: 8px;
}

.vault-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.vault-modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, 0.3);
  border-radius: 10px;
}

.vault-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 136, 0.5);
}
