/* ======================================================
   PsyberGamesStudio — style.css
   Works with main.js (site-header, mobile-nav, reveal, modal)
   Theme: White + Lime matched to official logo FINAL.jpg
   Accent = #D6E400 (chartreuse lime from logo brush/border)
   ====================================================== */

/* RESET & TOKENS */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
:root {
  /* Base — matched to logo dark background (charcoal #0B0B0E) */
  --bg: #08080a;
  --bg-soft: #111114;
  --surface: #1a1a1e;
  --surface-2: #1f1f23;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(214,228,0,0.32);
  --text: #f2f2f0;
  --muted: #9da0a6;
  /* Official Psyber Lime — from logo */
  --accent: #D6E400;
  --accent-soft: #E8F26C;
  --accent-dark: #AEBB00;
  --accent-glow: rgba(214,228,0,0.32);
  /* Legacy aliases — keep JS/CSS references working but mapped to lime */
  --violet: var(--accent);
  --violet-2: var(--accent-soft);
  --cyan: var(--accent);
  --pink: var(--accent-dark);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 64px;
  --max-w: 1180px;
}

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
code { font-family: 'JetBrains Mono', monospace; font-size: 0.85em; background: rgba(214,228,0,0.12); padding: 2px 6px; border-radius: 6px; border: 1px solid var(--border); }

/* UTIL */
.container { width: min(var(--max-w), 92%); margin-inline: auto; }
.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-soft); font-weight: 600; margin-bottom: 10px; }
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-soft) 45%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; transition: all .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #B8C600 100%);
  color: #0a0a0a; box-shadow: 0 8px 24px rgba(214,228,0,0.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(214,228,0,0.40); filter: brightness(1.05); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255,255,255,0.06); border-color: var(--border); color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.15); }
.btn-small { padding: 8px 14px; font-size: 13px; }
.btn-full { width: 100%; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(8,8,10,0.75);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(8,8,10,0.96);
  border-color: var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.03em;
}
.logo-img {
  width: 40px; height: 40px; object-fit: cover; border-radius: 10px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 4px 16px rgba(214,228,0,0.25);
}
.logo span { color: var(--accent); }
.logo-icon-fallback {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--accent); border-radius: 10px; font-size: 18px; color: #0a0a0a;
  box-shadow: 0 6px 18px rgba(214,228,0,0.30);
}

.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  position: relative; padding: 6px 0; transition: color .2s;
}
.desktop-nav a:hover, .desktop-nav a.active-link { color: var(--text); }
.desktop-nav a.active-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--accent); border-radius: 99px;
}

.menu-button {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.06);
  color: var(--text); cursor: pointer; place-items: center; font-size: 20px;
  transition: background .2s;
}
.menu-button:hover { background: rgba(255,255,255,0.10); }

.mobile-nav {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(12,12,14,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 20px 4%; display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .25s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.mobile-nav.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a {
  padding: 14px 16px; border-radius: 12px; font-weight: 500;
  color: var(--muted); transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a.active-link { background: rgba(214,228,0,0.10); color: var(--text); }
.mobile-nav-cta { padding: 12px 0 4px; }

/* HERO */
.hero {
  position: relative; padding: calc(var(--header-h) + 48px) 0 48px;
  overflow: hidden; min-height: 88vh; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--bg); }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 50%, transparent 75%);
  opacity: 0.45;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; pointer-events: none;
}
.hero-glow-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(214,228,0,0.28), transparent 70%); top: -280px; left: -200px; }
.hero-glow-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,242,108,0.18), transparent 70%); top: -120px; right: -200px; }

.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center;
}
.hero h1 { font-size: clamp(36px, 6vw, 64px); line-height: 0.95; letter-spacing: -0.05em; font-weight: 700; margin-bottom: 16px; }
.hero-subtitle { color: var(--muted); font-size: 17px; max-width: 560px; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stats { display: flex; gap: 28px; border-top: 1px solid var(--border); padding-top: 20px; max-width: 460px; }
.hero-stats div { display: flex; gap: 10px; align-items: center; }
.hero-stats strong { font-size: 22px; letter-spacing: -0.03em; color: var(--accent-soft); }
.hero-stats span { font-size: 12px; color: var(--muted); line-height: 1.2; text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual { display: flex; justify-content: center; }
.hero-card {
  width: min(380px, 100%); background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--border-strong); border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(214,228,0,0.12) inset;
  backdrop-filter: blur(12px);
}
.hero-card-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; font-weight: 700;
  background: var(--accent); color: #0a0a0a; padding: 10px; text-align: center;
}
.hero-card-art {
  height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(214,228,0,0.28), transparent),
    linear-gradient(135deg, #0e0e0a, #141410 60%, #1a1c0a);
  border-bottom: 1px solid var(--border);
  text-align: center; padding: 20px; position: relative; overflow: hidden;
}
.hero-card-logo {
  width: 140px; height: 140px; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  border-radius: 12px;
}
.hero-card-art span { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent-soft); font-family: 'JetBrains Mono', monospace; }
.hero-card-art small { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; opacity: 0.6; color: var(--muted); }
.hero-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 16px; gap: 12px; background: rgba(0,0,0,0.25); }
.hero-card-footer span { font-size: 13px; color: var(--muted); }

/* SECTIONS */
.section { padding: 80px 0; border-top: 1px solid var(--border); }
.section-head {
  display: flex; justify-content: space-between; gap: 32px; align-items: end;
  margin-bottom: 36px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.04em; line-height: 1; }
.section-desc { color: var(--muted); max-width: 520px; margin-top: 10px; }

/* FILTER */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.04); color: var(--muted); font-weight: 600; font-size: 13px;
  cursor: pointer; transition: all .2s;
}
.filter-btn:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #0a0a0a; box-shadow: 0 6px 18px rgba(214,228,0,0.28); }

/* GAMES GRID */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.games-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; }
.game-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.game-thumb {
  height: 190px; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 14px;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.thumb-neon { background: linear-gradient(135deg, #1a1c00 0%, #141410 50%, #1e2100 100%); border-bottom: 1px solid rgba(214,228,0,0.15); }
.thumb-echo  { background: linear-gradient(135deg, #121401 0%, #1a1e00 50%, #0f1200 100%); }
.thumb-static{ background: linear-gradient(135deg, #141500 0%, #1c1e00 50%, #1a1a0a 100%); }
.game-tag { align-self: flex-start; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; font-weight: 700; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); border: 1px solid rgba(214,228,0,0.22); padding: 6px 10px; border-radius: 999px; color: var(--accent-soft); }
.game-title-small { font-weight: 800; letter-spacing: -0.03em; font-size: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.6); color: #fff; }
.game-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.game-body h3 { font-size: 18px; letter-spacing: -0.03em; }
.game-body p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.game-meta { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }
.game-features { list-style: none; display: grid; gap: 6px; margin: 0; padding: 0; }
.game-features li { font-size: 13px; color: var(--muted); display: flex; gap: 6px; align-items: center; }
.game-press-link { font-size: 12px; font-weight: 600; color: var(--accent-soft); margin-top: 2px; display: inline-block; transition: color .2s; }
.game-press-link:hover { color: var(--accent); text-decoration: underline; }
.game-legacy-note { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 8px 10px; border-radius: 10px; margin-top: 2px; line-height: 1.4; }
.game-thumb--image { padding: 0; height: 240px; background: #0a0a0c; }
.game-thumb--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.game-thumb--image .game-tag { position: absolute; top: 12px; left: 12px; z-index: 1; }
.modal-quote { background: rgba(214,228,0,0.08); border-left: 3px solid var(--accent); padding: 12px 14px; border-radius: 0 10px 10px 0; margin: 14px 0; }
.modal-quote p { font-size: 13px; color: var(--muted); margin: 0; }
.modal-quote a { color: var(--accent-soft); text-decoration: underline; }
.modal-quote a:hover { color: var(--accent); }

/* ABOUT */
.about-section { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
.about-grid h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; }
.about-grid p { color: var(--muted); margin-bottom: 14px; }
.about-grid em { color: var(--text); font-style: normal; font-weight: 600; }
.about-grid strong { color: var(--text); }
.about-list { list-style: none; display: grid; gap: 8px; margin: 18px 0 22px; }
.about-list li { display: flex; gap: 8px; align-items: center; font-size: 14px; color: var(--muted); }
.about-cards { display: grid; gap: 14px; }
.about-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; transition: border-color .2s;
}
.about-card:hover { border-color: var(--border-strong); }
.about-card h4 { font-size: 14px; margin-bottom: 6px; letter-spacing: -0.02em; }
.about-card p { font-size: 14px; margin: 0; }

/* TEAM - SOLO FOUNDER */
.team-section { background: var(--bg); }
.team-grid--solo { display: flex; justify-content: center; }
.team-card--founder {
  width: min(560px, 100%);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(214,228,0,0.08) inset;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card--founder:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(0,0,0,0.55); }
.team-avatar--photo {
  width: 132px; height: 132px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--accent); box-shadow: 0 12px 32px rgba(214,228,0,0.25);
  margin: 0 auto 18px; display: block; background: #0a0a0a;
}
.team-card--founder h3 { font-size: 22px; letter-spacing: -0.03em; margin-bottom: 4px; }
.team-role { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-soft); font-weight: 700; margin-bottom: 14px; }
.team-card--founder p { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 48ch; margin: 0 auto; }
.team-card--founder .team-links { margin-top: 18px; }

/* keep old .team-grid for fallback but not used */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; text-align: center; transition: transform .2s, border-color .2s;
}
.team-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 24px; color: white; margin: 0 auto 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.team-avatar.hiring { background: transparent; border: 2px dashed var(--border-strong); color: var(--accent-soft); font-size: 28px; }
.team-card h4 { font-size: 15px; margin-bottom: 8px; letter-spacing: -0.02em; }
.team-card p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.team-links { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.team-links a { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); font-size: 12px; font-weight: 700; transition: background .2s; }
.team-links a:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.team-card-hiring { background: rgba(214,228,0,0.06); border-style: dashed; }

/* CONTACT */
.contact-section { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-grid h2 { font-size: clamp(32px, 5vw, 44px); letter-spacing: -0.05em; line-height: 0.95; margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 10px; margin-top: 18px; max-width: 480px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.06); color: var(--text); outline: none; transition: border-color .2s, background .2s;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.09); }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 8px; }
.form-status { font-size: 12px; margin-top: 8px; min-height: 16px; line-height: 1.4; font-weight: 500; }
#newsletter-status { flex-basis: 100%; }
.newsletter-form { flex-wrap: wrap; }
.newsletter-form .form-status { width: 100%; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.social-link {
  padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--muted); transition: all .2s;
}
.social-link:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }

.contact-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.contact-form h3 { font-size: 16px; margin-bottom: 16px; letter-spacing: -0.02em; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border);
  background: rgba(0,0,0,0.28); color: var(--text); outline: none; resize: vertical; transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #6b7280; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }

/* FOOTER */
.site-footer { padding: 28px 0; border-top: 1px solid var(--border); background: #050506; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { width: 32px; height: 32px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }
.footer-logo { font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0; display: flex; align-items: center; gap: 8px; }
.footer-copy { color: var(--muted); font-size: 12px; line-height: 1.6; max-width: 560px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 13px; font-weight: 600; color: var(--muted); }
.footer-links a:hover { color: var(--accent-soft); }

/* REVEAL — required for main.js */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.active { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* MODAL — required for main.js */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  background: rgba(3,3,6,0.78); backdrop-filter: blur(10px) saturate(1.2);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-overlay[hidden] { display: none !important; }
.modal {
  width: min(640px, 100%); max-height: 90vh; overflow: auto;
  background: #14141a; border: 1px solid var(--border-strong); border-radius: 18px;
  padding: 24px; box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: translateY(14px) scale(0.98); transition: transform .3s cubic-bezier(.16,1,.3,1);
  position: relative; scrollbar-width: thin;
}
.modal-overlay.active .modal { transform: none; }
.modal:focus { outline: none; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,0.06);
  color: var(--text); cursor: pointer; display: grid; place-items: center; font-size: 16px;
}
.modal-close:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.modal h3 { font-size: 22px; letter-spacing: -0.03em; margin: 8px 0 12px; padding-right: 40px; line-height: 1.2; }
.modal-desc { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.modal-media { margin: 14px 0; overflow: hidden; border: 1px solid var(--border); background: #0a0a0c; border-radius: 12px; }
.modal-media iframe { display: block; }
.modal-list { list-style: none; display: grid; gap: 8px; margin: 14px 0; }
.modal-list li { font-size: 14px; color: var(--muted); display: flex; gap: 8px; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .games-grid--two { grid-template-columns: 1fr; max-width: 520px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding-top: calc(var(--header-h) + 24px); }
  .games-grid, .games-grid--two { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hero-stats { gap: 18px; }
  .hero-card { width: 100%; }
  .modal { padding: 20px 16px; }
  .logo { font-size: 16px; }
}
