/* ── TOKENS ── */
:root {
  --bg: #080a0c;
  --bg2: #0d1117;
  --bg3: #111820;
  --surface: #141c26;
  --surface2: #1a2535;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --accent: #e8ff3c;
  --accent2: #ff3c6e;
  --accent3: #3cffdc;
  --text: #f0f4ff;
  --text2: #8a9bb5;
  --text3: #5a6a80;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 12px;
  --radius-sm: 6px;
  --nav-h: 68px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITY ── */
.hidden { display: none !important; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ════════════════════════════════════════
   INTRO SCREEN
════════════════════════════════════════ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #030507;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#intro.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}
#intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: introReveal 1.2s ease 0.3s both;
}
@keyframes introReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.intro-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.eye-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--accent);
  animation: eyePulse 3s ease-in-out infinite;
  display: block;
  line-height: 1;
}
@keyframes eyePulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: 0.7; }
}
.intro-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--text);
}
.intro-title em {
  font-style: normal;
  color: var(--accent);
  -webkit-text-stroke: 2px var(--accent);
  text-shadow: 0 0 40px rgba(232,255,60,0.4);
}
.intro-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--text2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.btn-enter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  box-shadow: 0 0 30px rgba(232,255,60,0.3);
}
.btn-enter:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(232,255,60,0.5);
}
.intro-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}
.intro-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,10,12,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#navbar.scrolled {
  background: rgba(8,10,12,0.97);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.eye-icon-sm {
  color: var(--accent);
  font-size: 1.1rem;
}
.nav-logo strong { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--accent);
  transition: right 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { right: 0; }
.nav-search-btn {
  color: var(--text2);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-search-btn:hover { color: var(--accent); background: var(--surface); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SEARCH BAR */
.search-bar {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
}
.search-bar.open { height: 56px; }
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 12px 0;
}
.search-bar input::placeholder { color: var(--text3); }
#searchClose { color: var(--text2); font-size: 1rem; padding: 8px; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.mobile-menu.open {
  max-height: 320px;
  padding: 16px 0;
}
.mob-link {
  display: block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color 0.2s, background 0.2s;
}
.mob-link:hover { color: var(--accent); background: var(--surface); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
  padding: 80px 0 80px 5vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232,255,60,0.1);
  border: 1px solid rgba(232,255,60,0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

/* GLITCH */
.glitch {
  position: relative;
  color: var(--accent);
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
}
.glitch::before {
  color: var(--accent2);
  animation: glitch1 3s infinite;
}
.glitch::after {
  color: var(--accent3);
  animation: glitch2 3s infinite;
}
@keyframes glitch1 {
  0%,94%,96%,100% { clip-path: none; transform: none; opacity: 0; }
  94.5%  { clip-path: polygon(0 20%,100% 20%,100% 40%,0 40%); transform: translate(-3px,0); opacity: 1; }
  95.5%  { clip-path: polygon(0 60%,100% 60%,100% 80%,0 80%); transform: translate(3px,0); opacity: 1; }
}
@keyframes glitch2 {
  0%,96%,98%,100% { clip-path: none; transform: none; opacity: 0; }
  96.5%  { clip-path: polygon(0 45%,100% 45%,100% 55%,0 55%); transform: translate(4px,0); opacity: 1; }
  97.5%  { clip-path: polygon(0 10%,100% 10%,100% 25%,0 25%); transform: translate(-2px,0); opacity: 1; }
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  box-shadow: 0 0 20px rgba(232,255,60,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(232,255,60,0.4);
}
.btn-ghost {
  padding: 14px 28px;
  border: 1px solid var(--border2);
  color: var(--text2);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,255,60,0.05);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.stat span { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: var(--border2); }

/* TV */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 5vw 80px 0;
}
.tv-frame {
  position: relative;
  width: min(380px, 42vw);
  transform-style: preserve-3d;
  perspective: 800px;
  animation: tvFloat 6s ease-in-out infinite;
}
@keyframes tvFloat {
  0%,100% { transform: translateY(0) rotateY(-8deg) rotateX(3deg); }
  50%      { transform: translateY(-16px) rotateY(8deg) rotateX(-3deg); }
}
.tv-screen {
  background: #000;
  border-radius: 8px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 6px solid #1e2a3a;
  box-shadow:
    0 0 0 1px #2a3a50,
    0 0 60px rgba(232,255,60,0.12),
    inset 0 0 20px rgba(0,0,0,0.5);
  position: relative;
}
.tv-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: noiseAnim 0.1s steps(1) infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes noiseAnim {
  0%   { background-position: 0 0; }
  25%  { background-position: 100px 50px; }
  50%  { background-position: 50px 150px; }
  75%  { background-position: 150px 100px; }
  100% { background-position: 0 0; }
}
.featured-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0a1220, #1a2840);
}
.featured-video-placeholder p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text3);
  letter-spacing: 0.2em;
}
.play-glow {
  width: 64px; height: 64px;
  background: rgba(232,255,60,0.12);
  border: 1px solid rgba(232,255,60,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 0 30px rgba(232,255,60,0.3);
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 20px rgba(232,255,60,0.3); }
  50%      { box-shadow: 0 0 50px rgba(232,255,60,0.6); }
}
.tv-base {
  height: 16px;
  background: #1e2a3a;
  border-radius: 0 0 4px 4px;
  margin: 0 20px;
}
.tv-leg {
  position: absolute;
  bottom: -28px;
  width: 8px;
  height: 28px;
  background: #1e2a3a;
  border-radius: 0 0 4px 4px;
}
.tv-leg-l { left: 30%; }
.tv-leg-r { right: 30%; }

/* ════════════════════════════════════════
   TICKER
════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   SECTIONS
════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 12px;
  border: 1px solid rgba(232,255,60,0.3);
  border-radius: 999px;
  background: rgba(232,255,60,0.07);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-desc { color: var(--text2); max-width: 440px; text-align: center; line-height: 1.6; }

/* ── CATEGORIES ── */
.categories-section { background: var(--bg2); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.cat-c1::before { background: linear-gradient(135deg, rgba(232,255,60,0.06), transparent); }
.cat-c2::before { background: linear-gradient(135deg, rgba(255,60,110,0.06), transparent); }
.cat-c3::before { background: linear-gradient(135deg, rgba(60,255,220,0.06), transparent); }
.cat-c4::before { background: linear-gradient(135deg, rgba(120,80,255,0.06), transparent); }
.cat-c5::before { background: linear-gradient(135deg, rgba(255,160,40,0.06), transparent); }
.cat-c6::before { background: linear-gradient(135deg, rgba(40,200,255,0.06), transparent); }
.cat-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.cat-card:hover::before { opacity: 1; }
.cat-icon { font-size: 2rem; }
.cat-card h3 { font-size: 1.1rem; font-weight: 700; }
.cat-card p { font-size: 0.88rem; color: var(--text2); line-height: 1.5; flex: 1; }
.cat-count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  margin-top: auto;
  letter-spacing: 0.08em;
}

/* ── TRENDING ── */
.trending-section { background: var(--bg); }
.videos-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.featured-card {
  grid-row: 1 / 3;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.thumb-placeholder {
  width: 100%; height: 100%;
  transition: transform 0.4s;
}
.video-card:hover .thumb-placeholder { transform: scale(1.05); }
.tp1  { background: linear-gradient(135deg, #1a0a2e, #0e1a4a); }
.tp2  { background: linear-gradient(135deg, #1a1a0a, #2e1a00); }
.tp3  { background: linear-gradient(135deg, #0a1a1a, #003030); }
.tp4  { background: linear-gradient(135deg, #1a0a0a, #3a0a0a); }
.tp5  { background: linear-gradient(135deg, #0a1a0a, #001a20); }
.tp6  { background: linear-gradient(135deg, #10080a, #2a0a20); }
.tp7  { background: linear-gradient(135deg, #081010, #002030); }
.tp8  { background: linear-gradient(135deg, #101810, #001828); }
.tp9  { background: linear-gradient(135deg, #180808, #280018); }
.tp10 { background: linear-gradient(135deg, #080818, #001028); }
.tp11 { background: linear-gradient(135deg, #080a08, #001800); }
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.video-card:hover .video-overlay { background: rgba(0,0,0,0.4); }
.play-btn {
  width: 52px; height: 52px;
  background: rgba(232,255,60,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s;
  color: #000;
}
.video-card:hover .play-btn {
  opacity: 1;
  transform: scale(1);
}
.video-duration {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.8);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
}
.trending-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.video-info { padding: 18px; }
.video-cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.video-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 8px 0;
  line-height: 1.3;
}
.featured-card .video-title { font-size: 1.3rem; }
.video-desc {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 12px;
}
.video-meta {
  display: flex;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text3);
}

/* ── RECENTS ── */
.recents-section { background: var(--bg2); }
.recents-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recent-item {
  display: flex;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.recent-item:hover {
  border-color: var(--border2);
  transform: translateX(4px);
}
.recent-thumb {
  position: relative;
  width: 200px;
  min-width: 200px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.recent-thumb .thumb-placeholder { width: 100%; height: 100%; }
.recent-thumb .video-duration {
  position: absolute;
  bottom: 6px; right: 6px;
}
.recent-info {
  padding: 20px 20px 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recent-info h3 { font-size: 1rem; font-weight: 700; }
.recent-info p { font-size: 0.85rem; color: var(--text2); line-height: 1.5; }
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.btn-load-more {
  padding: 14px 36px;
  border: 1px solid var(--border2);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.btn-load-more:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,255,60,0.05);
}

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1520, #0a0f1a);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.nl-eye {
  font-size: 3rem;
  color: var(--accent);
  animation: eyePulse 3s ease-in-out infinite;
}
.newsletter-box h2 { font-size: 2rem; font-weight: 800; }
.newsletter-box p { color: var(--text2); line-height: 1.6; }
.nl-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 440px;
}
.nl-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input:focus { border-color: var(--accent); }
.nl-form input::placeholder { color: var(--text3); }
.btn-nl {
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all 0.25s;
}
.btn-nl:hover { background: #d4eb2e; }
.nl-note {
  font-size: 0.82rem;
  color: var(--accent);
  height: 1rem;
}

/* ── ABOUT ── */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
/* 3D FLIP CARD */
.about-3d-card {
  width: 280px;
  height: 360px;
  perspective: 800px;
  margin: 0 auto;
}
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.about-3d-card:hover .card-inner { transform: rotateY(180deg); }
.card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
}
.card-front {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--border2);
}
.card-back {
  background: linear-gradient(135deg, #1a1a00, #1a2200);
  border: 1px solid rgba(232,255,60,0.3);
  transform: rotateY(180deg);
}
.big-eye {
  font-size: 4rem;
  color: var(--accent);
  display: block;
}
.card-front p {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-front strong { color: var(--accent); }
.card-back p {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: var(--accent);
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text p { color: var(--text2); line-height: 1.7; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-item > span {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.value-item p { font-size: 0.85rem; color: var(--text3); margin: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--text3);
  line-height: 1.6;
}
.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--text2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-social h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text2);
  transition: all 0.25s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,255,60,0.05);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text3); }
.footer-credit { color: var(--text3); }

/* ── MODAL ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border2);
  border-radius: 50%;
  color: var(--text2);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { color: var(--accent); border-color: var(--accent); }
.modal-player {
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.player-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #080f1a, #0f1a2e);
}
.player-eye {
  font-size: 3rem;
  color: var(--accent);
  animation: eyePulse 2s ease-in-out infinite;
}
.player-placeholder p { color: var(--text2); font-size: 1rem; }
.player-sub { font-family: var(--font-mono); font-size: 0.72rem !important; color: var(--text3) !important; letter-spacing: 0.1em; }

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,255,60,0.3);
  transition: all 0.25s;
  opacity: 0;
  pointer-events: none;
}
.scroll-top:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover { transform: scale(1.1) translateY(-2px); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .featured-card { grid-column: 1 / 3; grid-row: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-3d-card { width: 240px; height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; min-height: auto; }
  .hero-content { padding: 40px 20px 20px; max-width: 100%; }
  .hero-visual { padding: 20px; width: 100%; }
  .tv-frame { width: min(280px, 70vw); animation: none; }
  .categories-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .featured-card { grid-column: auto; }
  .recent-item { flex-direction: column; }
  .recent-thumb { width: 100%; min-width: auto; }
  .recent-info { padding: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-grid { gap: 32px; }
  .hero-stats { gap: 14px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .nl-form { flex-direction: column; }
  .nl-form input { border-right: 1px solid var(--border2); border-bottom: none; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .btn-nl { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .hero-stats { flex-wrap: wrap; }
}
