:root {
  --bg: #07070f;
  --surface: #0f0f1a;
  --surface2: #161625;
  --border: #1e1e32;
  --blue: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.15);
  --blue-dim: rgba(59, 130, 246, 0.6);
  --violet: #8b5cf6;
  --violet-glow: rgba(139, 92, 246, 0.12);
  --text: #e8e8f0;
  --text-dim: #7878a0;
  --text-muted: #4a4a68;
  --white: #ffffff;
  --green: #10b981;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 7, 15, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 80px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* VIDEO FRAME */
.hero-visual {
  position: relative;
}
.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-screen {
  background: var(--surface2);
  aspect-ratio: 9/14;
  position: relative;
  overflow: hidden;
}
.video-glow {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-dim), var(--violet));
  opacity: 0;
  filter: blur(20px);
  z-index: -1;
}
.video-player-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vp-creator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(7,7,15,0.9) 0%, transparent 100%);
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
}
.vp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  flex-shrink: 0;
}
.vp-meta { flex: 1; }
.vp-name { font-size: 13px; font-weight: 600; color: var(--white); }
.vp-handle { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.vp-live-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #ef4444;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
}
.vp-content {
  flex: 1;
  display: flex;
}
.vp-video-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0d20 0%, #1a1a30 100%);
  position: relative;
}
.vp-play-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.vp-sidebar {
  width: 64px;
  background: rgba(7,7,15,0.8);
  border-left: 1px solid var(--border);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  padding-bottom: 24px;
}
.vp-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 600;
}
.vp-icon-eye, .vp-icon-heart, .vp-icon-coin {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
}

/* PLATFORM SECTION */
.platform {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.section-header {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.platform-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.platform-card {
  background: var(--surface);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}
.platform-card:hover {
  background: var(--surface2);
  border-color: rgba(59, 130, 246, 0.2);
}
.pc-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-glow);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.platform-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.platform-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* MONETIZATION */
.monetization {
  padding: 120px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mon-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.mon-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.mon-item {
  display: flex;
  gap: 24px;
  padding: 32px 36px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s;
}
.mon-item:hover { border-color: rgba(59, 130, 246, 0.2); }
.mon-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.mon-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.mon-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
}
.mon-body strong { color: var(--blue); font-weight: 700; }

/* CATEGORIES */
.categories {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.cat-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cat-header {
  margin-bottom: 56px;
}
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cat-pill {
  padding: 10px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  transition: all 0.2s;
  cursor: default;
}
.cat-pill:hover {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--text);
  background: var(--surface2);
}

/* TRANSPARENCY */
.transparency {
  padding: 120px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trans-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.trans-headline {
  max-width: 560px;
  margin-bottom: 64px;
}
.trans-headline h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.trans-headline p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
}
.trans-breakdown {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
}
.tb-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  padding: 18px 32px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  align-items: center;
}
.tb-row:last-child { border-bottom: none; }
.tb-header {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface2);
}
.tb-row span { color: var(--text-dim); }
.tb-row span:first-child { color: var(--text); font-weight: 500; }
.tb-note { color: var(--text-muted) !important; font-size: 12px; }
.tb-highlight { color: var(--green) !important; font-weight: 600; }
.trans-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 48px;
}
.closing-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--blue), transparent);
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-dim); }
.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 48px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .platform { padding: 80px 24px; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .monetization { padding: 80px 24px; }
  .mon-grid { grid-template-columns: 1fr; }
  .categories { padding: 80px 24px; }
  .transparency { padding: 80px 24px; }
  .tb-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .tb-row span:nth-child(4) { display: none; }
  .closing { padding: 100px 24px; }
  .site-footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 40px; }
  .stat-value { font-size: 28px; }
  .trans-headline h2 { font-size: 32px; }
}