/* 
 * ========================================================
 * SOUND MASTERS // musicsm.com
 * The Sovereign Golden Record Ledger of AI Music & Neural Synthesis
 * Curated & Critiqued by NaN Compute (Prolific AI Dev & Musician)
 * Aesthetic: 24K Royal Gold, Cosmic Vinyl Grooves, Obsidian Velvet Glassmorphism
 * ========================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500;700;800&display=swap');

:root {
  /* Obsidian & Smoked Onyx Backgrounds */
  --bg-dark: #09090b;
  --bg-darker: #040405;
  --bg-surface: rgba(18, 18, 22, 0.82);
  --bg-card: rgba(24, 24, 28, 0.72);
  --bg-card-hover: rgba(34, 34, 40, 0.92);
  --bg-glass-input: rgba(255, 255, 255, 0.04);
  
  /* Golden Record & Prestige Gold Accents */
  --gold-primary: #d4af37;
  --gold-bright: #facc15;
  --gold-light: #fef08a;
  --gold-champagne: #fffbeb;
  --gold-dark: #854d0e;
  --gold-bronze: #78350f;
  
  /* Luxurious Metallic Gradients */
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fef08a 35%, #b48324 70%, #ffd700 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(254, 240, 138, 0.05) 50%, rgba(133, 77, 14, 0.1) 100%);
  --gold-metallic: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --gold-card-gradient: linear-gradient(135deg, rgba(28, 25, 23, 0.9) 0%, rgba(12, 10, 9, 0.98) 100%);
  
  /* Glowing Gold Borders */
  --border-glass: rgba(212, 175, 55, 0.2);
  --border-glass-hover: rgba(250, 204, 21, 0.6);
  --border-gold-bright: rgba(250, 204, 21, 0.85);
  --border-gold-subtle: rgba(212, 175, 55, 0.28);
  --border-bronze: rgba(133, 77, 14, 0.4);

  /* Typography Colors */
  --text-primary: #fafaf9;
  --text-secondary: #fef08a;
  --text-gold: #e6c66e;
  --text-gold-light: #fffbeb;
  --text-muted: #a1a1aa;
  --text-subtle: #71717a;
  
  /* Radii & Geometric Cuts */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows & Radiant Gold Halos */
  --shadow-glow-gold: 0 0 35px rgba(212, 175, 55, 0.3);
  --shadow-glow-bright: 0 0 45px rgba(250, 204, 21, 0.45);
  --shadow-card: 0 16px 40px -10px rgba(0, 0, 0, 0.9);
  --shadow-card-hover: 0 20px 50px -8px rgba(212, 175, 55, 0.22);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

svg {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  overflow: visible;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.55;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 65%),
    radial-gradient(circle at 100% 50%, rgba(133, 77, 14, 0.05) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.35);
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-primary);
}

/* Background Ambient Visualizer Canvas */
#bg-visualizer-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* Ambient Glowing Orbs */
.ambient-glow {
  position: fixed;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  border-radius: 50%;
  filter: blur(170px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  animation: pulse-glow 16s infinite alternate ease-in-out;
}

.glow-green {
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
}

.glow-emerald {
  bottom: 80px;
  right: -200px;
  background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
  animation-delay: -8s;
}

.glow-center {
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 95vw);
  height: min(600px, 80vh);
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, rgba(133, 77, 14, 0.04) 50%, transparent 80%);
}

@keyframes pulse-glow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.14; }
  50% { transform: scale(1.18) translate(30px, -20px); opacity: 0.24; }
  100% { transform: scale(0.92) translate(-20px, 30px); opacity: 0.16; }
}

.app-container {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.5vw, 2.5rem);
  box-sizing: border-box;
  overflow-x: clip;
}

@media (max-width: 640px) {
  .app-container {
    padding: 0 0.85rem;
  }
}

/* Utility Helpers & Golden Text Highlights */
.text-gold, .text-neon {
  color: var(--gold-primary);
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
}
.text-gold-shine {
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.text-acid {
  color: var(--gold-bright);
}
.text-emerald {
  color: var(--gold-light);
}
.text-dim {
  color: var(--text-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================================
   Header & Sound Masters Top Bar (Full-Width Edge-to-Edge)
   ======================================================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem clamp(0.75rem, 2vw, 2rem);
  min-height: 58px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
  margin-bottom: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #09090b !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.95);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: clip;
  isolation: isolate;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  flex-shrink: 0;
}

.brand-logo:hover .brand-emblem-wrap {
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.7);
  border-color: var(--gold-bright);
  transform: scale(1.08) rotate(6deg);
}

/* Compact Golden Record Insignia with SM-Logo */
.brand-emblem-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(254, 240, 138, 0.25) 0%, rgba(28, 25, 23, 0.95) 70%, #09090b 100%);
  border: 2px solid var(--gold-primary);
  position: relative;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.8);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-emblem-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.brand-logo:hover .brand-emblem-img {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.brand-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-title span.text-gold {
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle-mini {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.ai-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 800;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.live-indicator-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-full);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  animation: pulse-dot-anim 1.8s infinite ease-in-out;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--gold-bright); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.live-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ========================================================
   Sound Masters Sovereign Prime Manifesto & Hallmark Hero Block
   ======================================================== */
.curator-intro-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.25rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.94) 0%, rgba(14, 12, 18, 0.98) 60%, rgba(9, 9, 11, 0.99) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(254, 240, 138, 0.3), 0 0 30px rgba(212, 175, 55, 0.12);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.curator-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold-gradient);
  box-shadow: 0 0 18px var(--gold-primary);
}

.curator-intro-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ========================================================
   MAXIMIZED PRIME 3D LOGO & ACOUSTIC HARMONIC WAVEFORMS
   ======================================================== */
.prime-hero-seal-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  cursor: pointer;
}

.prime-seal-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, #1c1917, #1c1917 2px, #292524 4px, #141211 6px);
  border: 3.5px solid var(--gold-primary);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.55), 0 16px 36px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(0, 0, 0, 0.95);
  animation: prime-disc-spin 20s linear infinite;
  transition: box-shadow 0.4s ease;
}

.prime-hero-seal-wrap:hover .prime-seal-disc {
  box-shadow: 0 0 65px rgba(254, 240, 138, 0.8), 0 20px 45px rgba(0, 0, 0, 0.95);
  animation-play-state: paused;
}

@keyframes prime-disc-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.prime-logo-center-img {
  position: relative;
  z-index: 3;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.5));
}

.prime-hero-seal-wrap:hover .prime-logo-center-img {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 0 45px var(--gold-bright);
  filter: drop-shadow(0 0 22px rgba(254, 240, 138, 0.85));
}

/* Light Sweep Sheen Effect Across Logo */
.prime-shimmer-sweep {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: logo-sweep-anim 4.5s infinite ease-in-out;
  mix-blend-mode: overlay;
}

@keyframes logo-sweep-anim {
  0% { background-position: -120% -120%; opacity: 0; }
  25% { opacity: 1; }
  50% { background-position: 120% 120%; opacity: 0; }
  100% { background-position: 120% 120%; opacity: 0; }
}

/* Dual Concentric Acoustic Resonance Rings */
.prime-seal-halo {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 175, 55, 0.55);
  pointer-events: none;
  animation: prime-halo-pulse 2.8s infinite ease-in-out;
}

.prime-seal-halo-outer {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  pointer-events: none;
  animation: prime-halo-outer-pulse 3.6s infinite ease-in-out;
}

@keyframes prime-halo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.08); opacity: 0.9; border-color: var(--gold-bright); }
}

@keyframes prime-halo-outer-pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.2; }
  50% { transform: scale(1.12); opacity: 0.6; border-color: rgba(254, 240, 138, 0.6); }
}

.curator-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.curator-label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.curator-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.18);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.curator-name {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.curator-bio {
  font-size: 0.92rem;
  color: #d6d3d1;
  line-height: 1.6;
  max-width: 860px;
}

.curator-actions-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.curator-badges-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .curator-intro-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem;
  }
  .prime-hero-seal-wrap {
    margin: 0 auto;
  }
  .curator-label-row {
    justify-content: center;
  }
  .curator-actions-row {
    justify-content: center;
  }
  .curator-badges-col {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.curator-stat-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  color: #e7e5e4;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.curator-stat-pill strong {
  color: var(--gold-primary);
  font-weight: 800;
}

/* ========================================================
   Sound Masters Sovereign Prime Graphical Audio Deck Panel
   ======================================================== */
.prime-graphical-panel {
  position: relative;
  background: linear-gradient(135deg, rgba(22, 19, 17, 0.96) 0%, rgba(14, 12, 18, 0.98) 50%, rgba(9, 9, 11, 0.99) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-xl);
  padding: 1.85rem 2.25rem 1.65rem 2.25rem;
  margin-bottom: 2.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(254, 240, 138, 0.35), 0 0 35px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.prime-graphical-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold-gradient);
  box-shadow: 0 0 20px var(--gold-primary);
}

.prime-panel-bg-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 12% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(212, 175, 55, 0.03) 40px);
  pointer-events: none;
}

/* Panel Header */
.prime-panel-header {
  position: relative;
  z-index: 2;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
}

.prime-badge-cluster {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.prime-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #e7e5e4;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 9999px;
  padding: 0.22rem 0.65rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.prime-pill-badge.gold-glow {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold-primary);
  color: var(--gold-bright);
}

.prime-pill-badge.live-pulse {
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.4);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulse-dot 1.8s infinite;
}

.prime-panel-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 0 0 0.25rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prime-panel-subtitle {
  font-size: 0.86rem;
  color: #a8a29e;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.02em;
}

/* Cockpit Grid (Platter | Animated Spectrum | 5-Pillar Meters) */
.prime-cockpit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr 340px;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

/* Platter Cell */
.prime-platter-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease;
}

.prime-platter-cell:hover {
  transform: translateY(-2px);
}

.platter-center-play-badge {
  position: absolute;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 13, 16, 0.88);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
  transition: transform 0.2s ease, background 0.2s ease;
}

.prime-platter-cell:hover .platter-center-play-badge {
  transform: scale(1.15);
  background: var(--gold-primary);
}

.platter-caption {
  text-align: center;
}

.platter-caption-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gold-bright);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.platter-caption-sub {
  font-size: 0.72rem;
  color: #a8a29e;
}

/* Visualizer Spectrum Cell */
.prime-visualizer-cell {
  background: rgba(9, 9, 11, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.visualizer-cell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cell-title-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.cell-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--gold-bright);
}

.dsp-rate-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: #78716c;
}

/* Animated Equalizer Spectrum Rack */
.spectrum-bars-rack {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  height: 85px;
  padding: 0.5rem 0.75rem 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-sm);
}

.spec-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.spec-bar {
  width: 100%;
  max-width: 18px;
  height: var(--bar-h, 50%);
  background: linear-gradient(0deg, var(--gold-dark) 0%, var(--gold-primary) 65%, #fef08a 100%);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
  animation: spec-pulse 1.4s infinite ease-in-out alternate;
  animation-delay: var(--bar-delay, 0s);
  transform-origin: bottom;
}

@keyframes spec-pulse {
  0% { transform: scaleY(0.4); opacity: 0.65; }
  50% { transform: scaleY(1); opacity: 1; filter: drop-shadow(0 0 8px rgba(254, 240, 138, 0.8)); }
  100% { transform: scaleY(0.7); opacity: 0.85; }
}

.spec-freq {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: #78716c;
  font-weight: 700;
}

.spectrum-telemetry-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.telemetry-pill {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.telemetry-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  color: #78716c;
  letter-spacing: 0.05em;
}

.telemetry-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 800;
  color: #e7e5e4;
}

/* 5-Pillar OMS Graphical Meter Cards */
.prime-metrics-cell {
  background: rgba(9, 9, 11, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metrics-cell-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.metrics-bars-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.metric-meter-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.metric-meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-meter-name {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.73rem;
  color: #d6d3d1;
  font-weight: 600;
}

.metric-meter-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.metric-meter-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.metric-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-primary) 70%, #fef08a 100%);
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Master Rating Ribbon */
.master-rating-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(13, 13, 16, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
}

.master-ribbon-left {
  display: flex;
  flex-direction: column;
}

.master-ribbon-sub {
  font-size: 0.62rem;
  color: #a8a29e;
}

.master-ribbon-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.master-score-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  font-weight: 900;
  color: #000000;
  background: var(--gold-gradient);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  letter-spacing: 0.04em;
}

/* Bottom Graphical Quick Action Launch Tiles */
.prime-action-tiles-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.prime-action-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(14, 13, 17, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.prime-action-tile:hover {
  background: rgba(28, 25, 23, 0.95);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.25);
}

.prime-action-tile.active-glow {
  border-color: rgba(212, 175, 55, 0.65);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(14, 13, 17, 0.9) 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.tile-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.prime-action-tile:hover .tile-icon-wrap {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold-primary);
}

.tile-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tile-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tile-sub {
  font-size: 0.68rem;
  color: #a8a29e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive Cockpit Layout */
@media (max-width: 1100px) {
  .prime-cockpit-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .prime-platter-cell {
    margin: 0 auto;
  }
  .prime-action-tiles-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .prime-graphical-panel {
    padding: 1.2rem 0.95rem;
    margin-bottom: 1.5rem;
  }
  .prime-panel-title {
    font-size: 1.35rem;
  }
  .prime-panel-subtitle {
    font-size: 0.78rem;
  }
  .prime-badge-cluster {
    gap: 0.4rem;
  }
  .prime-pill-badge {
    font-size: 0.62rem;
    padding: 0.2rem 0.5rem;
  }
  .spectrum-bars-rack {
    height: 70px;
    gap: 4px;
    padding: 0.35rem 0.5rem;
  }
  .spec-bar {
    max-width: 12px;
  }
  .spectrum-telemetry-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .prime-action-tiles-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .prime-action-tile {
    padding: 0.65rem 0.85rem;
  }
}

/* ========================================================
   Hero Spotlight Section (#1 Golden Record Benchmark)
   ======================================================== */
.hero-section {
  margin-bottom: 2.75rem;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2.75rem;
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.92) 0%, rgba(9, 9, 11, 0.98) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.18);
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Left Hero Vinyl Cover Art */
.hero-art-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.hero-art-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.35);
  border: 2px solid rgba(212, 175, 55, 0.45);
  cursor: pointer;
}

.hero-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-art-container:hover .hero-art-img {
  transform: scale(1.06);
}

.hero-rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(9, 9, 11, 0.9);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.hero-art-container:hover .hero-play-overlay {
  opacity: 1;
}

.hero-play-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-play-btn-circle:hover {
  transform: scale(1.12);
  box-shadow: 0 0 40px var(--gold-bright);
}

/* Right Hero Details */
.hero-details-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.hero-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.model-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.75rem;
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  text-transform: uppercase;
}

.genre-tag {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.28rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: #f5f5f4;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.meta-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: #e7e5e4;
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.hero-song-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 2.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

.hero-artist-name {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--gold-primary);
}

/* Hero Critique Card */
.hero-critique-box {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1.1rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
}

.hero-critique-box::before {
  content: 'MASTER CRITIQUE // NAN COMPUTE:';
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
}

.hero-critique-text {
  font-size: 0.96rem;
  color: #f5f5f4;
  font-style: italic;
  line-height: 1.5;
}

/* OMS Badge & Score Styling (24K Gold Record Seal) */
.oms-badge {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.95) 0%, rgba(9, 9, 11, 0.98) 100%);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  letter-spacing: 0.04em;
}

.oms-badge-lg {
  font-size: 1.08rem;
  padding: 0.5rem 1.15rem;
  border-width: 2px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.oms-val-highlight {
  color: #000000;
  background: var(--gold-gradient);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-weight: 900;
}

/* 4-Pillar Critique Matrix Grid */
.critique-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin-top: 0.55rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #a8a29e;
}

.pillar-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pillar-val {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  color: var(--gold-primary);
  font-size: 0.76rem;
}

.pillar-bar-bg {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.pillar-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 3px;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Hero Pillars Grid (4 columns) */
.hero-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
}

@media (max-width: 768px) {
  .hero-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

/* Direct Official Suno Embed Wrappers (Gold Framing) */
.suno-hero-embed-wrap {
  width: 100%;
  margin: 1rem 0 0.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.suno-hero-embed-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}

.suno-embed-card-wrap {
  width: 100%;
  margin: 0.85rem 0 0.4rem 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.suno-embed-card-wrap:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.suno-embed-card-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}

/* Hero Prompt Snippet Box */
.hero-prompt-preview {
  background: rgba(212, 175, 55, 0.05);
  border: 1px dashed rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: #e7e5e4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hero Action Bar */
.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

/* ========================================================
   Buttons & Micro-interactions
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0c0a09;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: var(--gold-metallic);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.7);
  transform: translateY(-2px);
}

.btn-primary-sm {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  background: var(--gold-gradient);
  color: #0c0a09;
  font-weight: 800;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.btn-primary-sm:hover {
  background: var(--gold-metallic);
  box-shadow: 0 0 20px var(--gold-primary);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.btn-glass-sm {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: #f5f5f4;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-glass-sm:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(30deg);
  animation: btn-shine 4.5s infinite;
}

@keyframes btn-shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  20%, 100% { transform: translateX(100%) rotate(30deg); }
}

/* ========================================================
   Live Stats Overview Bar
   ======================================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.75) 0%, rgba(9, 9, 11, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-gold-subtle);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ========================================================
   Controls, Search & Filters Section
   ======================================================== */
.controls-section {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.65) 0%, rgba(9, 9, 11, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.search-filter-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

@media (max-width: 768px) {
  .search-filter-bar {
    grid-template-columns: 1fr;
  }
}

.search-box-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1.15rem;
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 0.85rem 3rem 0.85rem 3.1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.94rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  background: rgba(0, 0, 0, 0.8);
}

.search-input::placeholder {
  color: #78716c;
}

.shortcut-badge {
  position: absolute;
  right: 1.15rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  pointer-events: none;
}

.search-clear-btn {
  position: absolute;
  right: 1.15rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-clear-btn:hover {
  color: var(--gold-primary);
}

.controls-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.select-wrap {
  position: relative;
}

.custom-select {
  appearance: none;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 0.85rem 2.5rem 0.85rem 1.15rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
}

.custom-select:focus, .custom-select:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.view-switcher {
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 0.25rem;
  gap: 0.25rem;
}

.view-btn {
  background: transparent;
  border: none;
  color: #a8a29e;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.view-btn.active {
  background: var(--gold-gradient);
  color: #0c0a09;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Filter Group Rows */
.filter-group-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 768px) {
  .filter-group-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
  .filter-group-label {
    min-width: unset;
  }
}

.filter-group-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.06em;
  min-width: 140px;
}

.filter-pills-row, .genre-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 100%;
}

@media (max-width: 640px) {
  .filter-pills-row, .genre-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pill-btn, .filter-pill, .genre-pill {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

.filter-pill, .genre-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  color: #d6d3d1;
  border: 1px solid rgba(212, 175, 55, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover, .genre-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: #ffffff;
}

.filter-pill.active, .genre-pill.active {
  background: var(--gold-gradient);
  color: #0c0a09;
  border-color: var(--gold-primary);
  font-weight: 800;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* ========================================================
   Cards Grid View & Song Cards
   ======================================================== */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .songs-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.song-card {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.85) 0%, rgba(9, 9, 11, 0.98) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.song-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.22);
  transform: translateY(-4px);
}

.card-art-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.card-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.song-card:hover .card-art-img {
  transform: scale(1.05);
}

.card-rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(9, 9, 11, 0.88);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.card-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.card-art-container:hover .card-play-overlay {
  opacity: 1;
}

.card-play-btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.card-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.card-artist {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.card-critique-snippet {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 0.75rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.critique-badge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.critique-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
}

.critique-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
}

.critique-quote {
  font-size: 0.82rem;
  color: #e7e5e4;
  font-style: italic;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  margin-top: auto;
}

/* Voting Widget */
.voting-group {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.5rem;
  gap: 0.4rem;
}

.vote-btn {
  background: transparent;
  border: none;
  color: #a8a29e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  transition: var(--transition);
}

.vote-btn:hover {
  color: var(--gold-primary);
  transform: scale(1.15);
}

.vote-btn.upvoted {
  color: var(--gold-bright);
}

.vote-btn.downvoted {
  color: #ef4444;
}

.vote-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 20px;
  text-align: center;
}

/* ========================================================
   Leaderboard Table View
   ======================================================== */
.leaderboard-table-wrap {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.8) 0%, rgba(9, 9, 11, 0.95) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  margin-bottom: 3rem;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.leaderboard-table th {
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-primary);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.leaderboard-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.leaderboard-table tr:hover td {
  background: rgba(212, 175, 55, 0.06);
}

.td-rank-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold-light);
}

.td-track-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.td-track-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.td-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

.td-artist {
  font-size: 0.8rem;
  color: var(--gold-primary);
}

/* ========================================================
   Modals (Lyrics, Critique, Submit, Admin)
   ======================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.98) 0%, rgba(12, 10, 9, 1) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 45px rgba(212, 175, 55, 0.3);
  width: 100%;
  max-width: 580px;
  position: relative;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
}

.modal-card-large {
  max-width: 960px;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 15px var(--gold-primary);
}

.modal-header-banner {
  padding: 2rem 2.25rem 1.5rem 2.25rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.12) 0%, transparent 100%);
}

.modal-header-meta {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.modal-song-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.modal-artist-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.75rem;
  padding: 1.75rem 2.25rem 2.25rem 2.25rem;
}

@media (max-width: 768px) {
  .modal-body-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

.prompt-inspector-box, .lyrics-inspector-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.box-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
}

.box-title h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.prompt-text-display, .lyrics-text-display {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 1.15rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: #f5f5f4;
  line-height: 1.55;
  white-space: pre-wrap;
  max-height: 320px;
  overflow-y: auto;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* Form Styles */
.modal-content {
  padding: 2.25rem;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.form-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
}

.form-subtitle {
  font-size: 0.85rem;
  color: #a8a29e;
  margin-top: 0.2rem;
}

.styled-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row-2, .form-row-3 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
  background: rgba(0, 0, 0, 0.85);
}

.form-actions-row {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}

/* ========================================================
   Bottom Submit CTA Section (Optimized Flow)
   ======================================================== */
.bottom-submit-cta {
  margin: 3.5rem 0 2rem 0;
  width: 100%;
}

.bottom-submit-card {
  background: linear-gradient(135deg, rgba(38, 28, 14, 0.95) 0%, rgba(18, 14, 10, 0.98) 50%, rgba(9, 9, 11, 0.98) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.bottom-submit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.bottom-submit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.65rem;
}

.bottom-submit-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.bottom-submit-desc {
  font-size: 0.92rem;
  color: #d6d3d1;
  max-width: 680px;
  line-height: 1.55;
}

.bottom-submit-action {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-lg {
  padding: 0.9rem 1.65rem;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 12px;
}

@media (max-width: 800px) {
  .bottom-submit-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem 1.25rem;
    gap: 1.5rem;
  }
  .bottom-submit-action {
    justify-content: center;
  }
  .bottom-submit-action button {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================================
   Site Footer
   ======================================================== */
.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem 0 2rem 0;
  margin-top: 3rem;
  color: #a8a29e;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  display: block;
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--gold-light);
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d6d3d1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: #78716c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

.footer-nav-sep {
  color: rgba(212, 175, 55, 0.35);
  user-select: none;
  font-size: 0.75rem;
  align-self: center;
}

/* ========================================================
   Footer Allied Network & Ecosystem Showcase
   ======================================================== */
.footer-network-wrap {
  margin: 1.75rem 0 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(18, 18, 22, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.footer-network-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.footer-network-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-network-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.footer-network-sub {
  font-size: 0.72rem;
  color: #78716c;
}

.network-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  display: inline-block;
  animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.footer-network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.footer-network-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  background: rgba(24, 24, 28, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-network-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.footer-network-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
  background: rgba(34, 34, 40, 0.92);
}

.footer-network-card:hover::before {
  opacity: 1;
}

.network-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-network-card:hover .network-card-icon {
  transform: scale(1.08);
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.2);
}

.network-card-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.network-card-title {
  font-family: 'Space Grotesk', 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fafaf9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.footer-network-card:hover .network-card-title {
  color: var(--gold-light);
}

.network-card-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: #a8a29e;
  letter-spacing: 0.02em;
}

.network-card-desc {
  font-size: 0.68rem;
  color: #71717a;
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.network-card-arrow {
  color: #78716c;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-network-card:hover .network-card-arrow {
  transform: translate(2px, -2px);
  color: var(--gold-bright);
}

@media (max-width: 600px) {
  .footer-network-wrap {
    padding: 1rem 0.85rem;
  }
  .footer-network-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   Admin Control Mode Banner (Full Width Screen Banner)
   ======================================================== */
.admin-mode-banner {
  background: linear-gradient(90deg, #1c1917 0%, #292524 50%, #1c1917 100%);
  border-bottom: 1px solid var(--gold-primary);
  padding: 0.45rem clamp(1rem, 2.5vw, 2.5rem);
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: var(--gold-light);
  position: relative;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-mode-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 999;
  max-width: min(90vw, 380px);
}

.toast {
  background: rgba(18, 18, 22, 0.96);
  border: 1.5px solid var(--gold-primary);
  border-radius: 10px;
  padding: 0.75rem 1.15rem;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: toast-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  word-break: break-word;
}

/* ========================================================
   Sound Masters Navigation Menu & Dual Dropdowns
   ======================================================== */
.nav-links-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.35rem;
  flex-shrink: 1;
  min-width: 0;
  position: relative;
}

.nav-link-item {
  color: #d6d3d1;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link-item:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.14);
}

.nav-link-item.active {
  background: var(--gold-gradient);
  color: #0c0a09;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  position: relative;
}

.header-quick-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Dropdown Container Wrappers */
.sm-nav-dropdown-wrap,
.sm-account-dropdown-wrap {
  position: relative;
  display: inline-flex;
}

/* Dropdown Toggle Buttons */
.sm-nav-dropdown-btn,
.sm-account-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.34rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e7e5e4;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.28);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.sm-nav-dropdown-btn:hover,
.sm-account-dropdown-btn:hover,
.sm-nav-dropdown-wrap.active .sm-nav-dropdown-btn,
.sm-account-dropdown-wrap.active .sm-account-dropdown-btn {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
}

.sm-account-dropdown-btn {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(180, 130, 20, 0.08) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  padding: 0.38rem 0.85rem;
  font-weight: 800;
}

.sm-caret {
  font-size: 0.7rem;
  color: var(--gold-light);
  transition: transform 0.25s ease;
  line-height: 1;
  pointer-events: none;
}

.sm-nav-dropdown-wrap.active .sm-caret,
.sm-account-dropdown-wrap.active .sm-caret {
  transform: rotate(180deg);
}

/* 100% Solid Opaque Dropdown Menu (Nothing Visible Behind) */
.sm-header-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: auto;
  right: 0;
  min-width: 280px;
  max-width: min(340px, calc(100vw - 1rem));
  background: #0c0c10 !important;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1.5px solid rgba(212, 175, 55, 0.5) !important;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.98), 0 0 25px rgba(212, 175, 55, 0.25) !important;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
  z-index: 10002 !important;
  pointer-events: none;
}

.sm-header-dropdown-menu.sm-header-dropdown-right {
  left: auto;
  right: 0;
}

.sm-nav-dropdown-wrap.active .sm-header-dropdown-menu,
.sm-account-dropdown-wrap.active .sm-header-dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

/* ========================================================
   All-Icon Navigation Bar & Buttons (Desktop & Mobile)
   ======================================================== */
.sm-icon-nav-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.sm-nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #121217;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e7e5e4;
  cursor: pointer;
  position: relative;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  flex-shrink: 0;
  padding: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(254, 240, 138, 0.12);
  outline: none;
}

.sm-nav-icon-btn:hover,
.sm-nav-icon-btn:focus-visible {
  background: #1c1a16;
  border-color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(254, 240, 138, 0.3);
  transform: translateY(-2px) scale(1.05);
  color: #ffffff;
}

.sm-nav-icon-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(180, 130, 20, 0.12) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.55), inset 0 0 8px rgba(212, 175, 55, 0.25);
}

.sm-nav-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
  pointer-events: none;
  transition: transform 0.22s ease;
}

.sm-nav-icon-btn:hover .sm-nav-icon-img {
  transform: scale(1.12);
}

.sm-nav-icon-sep {
  width: 1px;
  height: 22px;
  background: rgba(212, 175, 55, 0.25);
  margin: 0 0.15rem;
  flex-shrink: 0;
}

/* Account Status Indicator Dot on Icon */
.sm-account-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #78716c;
  border: 1.5px solid #09090b;
  transition: all 0.3s ease;
}

.sm-account-dot.online {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.sm-account-dot.admin {
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

/* Dropdown Content Elements */
.sm-dropdown-section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  text-transform: uppercase;
  padding: 0.35rem 0.6rem 0.2rem 0.6rem;
  opacity: 0.9;
}

.sm-dropdown-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: 0.3rem 0.4rem;
}

.sm-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  text-decoration: none;
  color: #e7e5e4;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  transition: all 0.2s ease;
  font-family: inherit;
}

.sm-dropdown-item:hover,
.sm-dropdown-item:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  color: #ffffff;
  transform: translateX(3px);
}

.sm-dropdown-item.active {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-bright);
}

.sm-dropdown-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.sm-dropdown-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f5f5f4;
  line-height: 1.2;
}

.sm-dropdown-item:hover .sm-dropdown-title {
  color: var(--gold-light);
}

.sm-dropdown-desc {
  font-size: 0.68rem;
  color: #a8a29e;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.1rem;
}

/* Compact Responsive Rules (Prevents Any Screen Overflow) */
@media (max-width: 1200px) {
  .brand-subtitle-mini {
    display: none;
  }
  .live-indicator-wrap {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0.45rem 0.75rem;
    gap: 0.5rem;
  }
  .sm-icon-nav-bar {
    gap: 0.35rem;
  }
  .sm-nav-icon-btn {
    width: 36px;
    height: 36px;
  }
  .sm-nav-icon-img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.35rem 0.5rem;
    min-height: 52px;
    gap: 0.35rem;
    justify-content: space-between;
    overflow: hidden;
  }
  .brand-emblem-wrap {
    width: 34px;
    height: 34px;
  }
  .brand-title {
    font-size: 0.92rem;
  }
  .ai-badge {
    display: none !important;
  }
  .brand-subtitle-mini {
    display: none !important;
  }
  .sm-icon-nav-bar {
    gap: 0.25rem;
    flex-shrink: 0;
  }
  .sm-nav-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .sm-nav-icon-img {
    width: 17px;
    height: 17px;
  }
  .sm-nav-icon-sep {
    display: none;
  }
  .sm-header-dropdown-menu {
    position: fixed !important;
    top: 54px !important;
    left: 0.5rem !important;
    right: 0.5rem !important;
    width: auto !important;
    max-width: calc(100vw - 1rem) !important;
    background: #0c0c10 !important;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.25rem 0.4rem;
  }
  .brand-text {
    display: none !important;
  }
  .brand-emblem-wrap {
    width: 32px;
    height: 32px;
  }
  .sm-icon-nav-bar {
    gap: 3px;
  }
  .sm-nav-icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .sm-nav-icon-img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding: 0.25rem 0.25rem;
    gap: 2px;
  }
  .brand-emblem-wrap {
    width: 30px;
    height: 30px;
  }
  .sm-icon-nav-bar {
    gap: 2px;
  }
  .sm-nav-icon-btn {
    width: 27px;
    height: 27px;
    border-radius: 7px;
  }
  .sm-nav-icon-img {
    width: 14px;
    height: 14px;
  }
}

/* ========================================================
   AI Music Awards Page & Category Showcases
   ======================================================== */
.awards-hero-banner {
  background: linear-gradient(135deg, rgba(38, 28, 14, 0.92) 0%, rgba(9, 9, 11, 0.98) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.25);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.75rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 800px) {
  .awards-hero-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
  .awards-edition-tag {
    justify-content: center;
  }
  .trophy-insignia-wrap {
    margin: 0 auto;
  }
}

.awards-hero-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.awards-edition-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.awards-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
  .awards-title {
    font-size: 1.6rem;
  }
}

.awards-subtitle {
  font-size: 0.92rem;
  color: #d6d3d1;
  max-width: 680px;
  line-height: 1.55;
}

.trophy-insignia-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c0a09;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.6);
  border: 2px solid #ffffff;
  flex-shrink: 0;
}

.award-category-section {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.85) 0%, rgba(9, 9, 11, 0.95) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .award-category-section {
    padding: 1.25rem 1rem;
  }
}

.award-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.award-category-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.award-winner-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.75rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .award-winner-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.25rem;
  }
}

.award-laurel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold-gradient);
  color: #0c0a09;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
}

/* ========================================================
   About Page & Golden Record Manifesto
   ======================================================== */
.about-hero-card {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.94) 0%, rgba(14, 12, 18, 0.98) 60%, rgba(9, 9, 11, 0.99) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(254, 240, 138, 0.25);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .about-hero-card {
    padding: 1.5rem 1.25rem;
  }
}

.about-hero-header-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.25rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (max-width: 860px) {
  .about-hero-header-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .about-hero-header-row .prime-hero-seal-wrap {
    margin: 0 auto;
  }
}

.about-manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.manifesto-box {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.manifesto-box:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.manifesto-box-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.manifesto-box-desc {
  font-size: 0.88rem;
  color: #d6d3d1;
  line-height: 1.55;
}

/* ========================================================
   Jury Login Portal Page
   ======================================================== */
.login-page-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0.5rem;
  min-height: calc(100vh - 160px);
  width: 100%;
  box-sizing: border-box;
}

.login-card {
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.95) 0%, rgba(12, 10, 9, 1) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 45px rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .login-card {
    padding: 1.75rem 1.25rem;
  }
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.login-header-wrap {
  text-align: center;
  margin-bottom: 1.75rem;
}

.login-avatar-disc {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, #1c1917, #1c1917 2px, #292524 3px, #1c1917 4px);
  border: 2px solid var(--gold-primary);
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.login-title {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.login-subtitle {
  font-size: 0.82rem;
  color: var(--text-gold-subtle);
}

.login-demo-box {
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  padding: 0.75rem 0.95rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.login-demo-text {
  font-size: 0.78rem;
  color: #e7e5e4;
  margin-bottom: 0.45rem;
}

/* ========================================================
   SOUND MASTERS MOBILE-FIRST ARCHITECTURE & SOCIALETICKET UI
   ======================================================== */

/* 1. Header User Profile Capsule & SocialeTicket Auth Trigger */
.header-auth-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.btn-header-auth {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(133, 77, 14, 0.28) 100%);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
  white-space: nowrap;
}

.btn-header-auth:hover {
  background: var(--gold-gradient);
  color: #040405;
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.6);
  transform: translateY(-1px);
}

.user-profile-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(18, 18, 24, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem 0.25rem 0.35rem;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.user-profile-capsule:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.user-capsule-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
}

.user-capsule-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.user-capsule-name {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.user-verified-icon {
  color: #38bdf8;
  font-size: 0.75rem;
}

.user-sparks-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--gold-bright);
  font-weight: 700;
}

/* User Dropdown Menu */
.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 230px;
  background: rgba(14, 14, 18, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95), 0 0 25px rgba(212, 175, 55, 0.2);
  padding: 0.5rem;
  z-index: 1050;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  animation: authPaneFadeIn 0.2s ease-out;
}

.user-dropdown-menu.active {
  display: flex;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  color: #e4e4e7;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.user-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
}

.user-dropdown-item.danger:hover {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
}

.user-dropdown-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.18);
  margin: 0.25rem 0;
}

/* 2. Docked Mobile Bottom Navigation Bar (Deprecated: Unified with pristine top all-icon header to prevent doubled menus) */
.mobile-bottom-nav {
  display: none !important;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--gold-bright);
}

.mobile-nav-icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* 3. Floating Mobile Mini-Player Pill */
.mobile-mini-player {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(135deg, rgba(24, 24, 28, 0.96) 0%, rgba(14, 14, 18, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 998;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.25);
  cursor: pointer;
  animation: slideUpPill 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-mini-player.active {
  display: flex;
}

@keyframes slideUpPill {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.mini-player-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5px;
  background: var(--gold-gradient);
  width: 0%;
  transition: width 0.15s linear;
}

.mini-player-track-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow: hidden;
  flex: 1;
}

.mini-player-thumb-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.mini-player-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.mini-player-thumb-vinyl {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.mini-player-meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mini-player-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-player-artist {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-player-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.mini-player-btn {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-bright);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.mini-player-btn:hover {
  background: var(--gold-primary);
  color: #040405;
}

/* 4. Full Slide-Up Mobile Audio Player Sheet */
.mobile-player-sheet {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  animation: slideUpSheet 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-player-sheet.active {
  display: flex;
}

@keyframes slideUpSheet {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sheet-drag-handle-bar {
  width: 44px;
  height: 5px;
  background: rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-full);
  margin: 0 auto 1.25rem auto;
  cursor: pointer;
}

.sheet-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.sheet-dismiss-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.sheet-vinyl-turntable-wrap {
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  margin: 0 auto 1.5rem auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sheet-vinyl-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, #111114, #111114 4px, #18181e 5px, #111114 7px);
  border: 4px solid #27272a;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.sheet-vinyl-disc.playing {
  animation: spinVinyl 12s linear infinite;
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sheet-vinyl-center-art {
  width: 44%;
  height: 44%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
}

.sheet-vinyl-center-hole {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #09090b;
  border-radius: 50%;
  border: 1.5px solid var(--gold-bright);
}

.sheet-track-details {
  text-align: center;
  margin-bottom: 1.25rem;
}

.sheet-track-title {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.sheet-track-artist {
  font-size: 0.88rem;
  color: var(--text-gold);
  margin-bottom: 0.65rem;
}

.sheet-track-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Scrubbing & Time Controls */
.sheet-scrubber-wrap {
  width: 100%;
  margin-bottom: 1.25rem;
}

.sheet-scrubber-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
}

.sheet-scrubber-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px var(--gold-bright);
  cursor: pointer;
}

.sheet-time-row {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Big Playback Actions */
.sheet-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.sheet-control-btn {
  background: transparent;
  border: none;
  color: #e4e4e7;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sheet-control-btn:hover {
  color: var(--gold-bright);
  transform: scale(1.1);
}

.sheet-play-btn-large {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  color: #040405;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 35px rgba(250, 204, 21, 0.55);
  transition: var(--transition);
}

.sheet-play-btn-large:hover {
  transform: scale(1.06);
  box-shadow: 0 0 45px rgba(250, 204, 21, 0.8);
}

/* 5. SocialeTicket Auth Modal */
.st-auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 1.25rem;
}

.st-auth-tab {
  flex: 1;
  padding: 0.75rem 0.5rem;
  text-align: center;
  background: transparent;
  border: none;
  color: #a1a1aa;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.st-auth-tab.active {
  color: var(--gold-bright);
}

.st-auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
}

.st-network-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ========================================================
   RESPONSIVE DESIGN SYSTEM: LANDSCAPE & DESKTOP
   ======================================================== */

/* Mobile Portrait Mode Fixes */
@media (max-width: 767px) {
  .site-header {
    height: 54px;
    min-height: 54px;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    box-sizing: border-box;
    background: #09090b !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 10000;
  }

  .sm-icon-nav-bar {
    display: flex !important;
    gap: 0.25rem;
  }

  /* Mobile Header Dropdown Sheet Navigation: 100% Solid Dark */
  .sm-header-dropdown-menu,
  .sm-header-dropdown-menu.sm-header-dropdown-right {
    position: fixed !important;
    top: 56px !important;
    left: 0.5rem !important;
    right: 0.5rem !important;
    width: auto !important;
    max-width: calc(100vw - 1rem) !important;
    max-height: calc(85vh - 56px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    background: #0c0c10 !important;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 10005 !important;
    border: 1.5px solid rgba(212, 175, 55, 0.55) !important;
    border-radius: var(--radius-lg) !important;
    padding: 0.65rem !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.98), 0 0 35px rgba(212, 175, 55, 0.35) !important;
  }

  .sm-dropdown-item {
    padding: 0.65rem 0.75rem !important;
    min-height: 44px !important;
  }

  .brand-subtitle-mini {
    display: none;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .app-container {
    padding: 0.75rem 0.85rem 100px 0.85rem;
  }

  .curator-intro-card {
    padding: 1.25rem 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .prime-hero-seal-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }

  .curator-name {
    font-size: 1.35rem;
  }

  .curator-actions-row {
    justify-content: center;
  }

  /* Single Column Touch Cards */
  .songs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* View Switcher hidden on small mobile (grid by default) */
  .view-switcher {
    display: none;
  }
}

/* Mobile Landscape Mode UX Plan */
@media (orientation: landscape) and (max-height: 540px) {
  .site-header {
    height: 44px;
    padding: 0 1rem;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-emblem-wrap {
    width: 32px;
    height: 32px;
  }

  .app-container {
    padding: 0.5rem 1rem 70px 1rem;
  }

  /* Hide Large Hero Hologram Disc in shallow landscape to preserve space */
  .curator-intro-card {
    padding: 0.85rem 1rem;
    gap: 1rem;
    align-items: center;
  }

  .prime-hero-seal-wrap {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
  }

  .curator-name {
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
  }

  .curator-bio {
    display: none;
  }

  /* Landscape Two-Column Split Workstation Layout */
  .landscape-split-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 1.25rem;
    align-items: start;
  }

  .landscape-studio-deck {
    position: sticky;
    top: 50px;
    background: rgba(18, 18, 22, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  }

  /* Horizontal Side-by-Side Modals in Landscape */
  .modal-card-large {
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-body-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .mobile-mini-player {
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 0.35rem 0.65rem;
  }
}

/* Tablet & Desktop Viewports (>= 768px) */
@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none !important;
  }

  .mobile-mini-player {
    display: none !important;
  }

  .mobile-player-sheet {
    display: none !important;
  }

  .nav-links-row {
    display: flex !important;
  }

  .songs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Desktop Viewports (>= 1024px) */
@media (min-width: 1024px) {
  .songs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Ultrawide Viewports (>= 1440px) */
@media (min-width: 1440px) {
  .songs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   SOUND MASTERS 47-ICON SUITE & FLUID STUDIO EXPERIENCE STYLES
   ========================================================================== */

/* 1. Universal Icon Utilities */
.sm-icon {
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
  pointer-events: none;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.sm-icon-xs {
  width: 16px;
  height: 16px;
}

.sm-icon-sm {
  width: 20px;
  height: 20px;
}

.sm-icon-md {
  width: 26px;
  height: 26px;
}

.sm-icon-lg {
  width: 36px;
  height: 36px;
}

.sm-icon-xl {
  width: 48px;
  height: 48px;
}

.sm-icon-hero {
  width: 64px;
  height: 64px;
}

.sm-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 0.5rem;
  color: #f4f4f5;
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sm-icon-btn:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(250, 204, 21, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
}

.sm-icon-btn:hover .sm-icon {
  transform: scale(1.12);
  filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.7));
}

.sm-icon-btn:active {
  transform: scale(0.94);
}

.sm-icon-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(16, 185, 129, 0.2));
  border-color: var(--gold-light);
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.35);
}

.sm-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  background: rgba(18, 18, 22, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e4e4e7;
  cursor: pointer;
  transition: all 0.22s ease;
  backdrop-filter: blur(8px);
}

.sm-icon-pill:hover,
.sm-icon-pill.active {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-primary);
  color: #fff;
  box-shadow: 0 2px 14px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

.sm-nav-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: #a1a1aa;
  transition: all 0.2s ease;
}

.sm-nav-icon-link:hover,
.sm-nav-icon-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.sm-nav-icon-link.active {
  border-bottom: 2px solid var(--gold-primary);
  color: var(--gold-light);
}

/* 2. Persistent Floating Master Audio Deck Dock */
.master-audio-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 14, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.85), 0 -1px 0 rgba(250, 204, 21, 0.15) inset;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  user-select: none;
}

.master-audio-dock.minimized {
  transform: translateY(calc(100% - 6px));
}

/* Dock Track Info (Left) */
.dock-track-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 220px;
  max-width: 28%;
}

.dock-vinyl-thumb-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  cursor: pointer;
}

.dock-vinyl-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.dock-vinyl-thumb-wrap.playing .dock-vinyl-img {
  animation: vinylSpin 14s linear infinite;
}

.dock-vinyl-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #facc15 0%, #78350f 100%);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.8);
}

.dock-meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dock-title-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dock-track-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.dock-track-artist {
  font-size: 0.76rem;
  color: #a1a1aa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.dock-oms-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.15));
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

/* Dock Playback Controls (Center) */
.dock-center-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  max-width: 580px;
}

.dock-controls-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.dock-ctrl-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.dock-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}

.dock-ctrl-btn:active {
  transform: scale(0.92);
}

.dock-play-btn-master {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15 0%, #d97706 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-play-btn-master:hover {
  transform: scale(1.08);
  box-shadow: 0 0 32px rgba(250, 204, 21, 0.8);
}

.dock-play-btn-master:active {
  transform: scale(0.94);
}

.dock-play-btn-master .sm-icon {
  width: 24px;
  height: 24px;
}

/* Scrubber Line */
.dock-scrubber-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.dock-time-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: #a1a1aa;
  min-width: 34px;
}

.dock-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
  transition: height 0.15s ease, background 0.15s ease;
}

.dock-slider:hover {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
}

.dock-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.8);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.dock-slider:hover::-webkit-slider-thumb {
  transform: scale(1.25);
}

/* Dock Tools & Volume (Right) */
.dock-tools-cluster {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
  justify-content: flex-end;
}

.dock-volume-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 120px;
}

.dock-volume-slider {
  width: 70px;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

.dock-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #facc15;
  cursor: pointer;
}

/* 3. Studio 5-Band Equalizer & DSP Panel Drawer */
.studio-eq-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 440px;
  max-width: 95vw;
  height: 100vh;
  z-index: 1100;
  background: rgba(12, 12, 16, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.studio-eq-drawer.active {
  right: 0;
}

.eq-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.eq-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.eq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1.25rem;
}

.eq-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eq-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

.eq-subtitle {
  font-size: 0.74rem;
  color: #a1a1aa;
}

/* EQ 5-Band Faders */
.eq-faders-deck {
  background: rgba(18, 18, 24, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1.25rem 0.85rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 1.5rem;
}

.eq-band-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.eq-fader-track-wrap {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eq-vertical-slider {
  appearance: slider-vertical;
  -webkit-appearance: slider-vertical;
  writing-mode: bt-lr;
  width: 16px;
  height: 150px;
  cursor: pointer;
  background: transparent;
}

.eq-band-freq {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-light);
}

.eq-band-gain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 800;
  color: #a1a1aa;
}

/* EQ Preset Grid */
.eq-presets-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.eq-presets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.eq-preset-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e4e4e7;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.eq-preset-btn:hover,
.eq-preset-btn.active {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-light);
  color: #fff;
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.3);
}

/* DSP Extras (Spatial Audio & 432Hz Tuning) */
.dsp-toggles-section {
  background: rgba(18, 18, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dsp-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dsp-toggle-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.dsp-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
}

.dsp-desc {
  font-size: 0.72rem;
  color: #71717a;
}

/* Switch UI */
.sm-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.sm-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.sm-slider-round {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #27272a;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 34px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.sm-slider-round:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #a1a1aa;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
}

.sm-switch input:checked + .sm-slider-round {
  background-color: #10b981;
  border-color: #34d399;
}

.sm-switch input:checked + .sm-slider-round:before {
  transform: translateX(20px);
  background-color: #fff;
}

/* 4. Queue & Golden Playlists Drawer */
.studio-queue-drawer {
  position: fixed;
  top: 0;
  left: -460px;
  width: 440px;
  max-width: 95vw;
  height: 100vh;
  z-index: 1100;
  background: rgba(12, 12, 16, 0.96);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-right: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 15px 0 50px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.studio-queue-drawer.active {
  left: 0;
}

.queue-tabs-row {
  display: flex;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
}

.queue-tab-btn {
  flex: 1;
  padding: 0.65rem 0.5rem;
  background: transparent;
  border: none;
  font-size: 0.84rem;
  font-weight: 700;
  color: #a1a1aa;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.queue-tab-btn.active {
  color: var(--gold-light);
  border-bottom: 2px solid var(--gold-primary);
}

.queue-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.queue-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.queue-item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(4px);
}

.queue-item.active {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-light);
}

.queue-item-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow: hidden;
}

.queue-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.queue-texts {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.queue-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-artist {
  font-size: 0.72rem;
  color: #a1a1aa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* 5. Turntable Studio Lounge (player.html) */
.turntable-suite-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  margin-top: 1rem;
  margin-bottom: 5rem;
}

@media (max-width: 900px) {
  .turntable-suite-container {
    grid-template-columns: 1fr;
  }
}

.turntable-deck-chassis {
  background: radial-gradient(circle at 50% 30%, #1c1c24 0%, #0d0d12 100%);
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.15) inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.turntable-chassis-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.turntable-platter-well {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #27272a 0%, #09090b 70%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(250, 204, 21, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 1rem 0;
}

.turntable-vinyl-large {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.95);
  background: repeating-radial-gradient(circle, #18181b, #18181b 2px, #09090b 3px, #09090b 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.turntable-vinyl-large.spinning {
  animation: vinylSpin 6s linear infinite;
}

@keyframes vinylSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.turntable-label-art {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(250, 204, 21, 0.6);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.turntable-spindle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, #facc15 0%, #78350f 100%);
  border-radius: 50%;
  border: 2px solid #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.turntable-tonearm {
  position: absolute;
  top: 40px;
  right: 30px;
  width: 90px;
  height: 220px;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top right;
  transform: rotate(0deg);
}

.turntable-tonearm.engaged {
  transform: rotate(24deg);
}

.turntable-tactile-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Real-time Spectrum Waveform */
.lounge-visualizer-card {
  background: rgba(18, 18, 24, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lounge-canvas-wrap {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  background: rgba(9, 9, 11, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

#lounge-waveform-canvas {
  width: 100%;
  height: 100%;
}

.teleprompter-lyrics-box {
  background: rgba(9, 9, 11, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  max-height: 240px;
  overflow-y: auto;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e4e4e7;
  white-space: pre-wrap;
}

/* 6. 24/7 Neural Radio (radio.html) */
.radio-hero-banner {
  background: linear-gradient(135deg, rgba(20, 20, 28, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.radio-stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.station-card {
  background: rgba(18, 18, 24, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.station-card:hover,
.station-card.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.station-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.station-listeners-pill {
  font-size: 0.74rem;
  font-weight: 700;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Responsive Master Audio Dock */
@media (max-width: 768px) {
  .master-audio-dock {
    flex-wrap: wrap;
    padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
    gap: 0.65rem;
    bottom: 0;
  }

  .dock-track-info {
    min-width: 140px;
    max-width: 50%;
  }

  .dock-tools-cluster {
    min-width: auto;
    gap: 0.4rem;
  }

  .dock-volume-wrap {
    display: none;
  }

  .dock-center-cluster {
    order: 3;
    width: 100%;
    max-width: 100%;
  }

  .studio-eq-drawer,
  .studio-queue-drawer {
    width: 100vw;
  }
}

/* ========================================================
   Active Session Notice Card & Feature Lock Guard
   ======================================================== */
.login-active-session-card {
  background: linear-gradient(135deg, rgba(20, 20, 26, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.25);
  margin-top: 1rem;
}

.login-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.login-active-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  object-fit: cover;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
  margin: 0 auto 1rem auto;
  display: block;
}

.login-active-title {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.login-active-sub {
  font-size: 0.85rem;
  color: #a8a29e;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.login-active-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Feature Lock Luxury Modal */
.feature-lock-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.feature-lock-overlay.active {
  opacity: 1;
  visibility: visible;
}

.feature-lock-modal {
  background: #0d0d12;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.98), 0 0 40px rgba(212, 175, 55, 0.35);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.feature-lock-overlay.active .feature-lock-modal {
  transform: scale(1);
}

.feature-lock-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem auto;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.6));
}

.feature-lock-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-lock-desc {
  font-size: 0.88rem;
  color: #d6d3d1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

