/* ============================================
   VNESYS APP DARK UI THEME (OLED Dark & Amber Gold)
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #F59E0B;
  --gold-hover: #D97706;
  --gold-glow:  rgba(245, 158, 11, 0.25);
  --red-live:   #EF4444;
  --green-gain: #10B981;
  --bg-dark:    #000000;
  --bg-surface: #0E0E10;
  --bg-card:    #151518;
  --bg-card-alt:#1A1A1E;
  --border:     #242429;
  --border-subtle: #1C1C20;
  --text-main:  #FFFFFF;
  --text-sub:   #A1A1AA;
  --text-muted: #71717A;
  --radius:     20px;
  --nav-h:      68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', -apple-system, sans-serif;
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAVBAR (Glassmorphism Dark)
============================================ */
.top-navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 500;
}

.navbar-container {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 1.8em;
  height: var(--nav-h);
  max-width: 1400px; margin: 0 auto;
}

.navbar-logo img {
  display: block;
  height: 34px; width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex; align-items: center;
  gap: 0.4em; list-style: none;
}
.navbar-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-weight: 600; font-size: 0.92em;
  border-radius: 100px;
  padding: 0.5em 1.1em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.navbar-links a:hover {
  background: var(--bg-card);
  color: var(--gold);
  border-color: var(--border);
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer; gap: 5px;
  flex-shrink: 0;
}
.navbar-toggle span {
  display: block; height: 2px; width: 20px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.mobile-menu {
  display: none;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 0.8em 0 1.2em;
  border-radius: 0 0 24px 24px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; padding: 0 1.2em; }
.mobile-menu li { border-bottom: 1px solid var(--border-subtle); }
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu a {
  display: block;
  padding: 0.9em 0.6em;
  color: var(--text-sub);
  font-weight: 600; font-size: 0.98em;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

main { margin-top: var(--nav-h); }

@media (max-width: 900px) {
  .navbar-links  { display: none; }
  .navbar-toggle { display: flex; }
}

/* ============================================
   HERO SECTION (App UI Dark Ambiance)
============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #171412 0%, #08080A 65%, #000000 100%);
  padding: 5.5em 1.5em 6.5em;
  border-bottom: 1px solid var(--border-subtle);
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 25%, rgba(245, 158, 11, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(239, 68, 68, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 75%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
  animation: meshPulse 10s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshPulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

.particles {
  position: absolute; inset: 0; pointer-events: none;
}
.particle {
  position: absolute;
  width: 3.5px; height: 3.5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
}
.particle:nth-child(odd) { background: #FFD166; width: 2.5px; height: 2.5px; }
@keyframes floatUp {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  15%  { opacity: 0.65; }
  85%  { opacity: 0.35; }
  100% { transform: translateY(-10vh) translateX(var(--drift, 30px)); opacity: 0; }
}

/* Marquee in hero */
.hero-marquee {
  position: absolute; bottom: 0; left: 0;
  width: 100%; overflow: hidden;
  padding: 0.75em 0;
  border-top: 1px solid var(--border-subtle);
  background: rgba(8, 8, 10, 0.75);
  backdrop-filter: blur(8px);
}
.hero-marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 24s linear infinite;
}
.hero-marquee-track span {
  font-size: 0.78em; letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 2em;
}
.hero-marquee-track span.accent { color: var(--gold); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-content { position: relative; z-index: 2; max-width: 840px; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6em;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  padding: 0.45em 1.25em;
  font-size: 0.8em; font-weight: 700;
  color: #FBBF24;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.8em;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
  animation: fadeSlideDown 0.8s ease 0.2s both;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 8.5vw, 4.8rem);
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  animation: fadeSlideDown 0.9s ease 0.4s both;
}
.hero-title .accent-red {
  color: var(--gold);
  text-shadow: 0 0 35px rgba(245, 158, 11, 0.35);
}

.hero-kicker {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.6vw, 1.3em);
  color: var(--text-sub);
  margin-top: 0.9em;
  letter-spacing: 0.01em;
  animation: fadeSlideDown 1s ease 0.5s both;
}

.hero-sub {
  margin-top: 1.4em;
  font-size: clamp(0.98rem, 3vw, 1.15em);
  color: var(--text-sub);
  line-height: 1.75;
  font-weight: 450;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeSlideDown 1s ease 0.6s both;
}
.hero-sub strong { color: #FFFFFF; font-weight: 700; }

.hero-cta {
  display: flex; gap: 1em; flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.6em;
  animation: fadeSlideDown 1.1s ease 0.8s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6em;
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: #000000;
  padding: 0.9em 2.2em;
  border-radius: 100px;
  font-weight: 800; font-size: 1em;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(245, 158, 11, 0.55);
  filter: brightness(1.06);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--bg-card);
  color: #FFFFFF;
  padding: 0.9em 2.2em;
  border-radius: 100px;
  font-weight: 700; font-size: 1em;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--bg-card-alt);
  border-color: var(--gold);
  color: var(--gold);
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STATS BAR (Dark Minimal Card)
============================================ */
.stats-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 1.8em 1em;
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.stat-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0.8em 2em;
  border-right: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  min-width: 140px;
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4em; font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}
.stat-label {
  font-size: 0.8em;
  color: var(--text-muted);
  margin-top: 0.45em;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

/* ============================================
   POSTER SECTION
============================================ */
.poster-section {
  position: relative;
  height: 48vw; max-height: 500px;
  min-height: 180px;
  overflow: hidden;
  margin: 0;
  background: #000;
  border-bottom: 1px solid var(--border-subtle);
}
.poster-section svg { position: absolute; width: 0; height: 0; }
.poster-section .poster {
  position: absolute; inset: 0;
}
.poster-section .poster__inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  filter: contrast(1.15) brightness(0.9);
}

/* ============================================
   SECTION BLOCKS (OLED Dark UI Cards)
============================================ */
.section-block {
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  margin: 2em auto;
  max-width: 1200px;
  padding: 3em 2.5em;
  overflow: hidden;
  position: relative;
}
.section-block--dark {
  background: radial-gradient(circle at 85% 15%, #1C1914 0%, #0E0E10 65%);
  border-color: #2D261A;
}
.section-kicker {
  display: inline-block;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
}

/* Side-by-side layout */
.content-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
}
.content-duo.reverse { direction: rtl; }
.content-duo.reverse > * { direction: ltr; }

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  line-height: 1.18;
  color: var(--text-main);
  margin-bottom: 0.7em;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.tren-red { color: var(--gold) !important; }

.section-text {
  font-size: 1.02em; line-height: 1.85;
  color: var(--text-sub);
  font-weight: 450;
}
.section-text strong {
  color: #FFFFFF;
  font-weight: 700;
}
.section-text.emphasis {
  font-size: 1.1em;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 0.6em;
}

/* Video box (App Player Frame) */
.video-box {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.75);
  background: #000;
  position: relative;
  width: 100%;
}
.video-box video {
  width: 100%; display: block;
  border-radius: 18px;
  max-height: 340px;
  object-fit: cover;
}
.video-watch-link {
  margin: 0;
  padding: 0.7em 1em;
  text-align: center;
  background: #000;
}
.video-watch-link a {
  color: var(--gold, #F59E0B);
  text-decoration: none;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.video-watch-link a:hover {
  text-decoration: underline;
}

/* ============================================
   FEATURE CARDS GRID (Category / Studio UI)
============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3em;
  margin: 2.2em 0 1em;
}
.feature-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 2em 1.6em;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.5);
  background: var(--bg-card-alt);
  transform: translateY(-3px);
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  border-radius: 0 0 3px 0;
  transition: height 0.4s ease;
  box-shadow: 0 0 10px var(--gold);
}
.feature-card:hover::before { height: 100%; }

.feature-icon {
  font-size: 2.2em;
  margin-bottom: 0.6em;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(245,158,11,0.2));
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1.15em;
  color: #FFFFFF; margin-bottom: 0.5em;
}
.feature-text { font-size: 0.92em; color: var(--text-sub); line-height: 1.7; font-weight: 450; }

/* ============================================
   MONETIZATION LIST
============================================ */
.monetize-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8em;
  margin: 1.8em 0;
}
.monetize-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1em 1.2em;
  font-size: 0.95em;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.6em;
  transition: border-color 0.25s, transform 0.25s;
}
.monetize-list li:hover { border-color: var(--gold); transform: translateY(-2px); }
.monetize-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================
   PARTNER PROGRAM (Wallet / Metrics Accent)
============================================ */
.partner-section {
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  margin: 2em auto;
  max-width: 1200px;
  padding: 3em 2em;
}
.partner-header {
  text-align: center; margin-bottom: 2.2em;
}
.partner-badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 100px;
  padding: 0.45em 1.3em;
  font-size: 0.82em; font-weight: 700;
  color: var(--gold); margin-bottom: 1.2em;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============================================
   FAQ ACCORDION
============================================ */
.faq-section {
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  margin: 2em auto;
  max-width: 1200px;
  padding: 3em 2.5em;
}
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-toggle {
  width: 100%; display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4em 0;
  background: none; border: none;
  cursor: pointer; text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05em; font-weight: 700;
  color: #FFFFFF;
  transition: color 0.2s;
  gap: 1em;
}
.faq-toggle:hover { color: var(--gold); }
.faq-toggle-icon {
  width: 30px; height: 30px; min-width: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.2s, border-color 0.2s;
  font-size: 1.1em; color: var(--gold); font-weight: 700;
}
.faq-toggle.open .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--gold); color: #000000;
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1),
              padding 0.3s ease;
}
.faq-body.open { max-height: 600px; }
.faq-body-inner {
  padding-bottom: 1.8em;
  font-size: 0.98em; color: var(--text-sub); line-height: 1.85;
}
.faq-body-inner p { margin-bottom: 0.9em; }
.faq-body-inner strong { color: #FFFFFF; }

/* ============================================
   GUIDELINES CALLOUT
============================================ */
.guideline-callout {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: 1.6em 1.8em;
  margin-top: 1.6em;
  font-size: 0.95em;
  line-height: 1.8;
  color: var(--text-sub);
}
.guideline-callout strong { color: #FBBF24; }

/* ============================================
   MARQUEE STRIP
============================================ */
.marquee-strip {
  background: #08080A;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.1em 0;
  overflow: hidden;
  margin: 2.5em 0;
}
.marquee-strip-inner {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-strip-inner span {
  font-family: 'Syne', sans-serif;
  font-size: 0.9em; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  padding: 0 1.4em;
}
.marquee-strip-inner span.accent { color: var(--gold); }
.marquee-strip-inner span.accent-r { color: #FFFFFF; }

/* ============================================
   CLOSING SECTION
============================================ */
.closing-section {
  text-align: center;
  padding: 4em 2em;
  max-width: 900px;
  margin: 0 auto;
}
.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1em, 2.4vw, 1.5em);
  color: var(--gold);
  margin-top: 1.2em;
  letter-spacing: -0.01em;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #050507;
  border-top: 1px solid var(--border-subtle);
  padding: 3em 1em;
  text-align: center;
  overflow: hidden;
}
.footer__divM {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 0;
  width: 100%;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 6vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.footer__divM span {
  color: rgba(255,255,255,0.12);
  display: inline-block;
  transition: color 0.3s, transform 0.3s;
  cursor: default;
}
.footer__divM span:hover { color: #FFFFFF; transform: translateY(-5px); }
.footer__divM span.tren-red { color: rgba(245, 158, 11, 0.3); }
.footer__divM span.tren-red:hover { color: var(--gold); text-shadow: 0 0 25px var(--gold); }

/* --------------------------------------------
   FOOTER (uniformisé - identique à earn.html)
   Scopé en #site-footer pour ne pas entrer en
   collision avec le <footer class="footer"> décoratif
   (bloc animé "PARTENARIAT") plus haut sur cette page.
-------------------------------------------- */
#site-footer {
  border-top: 1px solid #1C1C20;
  background: #050507;
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

#site-footer .logo img {
  height: 32px;
  opacity: 0.6;
  filter: brightness(2);
}

#site-footer p {
  font-size: 0.8rem;
  color: #71717A;
}

#site-footer nav a {
  color: #71717A;
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: 20px;
  transition: color 0.2s;
}

#site-footer nav a:hover {
  color: #F59E0B;
}

#site-footer > a {
  color: #71717A;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

#site-footer > a:hover {
  color: #F59E0B;
}

@media (max-width: 768px) {
  #site-footer {
    flex-direction: column;
    text-align: center;
  }
  #site-footer nav a {
    margin: 0 10px;
  }
}

/* ============================================
   ANIMATE ON SCROLL
============================================ */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.mobile-br { display: none; }

/* ============================================
   RESPONSIVE — TABLET (max 900px)
============================================ */
@media (max-width: 900px) {
  :root { --nav-h: 62px; }

  .hero { padding: 4.5em 1.2em 5.5em; min-height: 80vh; }

  .content-duo {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  .content-duo.reverse { direction: ltr; }

  .video-box {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }

  .section-block, .partner-section, .faq-section {
    margin: 1.2em 0.8em;
    border-radius: 20px;
    padding: 2.2em 1.4em;
  }

  .stats-bar { padding: 1.2em 0.5em; }
  .stat-item {
    padding: 0.8em 1em;
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 50%;
    flex-shrink: 0;
  }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }

  .video-box video { max-height: 280px; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 1em; }

  .poster-section { height: 55vw; min-height: 160px; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 600px)
============================================ */
@media (max-width: 600px) {
  :root { --nav-h: 58px; }

  .navbar-container { padding: 0 1em; }
  .navbar-logo img  { height: 30px; }

  .hero {
    min-height: 85vh;
    padding: 4em 1em 5em;
  }
  .hero-badge {
    font-size: 0.72em;
    padding: 0.4em 1em;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }
  .hero-sub {
    font-size: 0.95em;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 290px;
    justify-content: center;
    padding: 0.9em 1.5em;
  }

  .stats-bar { padding: 0.5em 0; }
  .stat-item { width: 50%; padding: 0.8em 0.5em; }
  .stat-num  { font-size: 1.9em; }
  .stat-label { font-size: 0.72em; }

  .poster-section { height: 60vw; min-height: 140px; }

  .section-block, .partner-section, .faq-section {
    margin: 0.9em 0.5em;
    border-radius: 16px;
    padding: 1.8em 1.1em;
  }
  .mobile-br { display: block; }

  .section-title {
    font-size: 7.5vw;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
  }
  .section-title span {
    display: block;
    white-space: normal;
    overflow: visible;
  }

  .video-box video { max-height: 220px; }

  .features-grid { grid-template-columns: 1fr; gap: 0.9em; }
  .feature-card  { padding: 1.5em 1.2em; }

  .monetize-list { grid-template-columns: 1fr; }

  .faq-toggle {
    font-size: 0.95em;
    padding: 1em 0;
  }

  .marquee-strip { margin: 1.5em 0; }
  .marquee-strip-inner span { font-size: 0.8em; padding: 0 0.8em; }

  .footer { padding: 2.2em 0.5em; }
  .footer__divM { font-size: clamp(1.3rem, 7.5vw, 2.8rem); }
  .footer-privacy__content { gap: 1em; font-size: 0.84em; flex-direction: column; }

  .closing-section { padding: 3em 1.2em; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(1.7rem, 11vw, 2.4rem); }
  .hero-badge { font-size: 0.65em; }
  .stat-item  { width: 50%; }
  .stat-num   { font-size: 1.6em; }
}

:root {
  --gold:          #F59E0B;
  --gold-hover:    #D97706;
  --bg-card:       #151518;
  --border:        #242429;
  --border-subtle: #1C1C20;
  --text-sub:      #A1A1AA;
  --nav-h:         68px;
}

.top-navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2em;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-logo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.4em;
  list-style: none;
  margin: 0; padding: 0;
}

.navbar-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.92em;
  font-weight: 600;
  padding: 0.5em 1.1em;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.navbar-links a:hover {
  background: var(--bg-card);
  color: var(--gold);
}

.navbar-links a.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: #000000 !important;
  font-weight: 700;
  padding: 0.5em 1.3em;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  margin-left: 0.4em;
}

.navbar-links a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.55);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  gap: 5px;
}

.navbar-toggle span {
  display: block;
  height: 2px; width: 20px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0;
  width: 100%;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8em 0 1.2em;
  z-index: 999;
}

.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0 1.5em; margin: 0; }
.mobile-menu li { border-bottom: 1px solid var(--border-subtle); }
.mobile-menu li:last-child { border-bottom: none; }

.mobile-menu a {
  display: block;
  padding: 0.85em 0.5em;
  color: var(--text-sub);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .top-navbar { padding: 0 1.2em; }
  .navbar-links { display: none; }
  .navbar-toggle { display: flex; }
}

/* ===== Extracted from creators.html inline <style> block ===== */
/* Format showcase — self-contained animation */
.format-showcase {
      position: relative;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.2em;
      padding: 3.5em 1.5em;
      overflow: hidden;
      background: radial-gradient(circle at 50% 40%, #14110C 0%, #000000 75%);
      border-top: 1px solid var(--border-subtle, #1C1C20);
      border-bottom: 1px solid var(--border-subtle, #1C1C20);
    }
    .format-showcase__glow {
      position: absolute; inset: -20%;
      background: radial-gradient(ellipse 40% 60% at 50% 50%, rgba(245,158,11,0.14) 0%, transparent 70%);
      animation: formatGlowPulse 6s ease-in-out infinite alternate;
      pointer-events: none;
    }
    @keyframes formatGlowPulse {
      0%   { opacity: 0.6; transform: scale(1); }
      100% { opacity: 1;   transform: scale(1.12); }
    }
    .format-showcase__wordmark {
      position: relative;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(2.4rem, 9vw, 5.5rem);
      letter-spacing: 0.02em;
      line-height: 1;
      background: linear-gradient(100deg, #3A3A40 20%, #F59E0B 45%, #FFD166 55%, #3A3A40 80%);
      background-size: 250% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: formatWordmarkSheen 5s linear infinite;
      text-align: center;
    }
    @keyframes formatWordmarkSheen {
      0%   { background-position: 200% 0; }
      100% { background-position: -50% 0; }
    }
    .format-track {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1em;
    }
    .format-chip {
      display: flex; align-items: center; gap: 0.6em;
      background: var(--bg-card, #151518);
      border: 1px solid var(--border, #242429);
      border-radius: 100px;
      padding: 0.75em 1.5em;
      font-weight: 700; font-size: 0.98em;
      color: var(--text-sub, #A1A1AA);
      opacity: 0; transform: translateY(16px);
      animation: formatChipIn 0.6s ease forwards, formatChipCycle 8s ease-in-out infinite;
      animation-delay: calc(var(--i) * 0.12s), calc(2s + var(--i) * 1.6s);
    }
    @keyframes formatChipIn {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes formatChipCycle {
      0%, 92%, 100% {
        border-color: var(--border, #242429);
        box-shadow: none;
        color: var(--text-sub, #A1A1AA);
      }
      8%, 84% {
        border-color: rgba(245,158,11,0.6);
        box-shadow: 0 0 22px rgba(245,158,11,0.25);
        color: #FFFFFF;
      }
    }
    .format-chip__icon { font-size: 1.3em; }
    .format-chip--podcast { border-color: rgba(245,158,11,0.35); }
    @media (max-width: 600px) {
      .format-showcase { min-height: 200px; padding: 2.6em 1em; gap: 1.6em; }
      .format-track { gap: 0.6em; }
      .format-chip { padding: 0.6em 1.1em; font-size: 0.85em; }
    }
