:root {
  --bg: #050816;
  --surface: rgba(15, 23, 42, 0.86);
  --surface-solid: #0f172a;
  --cyan: #22d3ee;
  --magenta: #f472b6;
  --lime: #a3e635;
  --danger: #fb7185;
  --text: #f8fafc;
  --muted: #94a3b8;
  --radius: 1.25rem;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.3), 0 0 40px rgba(34, 211, 238, 0.1);
  --glow-magenta: 0 0 20px rgba(244, 114, 182, 0.3), 0 0 40px rgba(244, 114, 182, 0.1);
  --glow-lime: 0 0 20px rgba(163, 230, 53, 0.3), 0 0 40px rgba(163, 230, 53, 0.1);
}
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font);
  background: var(--bg); color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
::selection { background: var(--cyan); color: var(--bg); }



/* ─── BASE ─── */
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--lime); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 10000;
  padding: .75rem 1.5rem; background: var(--cyan); color: var(--bg);
  font-weight: 700; border-radius: 0 0 .5rem .5rem;
}
.skip-link:focus { top: 0; }

/* ─── DIAGONAL STREAKS ─── */
body::before, body::after {
  content: ''; position: fixed; pointer-events: none; z-index: 0;
  width: 200%; height: 2px; background: linear-gradient(90deg, transparent, rgba(34,211,238,.08), transparent);
  transform: rotate(-15deg); top: 20%; left: -50%;
}
body::after { top: 60%; background: linear-gradient(90deg, transparent, rgba(163,230,53,.06), transparent); transform: rotate(12deg); }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 1.5rem; transition: all .3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(5,8,22,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(34,211,238,.1);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: .5rem; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--text); }
.logo-neon { color: var(--cyan); text-shadow: var(--glow-cyan); }
.logo-guide { color: var(--muted); font-weight: 400; }
.nav-desktop { display: flex; gap: .25rem; }
.nav-desktop a {
  padding: .5rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
  color: var(--muted); transition: all .2s;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--text); background: rgba(34,211,238,.1); }
.nav-desktop a.active { color: var(--cyan); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.btn-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.25rem; border-radius: 999px; font-size: .8rem; font-weight: 700;
  background: var(--cyan); color: var(--bg); border: none; cursor: pointer;
  transition: all .25s; box-shadow: var(--glow-cyan);
}
.btn-cta:hover { background: var(--lime); box-shadow: var(--glow-lime); color: var(--bg); }
.btn-cta-outline {
  background: transparent; border: 1px solid rgba(255,255,255,.15); color: var(--text); box-shadow: none;
}
.btn-cta-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(34,211,238,.08); }

/* ─── BURGER ─── */
.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(5,8,22,.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-size: 1.5rem; font-weight: 700; color: var(--muted); transition: color .2s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--cyan); }
.mobile-nav-close {
  position: absolute; top: -4.5rem; right: 1.5rem;
  background: none; border: none; color: var(--text); font-size: 2.5rem; cursor: pointer; padding: .5rem;
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 1.5rem 4rem; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 20% 30%, rgba(34,211,238,.08), transparent 60%),
    radial-gradient(600px 400px at 80% 70%, rgba(244,114,182,.06), transparent 50%),
    radial-gradient(400px 300px at 50% 50%, rgba(163,230,53,.04), transparent 40%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 3rem; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.3fr 1fr; } }
.hero-kicker {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .25em;
  color: var(--lime); text-shadow: var(--glow-lime); margin-bottom: .5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 900; text-transform: uppercase;
  line-height: 1.05; margin: 0 0 1rem; letter-spacing: -.02em;
}
.hero h1 .highlight { color: var(--cyan); text-shadow: var(--glow-cyan); }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 540px; margin: 0 0 1.5rem; line-height: 1.5; }
.hero-desc { font-size: .95rem; color: var(--muted); max-width: 480px; margin: 0 0 2rem; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-image {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(34,211,238,.15); box-shadow: var(--glow-cyan);
}
.hero-image img { width: 100%; height: 420px; object-fit: cover; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(5,8,22,.4), transparent);
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  position: relative; z-index: 1; overflow: hidden;
  padding: 1rem 0; border-top: 1px solid rgba(34,211,238,.1);
  border-bottom: 1px solid rgba(34,211,238,.1);
  margin-top: -1px;
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span { font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: .1em; }
.marquee-track em { color: var(--cyan); font-style: normal; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION HEADERS ─── */
.section { padding: 5rem 1.5rem; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-kicker {
  font-size: .7rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
  color: var(--magenta); text-shadow: var(--glow-magenta); margin: 0 0 .5rem;
}
.section h2 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; text-transform: uppercase;
  line-height: 1.1; margin: 0 0 .75rem; letter-spacing: -.01em;
}
.section h2 .glow-cyan { color: var(--cyan); text-shadow: var(--glow-cyan); }
.section h2 .glow-magenta { color: var(--magenta); text-shadow: var(--glow-magenta); }
.section h2 .glow-lime { color: var(--lime); text-shadow: var(--glow-lime); }
.section-sub { color: var(--muted); max-width: 600px; font-size: 1rem; margin: 0 0 2.5rem; line-height: 1.6; }

/* ─── FILTERS ─── */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .4rem 1rem; border-radius: 999px; font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: var(--muted); cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--cyan); color: var(--text); }
.filter-btn.active { background: var(--cyan); color: var(--bg); border-color: var(--cyan); box-shadow: var(--glow-cyan); }

/* ─── GAME CARDS ─── */
.game-card {
  display: grid; gap: 0; margin-bottom: 2rem;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  background: var(--surface); backdrop-filter: blur(12px);
  transition: all .4s ease; position: relative;
}
.game-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(34,211,238,.03), transparent 50%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.game-card:hover::before { opacity: 1; }
.game-card:hover { border-color: rgba(34,211,238,.2); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
@media (min-width: 768px) { .game-card { grid-template-columns: 1fr 1fr; } }
.game-card:nth-child(even) .card-image { order: 2; }
.game-card:nth-child(even) .card-body { order: 1; }
@media (max-width: 767px) { .game-card, .game-card:nth-child(even) { grid-template-columns: 1fr; } .game-card:nth-child(even) .card-image { order: -1; } .game-card .card-image { order: -1; } }
.card-image {
  position: relative; overflow: hidden; min-height: 260px;
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transition: transform .5s ease;
}
.game-card:hover .card-image img { transform: scale(1.05); }
.card-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,8,22,.7), transparent 50%);
}
.game-card:nth-child(even) .card-image-overlay {
  background: linear-gradient(to left, rgba(5,8,22,.7), transparent 50%);
}
.rank-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: 3rem; font-weight: 900; line-height: 1;
  color: var(--cyan); text-shadow: var(--glow-cyan);
  opacity: .6; transition: all .3s;
}
.game-card:hover .rank-badge { opacity: 1; transform: scale(1.1); }
.card-body { padding: 1.75rem; display: flex; flex-direction: column; justify-content: center; }
.card-body h3 { font-size: 1.5rem; font-weight: 800; margin: 0 0 .75rem; color: var(--text); }
.badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.badge {
  padding: .2rem .65rem; border-radius: 999px; font-size: .7rem; font-weight: 600;
  background: rgba(34,211,238,.1); color: var(--cyan); border: 1px solid rgba(34,211,238,.15);
}
.badge-year { background: rgba(163,230,53,.1); color: var(--lime); border-color: rgba(163,230,53,.15); }
.badge-genre { background: rgba(244,114,182,.1); color: var(--magenta); border-color: rgba(244,114,182,.15); }
.badge-dev { background: rgba(255,255,255,.05); color: var(--muted); border-color: rgba(255,255,255,.08); }
.platform-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .25rem .75rem; border-radius: 999px;
  background: rgba(163,230,53,.08); color: var(--lime);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  border: 1px solid rgba(163,230,53,.15); margin-bottom: 1rem; width: fit-content;
}
.stars { color: #fbbf24; font-size: .85rem; letter-spacing: .1em; margin-bottom: .75rem; }
.card-desc { font-size: .9rem; color: var(--muted); line-height: 1.65; margin: 0 0 1rem; }
.fun-fact {
  padding: .75rem 1rem; border-radius: .75rem;
  background: rgba(244,114,182,.06); border: 1px solid rgba(244,114,182,.12);
  font-size: .82rem; color: var(--magenta); margin-bottom: 1rem;
}
.fun-fact strong { color: var(--text); }
.read-more {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.25rem; border-radius: 999px; font-size: .8rem; font-weight: 700;
  background: transparent; border: 1px solid var(--cyan); color: var(--cyan);
  cursor: pointer; transition: all .25s; width: fit-content;
}
.read-more:hover { background: var(--cyan); color: var(--bg); box-shadow: var(--glow-cyan); }

/* ─── HISTORY CARDS ─── */
.history-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .history-grid { grid-template-columns: repeat(3, 1fr); } }
.history-card {
  padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.06);
  background: var(--surface); backdrop-filter: blur(12px);
  transition: all .3s; position: relative; overflow: hidden;
}
.history-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  opacity: 0; transition: opacity .3s;
}
.history-card:hover::before { opacity: 1; }
.history-card:hover { border-color: rgba(34,211,238,.15); transform: translateY(-2px); }
.history-card h3 { font-size: 1.15rem; font-weight: 800; margin: 0 0 .5rem; }
.history-card h3 .accent { color: var(--cyan); }
.history-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.history-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 1rem;
  background: rgba(34,211,238,.1); margin-bottom: 1rem;
  font-size: 1.5rem;
}
.history-card:nth-child(2) .history-icon { background: rgba(244,114,182,.1); }
.history-card:nth-child(3) .history-icon { background: rgba(163,230,53,.1); }

/* ─── FACTS GRID ─── */
.facts-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
.fact-card {
  padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.06);
  background: var(--surface); backdrop-filter: blur(12px);
  transition: all .3s; position: relative;
}
.fact-card:hover { border-color: rgba(163,230,53,.2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.fact-number {
  font-size: 2.5rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: .5rem;
}
.fact-card h3 { font-size: 1.1rem; font-weight: 800; margin: 0 0 .5rem; }
.fact-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ─── NEWSLETTER ─── */
.newsletter {
  padding: 4rem 1.5rem; position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 50% 50%, rgba(34,211,238,.06), transparent);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.newsletter h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; text-transform: uppercase; margin: 0 0 .75rem; }
.newsletter p { color: var(--muted); margin: 0 0 1.5rem; font-size: .95rem; }
.newsletter-form { display: flex; gap: .75rem; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: .85rem 1.25rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04); color: var(--text); font-size: .9rem;
  transition: all .2s; outline: none;
}
.newsletter-form input:focus { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-note { font-size: .75rem; color: var(--muted); margin-top: 1rem; }

/* ─── SUGGEST FORM ─── */
.suggest-section { padding: 5rem 1.5rem; }
.suggest-grid { max-width: 720px; margin: 0 auto; }
.form-card {
  padding: 2.5rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.06);
  background: var(--surface); backdrop-filter: blur(12px);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--text); }
.form-group label .required { color: var(--danger); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04);
  color: var(--text); font-size: .9rem; font-family: var(--font);
  transition: all .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--cyan); box-shadow: var(--glow-cyan);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { min-height: 100px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-submit {
  width: 100%; padding: .85rem 2rem; border-radius: 999px; font-size: .9rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--lime)); color: var(--bg); border: none;
  cursor: pointer; transition: all .25s;
}
.form-submit:hover { box-shadow: 0 0 30px rgba(34,211,238,.3); transform: translateY(-1px); }
.form-message { padding: .75rem 1rem; border-radius: .75rem; font-size: .85rem; margin-top: 1rem; display: none; }
.form-message.success { display: block; background: rgba(163,230,53,.1); color: var(--lime); border: 1px solid rgba(163,230,53,.2); }
.form-message.error { display: block; background: rgba(251,113,133,.1); color: var(--danger); border: 1px solid rgba(251,113,133,.2); }

/* ─── DISCLAIMER STRIP ─── */
.disclaimer-strip {
  padding: 1rem 1.5rem; text-align: center;
  background: rgba(255,255,255,.02); border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.disclaimer-strip p { font-size: .75rem; color: var(--muted); margin: 0; max-width: 800px; margin: 0 auto; line-height: 1.5; }

/* ─── FOOTER ─── */
.site-footer {
  padding: 4rem 1.5rem 2rem; border-top: 1px solid rgba(255,255,255,.04);
}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .82rem; color: var(--muted); line-height: 1.6; max-width: 320px; }
.footer-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin: 0 0 1rem; }
.footer-col a { display: block; font-size: .85rem; color: var(--muted); padding: .25rem 0; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.04);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .78rem; color: var(--muted);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  padding: 1rem 1.5rem; background: rgba(15,23,42,.98); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(34,211,238,.1);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; }
.cookie-inner p { font-size: .82rem; color: var(--muted); margin: 0; }
.cookie-inner a { color: var(--cyan); }
.cookie-actions { display: flex; gap: .75rem; }
.cookie-btn {
  padding: .5rem 1.25rem; border-radius: 999px; font-size: .8rem; font-weight: 700;
  border: none; cursor: pointer; transition: all .2s;
}
.cookie-btn-accept { background: var(--cyan); color: var(--bg); }
.cookie-btn-accept:hover { background: var(--lime); }
.cookie-btn-decline { background: transparent; border: 1px solid rgba(255,255,255,.1); color: var(--muted); }
.cookie-btn-decline:hover { border-color: var(--danger); color: var(--danger); }

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
  .nav-desktop { display: none; }
  .header-actions .btn-cta { display: none; }
  .burger { display: flex; }
  .hero { padding: 6rem 1rem 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-cta { width: 100%; justify-content: center; display: flex; }
  .section { padding: 3rem 1rem; }
  .newsletter-form { flex-direction: column; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .card-image { min-height: 200px; }
}
@media (min-width: 768px) and (max-width: 899px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image img { height: 300px; }
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  display: flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600; color: var(--muted); letter-spacing: .1em;
  margin-top: 2rem;
}
.scroll-indicator .line { width: 40px; height: 1px; background: var(--muted); }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }
.scroll-indicator .arrow { animation: bounce 1.5s infinite; }
