/* ============================================================
   NeonRaid.pro – Main Stylesheet
   ============================================================ */

:root {
  --neon-purple: #b400ff;
  --neon-cyan: #00e5ff;
  --neon-pink: #ff00aa;
  --dark-bg: #0a0010;
  --dark-card: #12001f;
  --dark-card2: #1a0033;
  --text-light: #f0e6ff;
  --text-muted: #a080c0;
  --accent-gold: #ffd700;
  --border-neon: rgba(180, 0, 255, 0.4);
  --font-main: 'Segoe UI', 'Arial', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--neon-purple); border-radius: 4px; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
}
.neon-text {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}
.neon-text-purple {
  color: var(--neon-purple);
  text-shadow: 0 0 8px var(--neon-purple), 0 0 20px var(--neon-purple);
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: #fff;
  box-shadow: 0 0 20px rgba(180,0,255,0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(180,0,255,0.8);
}
.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0,229,255,0.3);
}
.btn-secondary:hover {
  background: rgba(0,229,255,0.1);
  box-shadow: 0 0 25px rgba(0,229,255,0.6);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, #ffd700, #ff9900);
  color: #1a0033;
  box-shadow: 0 0 20px rgba(255,215,0,0.5);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255,215,0,0.8);
}

/* ── 18+ Age Gate Popup ── */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.age-gate-box {
  background: var(--dark-card2);
  border: 2px solid var(--neon-purple);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(180,0,255,0.4), 0 0 120px rgba(180,0,255,0.15);
}
.age-gate-box .age-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}
.age-gate-box h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-purple);
  text-shadow: 0 0 12px var(--neon-purple);
  margin-bottom: 12px;
}
.age-gate-box p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
}
.age-gate-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.age-gate-btns .btn { min-width: 140px; }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-card2);
  border-top: 2px solid var(--border-neon);
  padding: 18px 24px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
#cookie-banner p { color: var(--text-muted); font-size: 0.9rem; flex: 1; min-width: 220px; }
#cookie-banner p a { color: var(--neon-cyan); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }

/* ── Header / Nav ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,0,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-neon);
  transition: all 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 0 12px rgba(180,0,255,0.6);
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--neon-cyan);
  background: rgba(0,229,255,0.08);
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,0,16,0.7) 0%, rgba(26,0,51,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(180,0,255,0.2);
  border: 1px solid var(--neon-purple);
  color: var(--neon-purple);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px var(--neon-cyan);
}
.hero-stat .label { font-size: 0.85rem; color: var(--text-muted); }

/* ── Games Section ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 16px;
}
.game-card {
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(180,0,255,0.25);
  border-color: var(--neon-purple);
}
.game-card-header {
  padding: 28px 28px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.game-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.game-icon.purple { background: rgba(180,0,255,0.2); }
.game-icon.cyan { background: rgba(0,229,255,0.2); }
.game-icon.gold { background: rgba(255,215,0,0.2); }
.game-card-header h3 { font-size: 1.3rem; font-weight: 700; }
.game-card-header span { font-size: 0.8rem; color: var(--text-muted); display: block; }
.game-area { padding: 24px 28px 28px; }

/* ── Slot Machine ── */
.slot-machine {
  background: linear-gradient(180deg, #1a0033 0%, #0d0020 100%);
  border: 2px solid var(--neon-purple);
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 0 30px rgba(180,0,255,0.15);
}
.slot-reels {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.slot-reel {
  width: 80px;
  height: 90px;
  background: #0a0010;
  border: 2px solid rgba(180,0,255,0.5);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.1s linear;
  position: absolute;
  top: 0;
  width: 100%;
}
.reel-symbol {
  width: 80px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.slot-result {
  text-align: center;
  min-height: 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-shadow: 0 0 8px var(--accent-gold);
}
.slot-controls { display: flex; gap: 10px; justify-content: center; }
.slot-controls .btn { padding: 10px 24px; font-size: 0.9rem; }

/* ── Wheel of Fortune ── */
.wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.wheel-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
}
#wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0,229,255,0.4), 0 0 60px rgba(180,0,255,0.2);
}
.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--neon-cyan);
  filter: drop-shadow(0 0 8px var(--neon-cyan));
  z-index: 10;
}
.wheel-result {
  text-align: center;
  min-height: 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

/* ── Token Flip Game ── */
.token-game {
  text-align: center;
}
.token-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.token-score-box {
  background: rgba(180,0,255,0.1);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 100px;
}
.token-score-box .score-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-shadow: 0 0 8px var(--accent-gold);
}
.token-score-box .score-label { font-size: 0.75rem; color: var(--text-muted); }
.coin-flip-area {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.coin {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}
.coin.flipping { animation: coinFlip 1s ease forwards; }
@keyframes coinFlip {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(900deg) scale(1.1); }
  100% { transform: rotateY(1800deg); }
}
.coin-face, .coin-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  backface-visibility: hidden;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
}
.coin-face { background: radial-gradient(circle, #ffd700, #b8860b); }
.coin-back { background: radial-gradient(circle, #c0c0c0, #808080); transform: rotateY(180deg); }
.token-choice-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.token-choice-btns .btn { padding: 10px 22px; font-size: 0.9rem; }
.token-message { min-height: 28px; font-size: 1rem; font-weight: 700; margin-top: 12px; color: var(--neon-cyan); }

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-neon);
  box-shadow: 0 0 40px rgba(180,0,255,0.2);
}
.about-img img { width: 100%; height: 360px; object-fit: cover; display: block; }
.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.about-text p { color: var(--text-muted); margin-bottom: 20px; }
.about-features { list-style: none; margin-bottom: 28px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(180,0,255,0.1);
}
.about-features li:last-child { border-bottom: none; }
.about-features li .feat-icon { color: var(--neon-cyan); font-size: 1.1rem; flex-shrink: 0; }

/* ── Venues Section ── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.venue-card {
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.venue-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 40px rgba(0,229,255,0.15);
  transform: translateY(-4px);
}
.venue-city {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.venue-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.venue-card address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.venue-card .venue-hours {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--neon-cyan);
}

/* ── Newsletter / CTA Section ── */
.newsletter-section {
  background: linear-gradient(135deg, rgba(26,0,51,0.8), rgba(0,10,30,0.8));
  border-top: 1px solid var(--border-neon);
  border-bottom: 1px solid var(--border-neon);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 12px; }
.newsletter-text p { color: var(--text-muted); }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 12px; }
.form-row input { flex: 1; }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-neon);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0,229,255,0.2);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--dark-card2); color: var(--text-light); }
.form-note { font-size: 0.8rem; color: var(--text-muted); }
.form-note a { color: var(--neon-cyan); }
.form-success {
  display: none;
  background: rgba(0,229,255,0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 10px;
  padding: 16px;
  color: var(--neon-cyan);
  text-align: center;
  font-weight: 600;
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(180,0,255,0.15);
  border: 1px solid var(--border-neon);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-text span { color: var(--text-light); }
.contact-form-box {
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 20px;
  padding: 36px;
}
.contact-form-box h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }

/* ── Footer ── */
footer {
  background: var(--dark-card);
  border-top: 1px solid var(--border-neon);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: var(--neon-cyan); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--neon-cyan); }
.footer-bottom {
  border-top: 1px solid var(--border-neon);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom a { color: var(--neon-cyan); text-decoration: none; }
.footer-links { display: flex; gap: 20px; }
.footer-disclaimer {
  background: rgba(180,0,255,0.05);
  border: 1px solid var(--border-neon);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(180,0,255,0.2);
  border: 1px solid var(--neon-purple);
  color: var(--neon-purple);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ── Policy Pages ── */
.policy-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(26,0,51,0.6) 0%, transparent 100%);
}
.policy-hero h1 { font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.policy-hero p { color: var(--text-muted); }
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
.policy-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-neon);
}
.policy-content h3 { font-size: 1.1rem; font-weight: 600; margin: 20px 0 8px; color: var(--text-light); }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { color: var(--text-muted); padding-left: 24px; margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--neon-cyan); }
.policy-updated {
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── Responsible Gaming Page ── */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.rg-card {
  background: var(--dark-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: 28px;
}
.rg-card .rg-icon { font-size: 2rem; margin-bottom: 12px; }
.rg-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.rg-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.helpline-box {
  background: linear-gradient(135deg, rgba(180,0,255,0.15), rgba(0,229,255,0.1));
  border: 2px solid var(--neon-purple);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.helpline-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.helpline-box p { color: var(--text-muted); margin-bottom: 20px; }
.helpline-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px var(--neon-cyan);
}

/* ── Animations ── */
@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-anim { animation: float 3s ease-in-out infinite; }

/* ── Win Animation ── */
@keyframes winFlash {
  0%, 100% { background: transparent; }
  50% { background: rgba(255,215,0,0.15); }
}
.win-flash { animation: winFlash 0.4s ease 3; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid, .newsletter-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(10,0,16,0.98); padding: 20px; border-bottom: 1px solid var(--border-neon); }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .games-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .section { padding: 60px 0; }
  .form-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .age-gate-btns { flex-direction: column; }
  .slot-reel { width: 70px; height: 80px; }
  .reel-symbol { width: 70px; height: 80px; font-size: 2rem; }
  .wheel-wrapper { width: 240px; height: 240px; }
  #wheel-canvas { width: 240px; height: 240px; }
}
