/* ── Fonts ── */
@font-face { font-family: 'Orbitron'; font-weight: 400; src: url('../fonts/orbitron-regular.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Orbitron'; font-weight: 700; src: url('../fonts/orbitron-bold.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Nunito'; font-weight: 400; src: url('../fonts/nunito_400.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Nunito'; font-weight: 700; src: url('../fonts/nunito_700.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Nunito'; font-weight: 800; src: url('../fonts/nunito_800.woff2') format('woff2'); font-display: swap; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: #0D0D1A;
  color: #E2E8F0;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS Variables ── */
:root {
  --violet: #7C3AED;
  --violet-lt: #A78BFA;
  --cyan: #06B6D4;
  --cyan-lt: #67E8F9;
  --orange: #F97316;
  --green: #10B981;
  --pink: #EC4899;
  --yellow: #F59E0B;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.03);
  --text-muted: rgba(226,232,240,0.55);
  --radius: 18px;
  --radius-sm: 12px;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Animated gradient background ── */
body::before {
  content: '';
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(124,58,237,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(6,182,212,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(249,115,22,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: rgba(13,13,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: white; white-space: nowrap;
}
.nav-logo .logo-blast { color: var(--cyan); }
.nav-logo .logo-zone { color: var(--violet-lt); }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  display: block; padding: 0.45rem 0.9rem;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-muted); border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: white; background: var(--glass); }
.nav-cta {
  background: linear-gradient(135deg, var(--violet), var(--cyan)) !important;
  color: white !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 50px !important;
  box-shadow: 0 0 20px rgba(124,58,237,0.3) !important;
}
.nav-cta:hover { box-shadow: 0 0 35px rgba(124,58,237,0.5) !important; }
.nav-mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-btn span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }
@media (max-width: 768px) {
  .nav-mobile-btn { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(13,13,26,0.97); border-bottom: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; border-radius: var(--radius-sm); }
  .nav-cta { text-align: center; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative; z-index: 1;
  padding: 8rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.hero-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 800;
  color: var(--violet-lt); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: white; margin-bottom: 1.25rem;
}
.hero h1 .g1 { color: var(--cyan); }
.hero h1 .g2 { color: var(--violet-lt); }
.hero h1 .g3 { color: var(--orange); }
.hero p {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8;
}
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: white; font-weight: 800; font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(124,58,237,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(124,58,237,0.6); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: white; font-weight: 800; font-size: 1rem;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(124,58,237,0.4); background: var(--glass); }

/* ── Hero stats ── */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; margin-top: 3.5rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--violet-lt));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ══════════════════════════════════════════
   GAMES GRID
══════════════════════════════════════════ */
.games-section { position: relative; z-index: 1; padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 800;
  color: var(--violet-lt); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700; color: white; line-height: 1.2; margin-bottom: 0.75rem;
}
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .games-grid { grid-template-columns: 1fr; } }

.game-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); }
.game-card.violet:hover { border-color: rgba(124,58,237,0.5); box-shadow: 0 0 40px rgba(124,58,237,0.15); }
.game-card.cyan:hover { border-color: rgba(6,182,212,0.5); box-shadow: 0 0 40px rgba(6,182,212,0.15); }
.game-card.orange:hover { border-color: rgba(249,115,22,0.5); box-shadow: 0 0 40px rgba(249,115,22,0.15); }
.game-card.green:hover { border-color: rgba(16,185,129,0.5); box-shadow: 0 0 40px rgba(16,185,129,0.15); }
.game-card.pink:hover { border-color: rgba(236,72,153,0.5); box-shadow: 0 0 40px rgba(236,72,153,0.15); }
.game-card.yellow:hover { border-color: rgba(245,158,11,0.5); box-shadow: 0 0 40px rgba(245,158,11,0.15); }

.game-thumb {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.game-thumb.violet { background: linear-gradient(135deg, rgba(124,58,237,0.25) 0%, rgba(124,58,237,0.08) 100%); }
.game-thumb.cyan { background: linear-gradient(135deg, rgba(6,182,212,0.25) 0%, rgba(6,182,212,0.08) 100%); }
.game-thumb.orange { background: linear-gradient(135deg, rgba(249,115,22,0.25) 0%, rgba(249,115,22,0.08) 100%); }
.game-thumb.green { background: linear-gradient(135deg, rgba(16,185,129,0.25) 0%, rgba(16,185,129,0.08) 100%); }
.game-thumb.pink { background: linear-gradient(135deg, rgba(236,72,153,0.25) 0%, rgba(236,72,153,0.08) 100%); }
.game-thumb.yellow { background: linear-gradient(135deg, rgba(245,158,11,0.25) 0%, rgba(245,158,11,0.08) 100%); }

.game-thumb svg { width: 120px; height: 120px; opacity: 0.9; }

.game-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.game-badge.violet { background: rgba(124,58,237,0.2); color: var(--violet-lt); border: 1px solid rgba(124,58,237,0.3); }
.game-badge.cyan { background: rgba(6,182,212,0.2); color: var(--cyan-lt); border: 1px solid rgba(6,182,212,0.3); }
.game-badge.orange { background: rgba(249,115,22,0.2); color: #FED7AA; border: 1px solid rgba(249,115,22,0.3); }
.game-badge.green { background: rgba(16,185,129,0.2); color: #6EE7B7; border: 1px solid rgba(16,185,129,0.3); }
.game-badge.pink { background: rgba(236,72,153,0.2); color: #FBCFE8; border: 1px solid rgba(236,72,153,0.3); }
.game-badge.yellow { background: rgba(245,158,11,0.2); color: #FDE68A; border: 1px solid rgba(245,158,11,0.3); }

.game-info { padding: 1.5rem; }
.game-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: white; margin-bottom: 0.5rem;
}
.game-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.game-play-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-weight: 800; font-size: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-play-btn:hover { transform: translateY(-2px); }
.game-play-btn.violet { background: rgba(124,58,237,0.15); color: var(--violet-lt); border: 1px solid rgba(124,58,237,0.3); }
.game-play-btn.violet:hover { background: rgba(124,58,237,0.25); box-shadow: 0 0 20px rgba(124,58,237,0.2); }
.game-play-btn.cyan { background: rgba(6,182,212,0.15); color: var(--cyan-lt); border: 1px solid rgba(6,182,212,0.3); }
.game-play-btn.cyan:hover { background: rgba(6,182,212,0.25); box-shadow: 0 0 20px rgba(6,182,212,0.2); }
.game-play-btn.orange { background: rgba(249,115,22,0.15); color: #FED7AA; border: 1px solid rgba(249,115,22,0.3); }
.game-play-btn.orange:hover { background: rgba(249,115,22,0.25); box-shadow: 0 0 20px rgba(249,115,22,0.2); }
.game-play-btn.green { background: rgba(16,185,129,0.15); color: #6EE7B7; border: 1px solid rgba(16,185,129,0.3); }
.game-play-btn.green:hover { background: rgba(16,185,129,0.25); box-shadow: 0 0 20px rgba(16,185,129,0.2); }
.game-play-btn.pink { background: rgba(236,72,153,0.15); color: #FBCFE8; border: 1px solid rgba(236,72,153,0.3); }
.game-play-btn.pink:hover { background: rgba(236,72,153,0.25); box-shadow: 0 0 20px rgba(236,72,153,0.2); }
.game-play-btn.yellow { background: rgba(245,158,11,0.15); color: #FDE68A; border: 1px solid rgba(245,158,11,0.3); }
.game-play-btn.yellow:hover { background: rgba(245,158,11,0.25); box-shadow: 0 0 20px rgba(245,158,11,0.2); }

/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.why-section {
  position: relative; z-index: 1;
  padding: 5rem 0;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 1.75rem; text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon.violet { background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.25); }
.why-icon.cyan { background: rgba(6,182,212,0.15); border: 1px solid rgba(6,182,212,0.25); }
.why-icon.orange { background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.25); }
.why-icon.green { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.25); }
.why-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: white; margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  position: relative; z-index: 1;
  padding: 5rem 0; text-align: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.06) 100%);
  border-top: 1px solid rgba(124,58,237,0.15);
  border-bottom: 1px solid rgba(124,58,237,0.15);
}
.cta-band h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: white; margin-bottom: 0.75rem;
}
.cta-band p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.75rem; max-width: 300px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  color: var(--violet-lt); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.82rem; color: var(--text-muted);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: white; }

/* ══════════════════════════════════════════
   GAME PAGE HERO
══════════════════════════════════════════ */
.game-page-hero {
  position: relative; z-index: 1;
  padding: 7rem 0 3rem;
  border-bottom: 1px solid var(--glass-border);
}
.game-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
@media (max-width: 768px) {
  .game-page-inner { grid-template-columns: 1fr; }
  .game-page-image { display: none; }
}
.game-page-tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.game-page-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: white; line-height: 1.2; margin-bottom: 1rem;
}
.game-page-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.game-page-image img, .game-page-image svg { width: 100%; border-radius: var(--radius); opacity: 0.9; }

/* ══════════════════════════════════════════
   PLAY SECTION
══════════════════════════════════════════ */
.play-section {
  position: relative; z-index: 1;
  padding: 4rem 0 3rem;
}
.play-inner { display: flex; flex-direction: column; align-items: center; }
.play-hud {
  display: flex; align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap; justify-content: center;
}
.hud-item { display: flex; flex-direction: column; align-items: center; padding: 0.25rem 1.25rem; }
.hud-label { font-size: 0.65rem; font-weight: 800; color: var(--violet-lt); text-transform: uppercase; letter-spacing: 0.1em; }
.hud-value { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 700; color: white; }
.hud-sep { width: 1px; height: 30px; background: var(--glass-border); }
#game-canvas {
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124,58,237,0.25);
  box-shadow: 0 0 40px rgba(124,58,237,0.12), 0 20px 50px rgba(0,0,0,0.6);
  max-width: 100%;
  background: #0A0A14;
}
.play-controls { display: flex; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; justify-content: center; }
.ctrl-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: white; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.ctrl-btn:hover { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.08); }
.ctrl-btn.primary {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border-color: transparent; box-shadow: 0 0 20px rgba(124,58,237,0.3);
}
.ctrl-btn.primary:hover { box-shadow: 0 0 35px rgba(124,58,237,0.5); }
.play-hint { margin-top: 1rem; font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* ══════════════════════════════════════════
   CONTENT SECTIONS
══════════════════════════════════════════ */
.content-section { position: relative; z-index: 1; padding: 5rem 0; }
.content-section.alt {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-image { display: none; }
}
.content-image img, .content-image svg { width: 100%; border-radius: var(--radius); opacity: 0.85; }

/* ── HTP Steps ── */
.htp-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.htp-step { display: flex; gap: 1rem; align-items: flex-start; }
.htp-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem; font-weight: 700; color: white;
}
.htp-content h3 { font-size: 0.95rem; font-weight: 800; color: white; margin-bottom: 0.25rem; }
.htp-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── Controls Table ── */
.controls-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.controls-table th {
  background: rgba(124,58,237,0.1);
  color: var(--violet-lt); font-weight: 800;
  padding: 0.75rem 1rem; text-align: left;
  border-bottom: 1px solid rgba(124,58,237,0.2);
}
.controls-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
}
.controls-table tr:hover td { background: var(--glass); color: white; }
kbd {
  display: inline-block; padding: 0.15rem 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  font-family: monospace; font-size: 0.82rem; color: white;
}

/* ── Tech Grid ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.tech-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }
.tech-icon {
  width: 44px; height: 44px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
}
.tech-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: white; margin-bottom: 0.5rem;
}
.tech-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(124,58,237,0.3); }
.faq-item h3 { font-size: 0.95rem; font-weight: 800; color: white; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(124,58,237,0.3); }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.contact-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  color: var(--violet-lt); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.contact-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-wrap h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: white; margin-bottom: 1.75rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 800; color: rgba(226,232,240,0.7); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: white; font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s; outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(124,58,237,0.5); }
.form-group select option { background: #1A1A2E; color: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: white; font-weight: 800; font-size: 0.95rem;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 0 20px rgba(124,58,237,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(124,58,237,0.5); }

/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-page-wrap {
  position: relative; z-index: 1;
  min-height: 100vh;
  padding-top: 4.5rem;
}
.legal-hero {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.05) 100%);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 4rem 0 3rem;
  text-align: center;
}
.legal-hero-inner { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.legal-badge {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 800;
  color: var(--violet-lt); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.legal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: white; margin-bottom: 0.75rem;
}
.legal-subtitle { font-size: 1rem; color: var(--text-muted); }
.legal-container { max-width: 860px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }
.legal-meta-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.5rem;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 2rem;
}
.legal-meta-bar strong { color: white; }
.legal-meta-dot { color: rgba(124,58,237,0.6); font-weight: 700; }
.legal-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--violet);
  border-radius: var(--radius-sm);
  padding: 2rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.3s;
}
.legal-card:hover { border-color: rgba(124,58,237,0.4); border-left-color: var(--violet); }
.legal-card-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.legal-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; font-weight: 700; color: white;
  box-shadow: 0 0 12px rgba(124,58,237,0.35);
}
.legal-card-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem; font-weight: 700; color: white;
}
.legal-card p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 0.75rem;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul.legal-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
  margin-top: 0.5rem;
}
.legal-card ul.legal-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}
.legal-card ul.legal-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--violet-lt);
  border-radius: 50%;
  margin-top: 0.55rem;
}
.legal-highlight {
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem; color: rgba(226,232,240,0.8);
  line-height: 1.7; margin: 0.75rem 0;
}
.legal-contact-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(6,182,212,0.05) 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius);
  padding: 2rem; margin-top: 2rem;
}
.legal-contact-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.75rem;
}
.legal-contact-card p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 0.4rem;
}
.legal-contact-card p strong { color: white; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.page-hero {
  position: relative; z-index: 1;
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: white; margin-bottom: 1rem;
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--violet-lt), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p { font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ══════════════════════════════════════════
   FOOTER GRID (used in multi-col footer)
══════════════════════════════════════════ */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.5rem; max-width: 300px; line-height: 1.7; }

/* ── Footer columns ── */
.footer-links-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  color: var(--violet-lt); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links-col a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links-col a:hover { color: white; }
.footer-address { font-size: 0.78rem !important; color: rgba(226,232,240,0.3) !important; margin-top: 0.5rem; line-height: 1.6; }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-legal-links a:hover { color: white; }

/* ── Features band ── */
.features-band {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 2rem 0;
}
.features-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .features-band-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-band-grid { grid-template-columns: 1fr; } }
.feature-band-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
}
.feature-band-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-band-item strong { display: block; font-size: 0.88rem; font-weight: 800; color: white; margin-bottom: 0.2rem; }
.feature-band-item span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── Hero stats ── */
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--violet-lt), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Nav CTA ── */
.nav-cta {
  background: rgba(124,58,237,0.15) !important;
  border: 1px solid rgba(124,58,237,0.3) !important;
  border-radius: 50px !important;
  color: var(--violet-lt) !important;
  padding: 0.4rem 1rem !important;
}
.nav-cta:hover { background: rgba(124,58,237,0.25) !important; color: white !important; }

/* ── Nav mobile button ── */
.nav-mobile-btn {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-btn span {
  display: block; width: 22px; height: 2px;
  background: rgba(226,232,240,0.7); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 768px) {
  .nav-mobile-btn { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,13,26,0.97);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 0.65rem 1.5rem; }
}

/* ── Hero layout (asymmetric) ── */
.hero-bg-grid {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; text-align: left;
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
}
.hero-text { max-width: 560px; }
.hero-image img, .hero-image svg { width: 100%; border-radius: var(--radius); opacity: 0.9; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 1rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 800;
  color: var(--violet-lt); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  color: white; margin-bottom: 1.25rem;
}
.hero-text p {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 520px; line-height: 1.8; margin-bottom: 2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.gradient-text {
  background: linear-gradient(135deg, var(--violet-lt), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Game card meta ── */
.game-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.game-meta-item {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.75rem; color: var(--text-muted); font-weight: 700;
}
.game-tag {
  position: absolute; top: 0.75rem; right: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: rgba(124,58,237,0.2); color: var(--violet-lt);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50px;
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.btn-play {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: rgba(124,58,237,0.15); color: var(--violet-lt);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50px;
  font-weight: 800; font-size: 0.85rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-play:hover { background: rgba(124,58,237,0.25); box-shadow: 0 0 20px rgba(124,58,237,0.2); }
