/* ============================================================
   IMPACTOS LURK — PREMIUM DARK GAMING UI
   Font: Barlow Condensed (display) + DM Sans (body)
   Theme: Deep black, neon red accents, glassmorphism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:            #060608;
  --bg-2:          #0c0c10;
  --bg-card:       rgba(14, 14, 18, 0.75);
  --bg-glass:      rgba(18, 18, 24, 0.6);
  --accent:        #ff1a1a;
  --accent-soft:   rgba(255, 26, 26, 0.18);
  --accent-glow:   rgba(255, 26, 26, 0.45);
  --twitch:        #9146ff;
  --kick:          #00e660;
  --youtube:       #ff0000;
  --white:         #ffffff;
  --text:          #e8e8ee;
  --text-muted:    #777788;
  --border:        rgba(255, 255, 255, 0.06);
  --border-accent: rgba(255, 26, 26, 0.28);
  --font-d:        'Barlow Condensed', sans-serif;
  --font-b:        'DM Sans', sans-serif;
  --radius:        12px;
  --radius-sm:     8px;
  --blur:          18px;
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --trans:         all 0.35s var(--ease);
}

*, *::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-b);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================================ BACKGROUND */
#cyber-particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.6;
}
.scanlines-overlay {
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 4px);
  pointer-events: none; z-index: 1;
}
.ambient-left {
  position: fixed; left: -200px; top: 30%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,26,26,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.ambient-right {
  position: fixed; right: -200px; bottom: 20%;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(145,70,255,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ============================================================ NAVBAR */
.topnav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 6, 8, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.topnav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img { width: 34px; height: 34px; object-fit: contain; }
.nav-brand-text {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: 8px;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--trans);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-ctas { margin-left: auto; }
.btn-nav-download {
  display: flex; align-items: center; gap: 7px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  transition: var(--trans);
  box-shadow: 0 0 20px rgba(255,26,26,0.3);
}
.btn-nav-download:hover {
  background: #ff3333;
  box-shadow: 0 0 30px rgba(255,26,26,0.5);
  transform: translateY(-1px);
}

/* ============================================================ PAGE WRAPPER */
.page-wrapper {
  position: relative; z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 60px;
}

/* ============================================================ ACCENT */
.accent { color: var(--accent); }

/* ============================================================ HERO */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0 60px;
}

/* Hero Left */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badge {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-indicator {
  background: rgba(255, 26, 26, 0.12);
  border-color: var(--border-accent);
  color: var(--accent);
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulseDot 1.5s ease-in-out infinite alternate;
}
@keyframes pulseDot {
  from { opacity: 1; box-shadow: 0 0 6px var(--accent); }
  to { opacity: 0.5; box-shadow: 0 0 14px var(--accent); }
}
.free-badge {
  background: rgba(0, 230, 96, 0.08);
  border-color: rgba(0, 230, 96, 0.25);
  color: var(--kick);
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: var(--white);
}
.title-accent {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255,26,26,0.4);
}

.hero-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
}

/* Feature pills */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 30px;
  transition: var(--trans);
  cursor: default;
}
.pill:hover {
  color: var(--white);
  border-color: var(--border-accent);
  background: rgba(255,26,26,0.06);
}
.pill svg { color: var(--accent); flex-shrink: 0; }

/* Download area */
.download-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.download-label {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--trans);
  border: 1px solid var(--border);
  min-width: 175px;
}
.dl-btn.gplay {
  background: #1a1a2e;
  border-color: rgba(0, 150, 255, 0.2);
}
.dl-btn.appstore {
  background: #1a1a2e;
  border-color: rgba(150, 150, 255, 0.2);
}
.dl-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  border-color: var(--border-accent);
}
.dl-icon { color: var(--white); flex-shrink: 0; width: 24px; height: 24px; }
.dl-text { display: flex; flex-direction: column; gap: 1px; }
.dl-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.dl-main {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.dl-note {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================================ HERO RIGHT: Streamer Cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.streamer-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.streamer-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 9/12;
  transition: var(--trans);
  cursor: pointer;
}
.streamer-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--border-accent);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255,26,26,0.12);
}
.streamer-card.card-1 { margin-top: 0; }
.streamer-card.card-2 { margin-top: 20px; }
.streamer-card.card-3 { margin-top: 10px; }

.streamer-card-img-wrap {
  position: absolute; inset: 0;
}
.streamer-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.streamer-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.streamer-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.streamer-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
}
.plat-badge {
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.plat-badge.twitch { background: var(--twitch); color: #fff; }
.plat-badge.kick { background: var(--kick); color: #000; }
.plat-badge.youtube { background: var(--youtube); color: #fff; }
.live-badge-sm {
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 800;
  color: #ff4444;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255,68,68,0.8);
}
.streamer-card-name {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.streamer-card-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  color: var(--text-muted);
  font-size: 12px;
}
.streamer-card-empty svg { opacity: 0.3; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  gap: 0;
  backdrop-filter: blur(var(--blur));
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hero-stat strong {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}
.hero-stat span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================ SECTION COMMON */
.section-header {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.section-tag {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,26,26,0.08);
  border: 1px solid var(--border-accent);
  padding: 4px 14px;
  border-radius: 20px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================ SIMULATOR SECTION */
.simulator-section {
  padding: 20px 0 50px;
}

.sim-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(var(--blur));
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

/* Sim Topbar */
.sim-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 14, 0.8);
  flex-wrap: wrap;
  gap: 10px;
}
.sim-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.sim-logo { width: 24px; height: 24px; object-fit: contain; }
.sim-topbar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.layout-control {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.glass-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-family: var(--font-b);
  cursor: pointer;
  outline: none;
}
.glass-select:focus { border-color: var(--border-accent); }
.conn-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--text-muted);
  font-weight: 500;
}
.conn-dot {
  width: 7px; height: 7px;
  background: #00e660; border-radius: 50%;
  box-shadow: 0 0 6px #00e660;
  animation: pulseDot 2s ease-in-out infinite alternate;
}
.telas-count {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
}
.sim-icon-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--trans);
}
.sim-icon-btn:hover { color: var(--white); border-color: var(--border-accent); background: rgba(255,26,26,0.08); }

/* Simulator Grid */
.simulator-grid {
  display: grid;
  gap: 2px;
  padding: 0;
  background: #000;
  min-height: 320px;
}
.simulator-grid.cols { grid-template-columns: repeat(3, 1fr); }
.simulator-grid.rows { grid-template-columns: 1fr; }
.simulator-grid.focus {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.simulator-grid.focus .sim-slot:first-child { grid-row: 1 / 3; }

.sim-slot {
  position: relative;
  background: #090910;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sim-slot.plat-twitch { border-top: 2px solid rgba(145,70,255,0.5); }
.sim-slot.plat-kick { border-top: 2px solid rgba(0,230,96,0.5); }
.sim-slot.plat-youtube { border-top: 2px solid rgba(255,0,0,0.5); }

.slot-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.7);
  z-index: 2;
  flex-wrap: wrap;
}
.slot-num {
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.slot-plat-tag {
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 3px;
  text-transform: uppercase;
}
.slot-plat-tag.twitch { background: var(--twitch); color: #fff; }
.slot-plat-tag.kick { background: var(--kick); color: #000; }
.slot-plat-tag.youtube { background: var(--youtube); color: #fff; }
.slot-name {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.slot-live-badge {
  margin-left: auto;
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px var(--accent);
  animation: pulseDot 1.5s ease-in-out infinite alternate;
}

.slot-viewport {
  position: relative;
  flex: 1;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.stream-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.slot-fallback-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.7;
}
.slot-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.slot-viewers {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}
.waveform span {
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 0.8s ease-in-out infinite alternate;
  opacity: 0.7;
}
.waveform span:nth-child(1) { animation-delay: 0s; height: 4px; }
.waveform span:nth-child(2) { animation-delay: 0.15s; height: 10px; }
.waveform span:nth-child(3) { animation-delay: 0.3s; height: 7px; }
.waveform span:nth-child(4) { animation-delay: 0.45s; height: 12px; }
.waveform span:nth-child(5) { animation-delay: 0.6s; height: 5px; }
@keyframes wave {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1.2); }
}

.slot-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-height: 120px;
  color: var(--text-muted);
}
.slot-empty-state svg { opacity: 0.2; }
.slot-empty-state span { font-size: 12px; font-weight: 600; }
.slot-empty-state small { font-size: 10px; opacity: 0.6; }

/* Bottom panel */
.sim-bottom-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.sim-panel-card {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sim-panel-card:first-child {
  border-right: 1px solid var(--border);
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-header h4 {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--white);
  text-transform: uppercase;
}
.panel-btn {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-b);
  transition: var(--trans);
}
.panel-btn:hover { text-decoration: underline; }

/* Schedule list */
.sched-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sched-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.sched-item:hover { background: rgba(255,26,26,0.04); border-color: var(--border-accent); }
.sched-plat {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 900;
  width: 22px; height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sched-plat.twitch { background: var(--twitch); color: #fff; }
.sched-plat.kick { background: var(--kick); color: #000; }
.sched-plat.youtube { background: var(--youtube); color: #fff; }
.sched-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sched-info strong {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.sched-info span { font-size: 10px; color: var(--text-muted); font-weight: 500; }
.sched-tag {
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(255,26,26,0.4);
}

/* Chat */
.chat-online {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; color: var(--text-muted);
  background: rgba(0,230,96,0.06);
  border: 1px solid rgba(0,230,96,0.2);
  padding: 2px 8px; border-radius: 12px;
}
.online-dot {
  width: 6px; height: 6px;
  background: #00e660; border-radius: 50%;
  box-shadow: 0 0 6px #00e660;
  animation: pulseDot 2s ease-in-out infinite alternate;
}
.chat-msgs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 130px;
  overflow-y: auto;
  padding-right: 4px;
}
.chat-msg {
  font-size: 11.5px;
  line-height: 1.45;
  padding: 5px 8px;
  background: rgba(255,255,255,0.015);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.025);
}
.chat-msg.new-msg { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.cu { font-family: var(--font-d); font-weight: 800; letter-spacing: 0.4px; margin-right: 4px; }
.cu-blue { color: #5bc0be; }
.cu-purple { color: var(--twitch); }
.cu-green { color: var(--kick); }
.cu-red { color: var(--accent); }
.cu-yellow { color: #e9c46a; }
.cu-neon { color: #00ffc4; }

.chat-form {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.chat-form input {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--white);
  font-size: 11.5px;
  font-family: var(--font-b);
  outline: none;
  transition: var(--trans);
}
.chat-form input:focus {
  border-color: var(--border-accent);
  box-shadow: 0 0 12px rgba(255,26,26,0.1);
}
.chat-form input::placeholder { color: var(--text-muted); }
.chat-send {
  background: var(--accent);
  border: none;
  color: var(--white);
  width: 34px; height: 34px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 0 12px rgba(255,26,26,0.3);
  flex-shrink: 0;
}
.chat-send:hover {
  background: #ff3333;
  box-shadow: 0 0 20px rgba(255,26,26,0.5);
  transform: translateY(-1px);
}

/* ============================================================ STATS */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 0 20px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  backdrop-filter: blur(var(--blur));
  transition: var(--trans);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,26,26,0.07);
}
.stat-card svg { color: var(--accent); flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(255,26,26,0.4)); }
.stat-card div { display: flex; flex-direction: column; gap: 2px; }
.stat-card strong {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-card span {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================ FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 0;
  margin-top: 20px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.footer-logo { width: 28px; height: 28px; object-fit: contain; }
.footer-tagline { font-size: 12px; color: var(--text-muted); }
.footer-copy { font-size: 11px; color: #444; margin-top: 4px; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1200px) {
  .hero-section { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-section { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .hero-section { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 52px; }
  .streamer-cards-grid { grid-template-columns: repeat(3, 1fr); max-width: 420px; }
  .hero-right { align-items: center; }
  .hero-stats { width: 100%; max-width: 420px; }
}
@media (max-width: 768px) {
  .page-wrapper { padding: 0 16px 40px; }
  .topnav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .hero-section { padding: 40px 0 30px; gap: 30px; }
  .simulator-grid.cols { grid-template-columns: 1fr; }
  .simulator-grid.focus { grid-template-columns: 1fr; grid-template-rows: auto; }
  .simulator-grid.focus .sim-slot:first-child { grid-row: auto; }
  .sim-bottom-panel { grid-template-columns: 1fr; }
  .sim-panel-card:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-section { grid-template-columns: 1fr 1fr; }
  .download-btns { flex-direction: column; }
  .dl-btn { min-width: unset; }
  .hero-stats { flex-wrap: wrap; }
  .hero-title { font-size: 40px; }
}
@media (max-width: 480px) {
  .stats-section { grid-template-columns: 1fr; }
  .streamer-cards-grid { max-width: 100%; }
}

/* ============================================================
   LIVE CARDS ROTATOR (hero-right)
   ============================================================ */

.live-preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.live-pulse-dot {
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulseDot 1.4s ease-in-out infinite alternate;
  flex-shrink: 0;
}
.live-preview-label {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  flex: 1;
}
.live-count-badge {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 800;
  color: var(--kick);
  background: rgba(0,230,96,0.08);
  border: 1px solid rgba(0,230,96,0.22);
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.live-cards-stack {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.live-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}
/* Placeholder height so stack has dimensions */
.live-cards-stack::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 */
}
.live-card.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.live-card.no-live {
  background: var(--bg-card);
}

/* Thumbnail */
.live-card-thumb {
  position: absolute;
  inset: 0;
}
.lc-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: opacity 0.4s ease;
}
.lc-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.lc-iframe-wrap {
  position: absolute; inset: 0;
  z-index: 2;
}
.lc-iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

.live-card-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}
.lc-plat {
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.lc-plat.twitch { background: var(--twitch); color: #fff; }
.lc-plat.kick   { background: var(--kick);   color: #000; }
.lc-plat.youtube{ background: var(--youtube); color: #fff; }
.lc-name {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
}
.lc-live {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
  animation: pulseDot 1.5s ease-in-out infinite alternate;
}
.lc-viewers {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-card-empty {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
}
.live-card-empty svg { opacity: 0.2; }

/* Dots nav */
.live-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}
.live-dot-btn {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  padding: 0;
}
.live-dot-btn.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   DOWNLOAD ZIP BUTTON
   ============================================================ */

.download-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.download-header svg { color: var(--accent); }

.btn-download-zip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255,26,26,0.12) 0%, rgba(255,26,26,0.04) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-download-zip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,26,26,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: var(--trans);
}
.btn-download-zip:hover::before { opacity: 1; }
.btn-download-zip:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,26,26,0.2), 0 0 0 1px rgba(255,26,26,0.35);
}
.btn-download-zip:active { transform: translateY(0); }

/* Pulse animation on load */
@keyframes dlPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,26,26,0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(255,26,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,26,26,0); }
}
.btn-download-zip {
  animation: dlPulse 2.5s ease-out 1s 3;
}

.dl-zip-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,26,26,0.4);
  transition: var(--trans);
}
.btn-download-zip:hover .dl-zip-icon {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255,26,26,0.6);
}
.dl-zip-icon svg { color: #fff; }

.dl-zip-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dl-zip-name {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
}
.dl-zip-meta {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.dl-zip-badge {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(255,26,26,0.1);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--trans);
}
.btn-download-zip:hover .dl-zip-badge {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.dl-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
}
.dl-note svg { color: var(--kick); flex-shrink: 0; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 960px) {
  .live-cards-stack { max-width: 100%; }
  .hero-right { width: 100%; }
}
