/* ============================================================
   NEWPHONIA — Landing Page Styles
   Design: Dark purple space aesthetic + modern music branding
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --color-bg: #08000f;
  --color-bg-2: #0d0020;
  --color-purple: #6600cc;
  --color-purple-light: #8833ee;
  --color-purple-glow: rgba(102, 0, 204, 0.4);
  --color-violet: #a855f7;
  --color-violet-light: #c084fc;
  --color-gold: #ffd700;
  --color-gold-light: #ffe44d;
  --color-gold-glow: rgba(255, 215, 0, 0.3);
  --color-white: #ffffff;
  --color-white-80: rgba(255,255,255,0.8);
  --color-white-60: rgba(255,255,255,0.6);
  --color-white-30: rgba(255,255,255,0.3);
  --color-white-10: rgba(255,255,255,0.08);
  --color-border: rgba(255,255,255,0.1);
  --logo-white-glow: drop-shadow(0 0 10px rgba(255,255,255,0.9)) drop-shadow(0 0 22px rgba(255,255,255,0.5));
  --font-main: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-purple: 0 0 40px rgba(102, 0, 204, 0.3);
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --color-bg: #f8f9fa;
  --color-bg-2: #ffffff;
  --color-white: #0f172a;
  --color-white-80: rgba(15,23,42,0.8);
  --color-white-60: rgba(15,23,42,0.6);
  --color-white-30: rgba(15,23,42,0.3);
  --color-white-10: rgba(15,23,42,0.08);
  --color-border: rgba(15,23,42,0.1);
  --logo-white-glow: drop-shadow(0 0 4px rgba(0,0,0,0.1));
  --color-gold: #eab308;
  --color-gold-light: #facc15;
  --color-gold-glow: rgba(234, 179, 8, 0.15);
  --shadow-purple: 0 0 30px rgba(102, 0, 204, 0.1);
  --shadow-gold: 0 0 20px rgba(234, 179, 8, 0.1);
}

[data-theme="light"] .nav-logo-img {
  filter: brightness(0);
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(248, 249, 250, 0.5) 0%,
    rgba(248, 249, 250, 0.7) 40%,
    rgba(248, 249, 250, 0.9) 70%,
    rgba(248, 249, 250, 1) 100%
  );
}

[data-theme="light"] .cat-overlay {
  background: linear-gradient(
    135deg,
    rgba(248, 249, 250, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(248, 249, 250, 0.95) 100%
  );
}

[data-theme="light"] .records-gradient {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(234, 179, 8, 0.1) 0%, transparent 70%),
              linear-gradient(to bottom, rgba(248, 249, 250, 1), rgba(255, 255, 255, 1));
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .nav-mobile {
  background: rgba(255, 255, 255, 0.98);
}

[data-theme="light"] .footer {
  background: rgba(248, 249, 250, 1);
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
}
.theme-toggle:hover {
  background: var(--color-white-10);
}
.theme-toggle .moon-icon { display: none; }
[data-theme="light"] .theme-toggle .sun-icon { display: none; }
[data-theme="light"] .theme-toggle .moon-icon { display: block; }

/* ---- LANGUAGE DROPDOWN ---- */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-trigger {
  background: none;
  border: none;
  color: var(--color-white-80);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 4px;
  transition: var(--transition);
}
.lang-trigger:hover, .lang-dropdown:hover .lang-trigger {
  color: var(--color-white);
}
.globe-icon {
  opacity: 0.8;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 50%;
  transform: translateX(50%) translateY(10px);
  background: #1a1625;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 8px;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 1001;
  display: flex;
  flex-direction: column;
}
.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--color-white-80);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.lang-option:hover {
  background: rgba(255,255,255,0.05);
  color: var(--color-white);
}
.lang-option.active {
  color: var(--color-gold);
}
.lang-code {
  font-weight: 700;
  font-size: 13px;
}
[data-theme="light"] .lang-menu {
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
[data-theme="light"] .lang-option {
  color: var(--color-white-80);
}
[data-theme="light"] .lang-option:hover {
  background: var(--color-white-10);
  color: var(--color-white);
}


/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- CANVAS PARTICLES ---- */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 0, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark { display: flex; align-items: center; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.05em; }
.logo-new { color: var(--color-gold); }
.logo-phonia { color: var(--color-white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white-80);
  transition: var(--transition);
}
.nav-link:hover { color: var(--color-white); background: var(--color-white-10); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-nav-records {
  padding: 9px 18px;
  background: var(--color-gold);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-records:hover { background: var(--color-gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-nav-streaming {
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--color-violet);
  color: var(--color-violet-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-streaming:hover { background: rgba(168, 85, 247, 0.15); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(8, 0, 15, 0.98);
  border-top: 1px solid var(--color-border);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white-80);
  transition: var(--transition);
}
.nav-mobile-link:hover { color: var(--color-white); background: var(--color-white-10); }
.btn-mobile-records {
  margin-top: 8px;
  padding: 12px 20px;
  background: var(--color-gold);
  color: #000;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
}
.btn-mobile-streaming {
  padding: 12px 20px;
  border: 1px solid var(--color-violet);
  color: var(--color-violet-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,0,15,0.3) 0%,
    rgba(8,0,15,0.1) 40%,
    rgba(8,0,15,0.5) 70%,
    rgba(8,0,15,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 32px;
  background: rgba(255,215,0,0.05);
  animation: fadeInDown 0.8s ease both;
}
.badge-icon { font-size: 10px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title-line1, .hero-title-line2 {
  display: block;
  color: var(--color-white);
  text-shadow: 0 0 60px rgba(102,0,204,0.5);
}
.hero-title-italic {
  display: block;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-violet), var(--color-purple-light), var(--color-violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--color-white-60);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-subtitle strong { color: var(--color-white-80); }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-gold);
  color: #000;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.4);
  color: var(--color-violet-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(168,85,247,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168,85,247,0.2);
}

.hero-scroll {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-white-30);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 0.8s both;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-white-30), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Equalizer animation */
.hero-equalizer {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 4px;
  z-index: 2;
  opacity: 0.3;
}
.eq-bar {
  width: 3px;
  background: linear-gradient(to top, var(--color-purple), var(--color-violet));
  border-radius: 2px;
  animation: eqPulse 1.2s ease-in-out infinite;
}
.eq-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.eq-bar:nth-child(5) { height: 55px; animation-delay: 0.4s; }
.eq-bar:nth-child(6) { height: 40px; animation-delay: 0.5s; }
.eq-bar:nth-child(7) { height: 60px; animation-delay: 0.6s; }
.eq-bar:nth-child(8) { height: 35px; animation-delay: 0.7s; }
.eq-bar:nth-child(9) { height: 50px; animation-delay: 0.8s; }
.eq-bar:nth-child(10) { height: 25px; animation-delay: 0.9s; }
.eq-bar:nth-child(11) { height: 45px; animation-delay: 1.0s; }
.eq-bar:nth-child(12) { height: 20px; animation-delay: 1.1s; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  position: relative;
  z-index: 2;
  background: rgba(102,0,204,0.1);
  border-top: 1px solid rgba(102,0,204,0.3);
  border-bottom: 1px solid rgba(102,0,204,0.3);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
}
.stats-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gold);
}
.stat-label {
  font-size: 12px;
  color: var(--color-white-60);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-white-60);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-white);
}
.section-subtitle {
  font-size: 16px;
  color: var(--color-white-60);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.gradient-text {
  background: linear-gradient(135deg, var(--color-gold), #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-purple {
  background: linear-gradient(135deg, var(--color-violet), var(--color-violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   UNIVERSES SECTION
   ============================================================ */
.universes {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
}
.universes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.universe-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
  background: var(--color-bg-2);
}
.universe-card:hover {
  transform: translateY(-8px);
}
.records-card:hover { box-shadow: 0 20px 60px rgba(255,215,0,0.15); border-color: rgba(255,215,0,0.3); }
.streaming-card:hover { box-shadow: 0 20px 60px rgba(168,85,247,0.2); border-color: rgba(168,85,247,0.3); }

.card-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}
.records-glow { background: radial-gradient(circle, rgba(255,215,0,0.3), transparent 70%); }
.streaming-glow { background: radial-gradient(circle, rgba(168,85,247,0.3), transparent 70%); }
.universe-card:hover .card-glow { opacity: 1; }

.card-image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.universe-card:hover .card-img { transform: scale(1.05); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(8,0,15,0.9) 100%);
}
.streaming-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(13,0,32,0.95) 100%);
}

.card-content {
  position: relative;
  z-index: 1;
  padding: 32px;
}
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.records-badge {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--color-gold);
}
.streaming-badge {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--color-violet-light);
}

.card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--color-white);
}
.card-title span { color: var(--color-gold); }
.streaming-span { color: var(--color-violet-light) !important; }

.card-desc {
  font-size: 14px;
  color: var(--color-white-60);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-white-80);
}
.feat-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,215,0,0.15);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.streaming-feat {
  background: rgba(168,85,247,0.15);
  color: var(--color-violet-light);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.records-cta {
  background: var(--color-gold);
  color: #000;
}
.records-cta:hover { background: var(--color-gold-light); transform: translateX(4px); }
.streaming-cta {
  background: var(--color-violet);
  color: var(--color-white);
}
.streaming-cta:hover { background: var(--color-violet-light); transform: translateX(4px); }
.cta-arrow { transition: transform 0.3s ease; }
.card-cta:hover .cta-arrow { transform: translateX(4px); }

/* ============================================================
   RECORDS SECTION DETAIL
   ============================================================ */
.section-dark {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  overflow: hidden;
}
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bg-gradient {
  position: absolute;
  inset: 0;
}
.records-gradient {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,215,0,0.06) 0%, transparent 70%),
              linear-gradient(to bottom, rgba(8,0,15,0.95), rgba(13,0,20,0.98));
}
.streaming-gradient {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(102,0,204,0.1) 0%, transparent 70%),
              linear-gradient(to bottom, rgba(8,0,15,0.9), rgba(13,0,32,0.98));
}
.bg-img-overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.records-tag { border-color: rgba(255,215,0,0.3); color: var(--color-gold); }
.streaming-tag { border-color: rgba(168,85,247,0.3); color: var(--color-violet-light); }

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  position: relative;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg-2);
  transition: var(--transition);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step-card:hover { border-color: rgba(255,215,0,0.3); transform: translateY(-4px); }
.step-card:hover::before { opacity: 1; }

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,215,0,0.1);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: var(--color-white-60);
  line-height: 1.6;
}

/* ============================================================
   STREAMING SECTION DETAIL
   ============================================================ */
.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168,85,247,0.15);
  background: rgba(168,85,247,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-violet), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pillar-card:hover { border-color: rgba(168,85,247,0.4); transform: translateY(-4px); background: rgba(168,85,247,0.1); }
.pillar-card:hover::before { opacity: 1; }
.pillar-icon { font-size: 32px; margin-bottom: 16px; }
.pillar-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: 13px;
  color: var(--color-white-60);
  line-height: 1.6;
}

.section-cta-wrap {
  text-align: center;
  margin-top: 56px;
}
.btn-streaming {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-violet);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(168,85,247,0.3);
}
.btn-streaming:hover { background: var(--color-violet-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(168,85,247,0.4); }

/* ============================================================
   OFFRES SECTION
   ============================================================ */
.offres-section {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  background: linear-gradient(to bottom, rgba(8,0,15,0.95), rgba(8,0,15,1));
}
.offers-group {
  max-width: 1100px;
  margin: 0 auto 80px;
}
.streaming-offers-group { margin-bottom: 0; }
.offers-group-header {
  text-align: center;
  margin-bottom: 40px;
}
.group-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.records-group-logo {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--color-gold);
}
.streaming-group-logo {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--color-violet-light);
}
.group-desc {
  font-size: 14px;
  color: var(--color-white-60);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.streaming-pricing-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg-2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { border-color: rgba(255,215,0,0.2); transform: translateY(-4px); }
.streaming-pricing-card:hover { border-color: rgba(168,85,247,0.3); }

.pricing-card.popular {
  border-color: rgba(255,215,0,0.4);
  background: rgba(255,215,0,0.05);
  box-shadow: 0 0 40px rgba(255,215,0,0.1);
}
.pricing-card.streaming-popular {
  border-color: rgba(168,85,247,0.4);
  background: rgba(168,85,247,0.07);
  box-shadow: 0 0 40px rgba(168,85,247,0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--color-gold);
  color: #000;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.streaming-popular-badge {
  background: var(--color-violet);
  color: var(--color-white);
}

.pricing-header { margin-bottom: 20px; }
.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}
.plan-desc { font-size: 13px; color: var(--color-white-60); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.free-price { font-size: 32px; }
.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white-60);
}
.price-period {
  font-size: 14px;
  color: var(--color-white-60);
  margin-left: 4px;
}

.trial-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(168,85,247,0.2);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 100px;
  font-size: 11px;
  color: var(--color-violet-light);
  margin-bottom: 20px;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-white-80);
}
.pricing-features li span {
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.streaming-check { color: var(--color-violet-light) !important; }
.feat-no { color: rgba(255,255,255,0.3) !important; }

.pricing-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  margin-top: auto;
}
.records-pricing-btn {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--color-gold);
}
.records-pricing-btn:hover { background: var(--color-gold); color: #000; }
.popular-btn {
  background: var(--color-gold);
  color: #000;
  border: none;
}
.popular-btn:hover { background: var(--color-gold-light); transform: translateY(-1px); }

.streaming-pricing-btn {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--color-violet-light);
}
.streaming-pricing-btn:hover { background: var(--color-violet); color: var(--color-white); }
.streaming-popular-btn {
  background: var(--color-violet);
  color: var(--color-white);
  border: none;
}
.streaming-popular-btn:hover { background: var(--color-violet-light); transform: translateY(-1px); }

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-white-60);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  background: linear-gradient(to bottom, rgba(8,0,15,1), rgba(13,0,32,0.8));
}
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg-2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.testimonial-stars { color: var(--color-gold); font-size: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px;
  color: var(--color-white-80);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}
.streaming-avatar {
  background: linear-gradient(135deg, var(--color-purple), var(--color-violet));
}
.author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-info strong { font-size: 14px; color: var(--color-white); }
.author-info span { font-size: 12px; color: var(--color-white-60); }
.testimonial-source {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.records-source {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--color-gold);
}
.streaming-source {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--color-violet-light);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-glow-left {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.08), transparent 70%);
  filter: blur(40px);
}
.cta-glow-right {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 70%);
  filter: blur(40px);
}
.final-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-white);
}
.final-cta-subtitle {
  font-size: 16px;
  color: var(--color-white-60);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.final-cta-buttons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.final-btn-records, .final-btn-streaming {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  min-width: 280px;
}
.final-btn-records {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.3);
}
.final-btn-records:hover {
  background: rgba(255,215,0,0.15);
  border-color: rgba(255,215,0,0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,215,0,0.15);
}
.final-btn-streaming {
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.3);
}
.final-btn-streaming:hover {
  background: rgba(168,85,247,0.15);
  border-color: rgba(168,85,247,0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168,85,247,0.2);
}
.final-btn-icon { font-size: 28px; flex-shrink: 0; }
.final-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  flex: 1;
}
.final-btn-text strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
}
.final-btn-records .final-btn-text strong { color: var(--color-gold); }
.final-btn-streaming .final-btn-text strong { color: var(--color-violet-light); }
.final-btn-text span { font-size: 13px; color: var(--color-white-60); }
.final-btn-arrow {
  font-size: 20px;
  color: var(--color-white-30);
  transition: transform 0.3s ease;
}
.final-btn-records:hover .final-btn-arrow { color: var(--color-gold); transform: translateX(4px); }
.final-btn-streaming:hover .final-btn-arrow { color: var(--color-violet-light); transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 2;
  padding: 64px 24px 32px;
  border-top: 1px solid var(--color-border);
  background: rgba(8,0,15,0.98);
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.footer-logo-text span { color: var(--color-gold); }
.footer-tagline {
  font-size: 13px;
  color: var(--color-white-60);
  margin-bottom: 12px;
  font-style: italic;
}
.footer-copy {
  font-size: 12px;
  color: var(--color-white-30);
  line-height: 1.6;
}
.footer-col-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.streaming-col-title { color: var(--color-violet-light); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--color-white-60);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--color-white); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-60);
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--color-violet); color: var(--color-violet-light); background: rgba(168,85,247,0.1); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}
@keyframes eqPulse {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SECTION SEPARATORS & EXTRA POLISH
   ============================================================ */

/* Glowing divider between sections */
.stats-band {
  position: relative;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102,0,204,0.6), rgba(255,215,0,0.4), rgba(102,0,204,0.6), transparent);
}
.stats-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102,0,204,0.6), rgba(255,215,0,0.4), rgba(102,0,204,0.6), transparent);
}

/* Pulse animation for CTA buttons */
.btn-primary {
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,215,0,0.3); }
  50% { box-shadow: 0 4px 30px rgba(255,215,0,0.5), 0 0 60px rgba(255,215,0,0.15); }
}

/* Floating animation for hero badge */
.hero-badge {
  animation: fadeInDown 0.8s ease both, float 4s ease-in-out 1s infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Gradient border on popular pricing card */
.pricing-card.popular::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,215,0,0.5), rgba(255,215,0,0.1), rgba(255,215,0,0.5));
  z-index: -1;
  pointer-events: none;
}
.pricing-card.streaming-popular::after {
  background: linear-gradient(135deg, rgba(168,85,247,0.5), rgba(168,85,247,0.1), rgba(168,85,247,0.5));
}

/* Smooth number animation */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .universes-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .streaming-pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .stats-container { gap: 32px; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-btn-records, .final-btn-streaming { width: 100%; max-width: 360px; }
  .hero-equalizer { display: none; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
}

/* ============================================================
   LOGOS OFFICIELS
   ============================================================ */
.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Hero logos */
.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  animation: fadeInDown 0.7s ease both;
}
.hero-logo-records {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: var(--logo-white-glow) drop-shadow(0 0 24px rgba(255,215,0,0.5));
}
.hero-logo-records:hover {
  transform: scale(1.05);
  filter: var(--logo-white-glow) drop-shadow(0 0 32px rgba(255,215,0,0.8));
}
.hero-logo-streaming {
  height: 216px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: var(--logo-white-glow) drop-shadow(0 0 24px rgba(102,0,204,0.7)) brightness(1.3);
}
.hero-logo-streaming:hover {
  transform: scale(1.05);
  filter: var(--logo-white-glow) drop-shadow(0 0 32px rgba(102,0,204,1)) brightness(1.4);
}
.hero-logo-sep {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}

/* Card logos */
.card-logo-wrap {
  margin-bottom: 16px;
}
.card-logo {
  height: 88px;
  width: auto;
  object-fit: contain;
}
.records-logo {
  margin-bottom: 15px;
  filter: var(--logo-white-glow) drop-shadow(0 0 12px rgba(255,215,0,0.3));
}
.streaming-logo {
  height: 144px;
  filter: var(--logo-white-glow) drop-shadow(0 0 12px rgba(102,0,204,0.5)) brightness(1.1);
}

/* Offer group logos */
.offer-group-logo {
  height: 96px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 8px;
  filter: var(--logo-white-glow) drop-shadow(0 0 10px rgba(255,215,0,0.3));
}
.streaming-offer-logo {
  height: 144px;
  filter: var(--logo-white-glow) drop-shadow(0 0 10px rgba(102,0,204,0.5)) brightness(1.1);
}

/* Footer logos */
.footer-logo-img {
  height: 96px;
  width: auto;
  object-fit: contain;
  filter: var(--logo-white-glow) brightness(1.1);
  margin-bottom: 4px;
}
.footer-col-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  filter: var(--logo-white-glow);
}
.records-col-title .footer-col-logo {
  height: 48px;
}
.footer-col-title {
  margin-bottom: 4px;
}
.footer-col-title-plain {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white-60);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Final CTA logo buttons */
.final-btn-logo {
  flex-shrink: 0;
}
.final-btn-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.final-btn-records .final-btn-logo img {
  filter: var(--logo-white-glow) drop-shadow(0 0 8px rgba(255,215,0,0.4));
}
.final-btn-streaming .final-btn-logo img {
  height: 64px;
  filter: var(--logo-white-glow) brightness(1.1) drop-shadow(0 0 8px rgba(102,0,204,0.5));
}

/* Highlight purple text */
.highlight-purple {
  color: var(--color-violet-light);
  font-weight: 700;
}

/* ============================================================
   CATALOGUE HIGHLIGHT SECTION
   ============================================================ */
.catalogue-highlight {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  overflow: hidden;
}
.cat-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,0,15,0.97) 0%,
    rgba(13,0,32,0.9) 50%,
    rgba(8,0,15,0.97) 100%
  );
}
.cat-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.cat-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cat-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: var(--logo-white-glow) brightness(1.2) drop-shadow(0 0 30px rgba(102,0,204,0.6));
  animation: catLogoPulse 4s ease-in-out infinite;
}
@keyframes catLogoPulse {
  0%, 100% { filter: var(--logo-white-glow) brightness(1.2) drop-shadow(0 0 20px rgba(102,0,204,0.5)); }
  50% { filter: var(--logo-white-glow) brightness(1.3) drop-shadow(0 0 40px rgba(102,0,204,0.8)); }
}
.cat-free-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168,85,247,0.4);
  background: rgba(168,85,247,0.08);
  width: 100%;
}
.cat-free-icon {
  font-size: 28px;
  color: var(--color-violet-light);
  flex-shrink: 0;
}
.cat-free-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}
.cat-free-badge span {
  display: block;
  font-size: 12px;
  color: var(--color-white-60);
}
.cat-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--color-white);
}
.cat-desc {
  font-size: 15px;
  color: var(--color-white-60);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 540px;
}
.cat-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.genre-tag {
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(168,85,247,0.3);
  background: rgba(168,85,247,0.07);
  color: var(--color-violet-light);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.genre-tag:hover {
  background: rgba(168,85,247,0.18);
  border-color: rgba(168,85,247,0.6);
}
.cat-rights-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(168,85,247,0.2);
  background: var(--color-bg-2);
}
.rights-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rights-icon {
  font-size: 22px;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}
.rights-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}
.rights-text span {
  display: block;
  font-size: 12px;
  color: var(--color-white-60);
}
.btn-streaming-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--color-violet);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(168,85,247,0.35);
}
.btn-streaming-large:hover {
  background: var(--color-violet-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(168,85,247,0.5);
}

@media (max-width: 900px) {
  .cat-inner { grid-template-columns: 1fr; gap: 40px; }
  .cat-logo-col { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .cat-logo { width: 120px; }
}

/* Streaming tag color */
.streaming-tag {
  background: rgba(168,85,247,0.15);
  border-color: rgba(168,85,247,0.4);
  color: var(--color-violet-light);
}

/* gradient-text-purple */
.gradient-text-purple {
  background: linear-gradient(135deg, #a855f7, #c084fc, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   MODALS (Legal, Privacy, TOS)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 0, 15, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-container {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover {
  background: rgba(255,255,255,0.2);
}
.modal-container::-webkit-scrollbar {
  width: 8px;
}
.modal-container::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
.modal-container::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--color-white);
  padding-right: 24px;
}
.text-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  margin: 32px 0 16px;
}
.text-content p {
  color: var(--color-white-80);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
}
.text-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--color-white-80);
  font-size: 15px;
}
.text-content ul li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .modal-container {
    padding: 24px;
    width: 95%;
  }
}
