/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --accent: #f59e0b;
  --accent2: #06b6d4;
  --bg-dark: #0f0a1e;
  --bg-card: #1a1035;
  --bg-card2: #1e1540;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #2d2060;
  --radius: 12px;
  --shadow: 0 4px 32px rgba(124,58,237,0.18);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent2); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1a1035ee;
  border-top: 2px solid var(--primary);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  z-index: 9000;
  backdrop-filter: blur(8px);
}
#cookie-banner p { flex: 1; font-size: .9rem; color: var(--text-muted); }
#cookie-banner a { color: var(--accent); }
.btn-cookie { background: var(--primary); color: #fff; border: none; padding: 10px 22px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: background .2s; }
.btn-cookie:hover { background: var(--primary-dark); }
.btn-cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); padding: 10px 22px; border-radius: 8px; cursor: pointer; font-weight: 600; transition: all .2s; }
.btn-cookie-decline:hover { border-color: var(--primary); color: var(--text); }

/* ===== AGE GATE ===== */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(10,6,30,.97);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.age-gate-box {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px; width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(124,58,237,.4);
}
.age-gate-box .logo-text { font-size: 2rem; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.age-gate-box h2 { font-size: 1.6rem; margin-bottom: 12px; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 28px; font-size: .95rem; }
.age-gate-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; padding: 14px 36px; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: transform .15s, box-shadow .15s; }
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.5); }
.btn-age-no { background: transparent; color: var(--text-muted); border: 2px solid var(--border); padding: 14px 36px; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .2s; }
.btn-age-no:hover { border-color: #ef4444; color: #ef4444; }
.age-gate-disclaimer { margin-top: 20px; font-size: .78rem; color: var(--text-muted); }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 800;
  background: rgba(15,10,30,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 38px; height: 38px; }
.logo-text { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.logo-text span { color: var(--accent); }
nav ul { display: flex; gap: 8px; }
nav ul li a {
  color: var(--text-muted); font-weight: 500; padding: 8px 14px;
  border-radius: 8px; transition: all .2s; font-size: .95rem;
}
nav ul li a:hover, nav ul li a.active { color: #fff; background: rgba(124,58,237,.2); }
.nav-cta { background: var(--primary); color: #fff !important; padding: 9px 20px !important; border-radius: 8px !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-nav { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,6,30,.88) 0%, rgba(91,33,182,.45) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  max-width: 700px; padding-left: 48px;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 16px; border-radius: 20px;
  font-size: .82rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.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; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border: none; padding: 15px 32px;
  border-radius: 10px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,.5); color: #fff; }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  padding: 15px 32px; border-radius: 10px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all .2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto 0 auto;
  padding: 0 48px 48px;
  display: flex; gap: 40px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: .85rem; color: var(--text-muted); }

/* ===== SECTIONS ===== */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(124,58,237,.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 5px 14px; border-radius: 20px;
  font-size: .8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin-bottom: 48px; }

/* ===== GAMES GRID ===== */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.game-card-img { width: 100%; height: 200px; object-fit: cover; }
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 16px; }
.badge-free {
  display: inline-block;
  background: rgba(6,182,212,.15); border: 1px solid var(--accent2);
  color: var(--accent2); padding: 3px 10px; border-radius: 20px;
  font-size: .75rem; font-weight: 700; margin-bottom: 12px;
}

/* ===== GAME PAGES ===== */
.game-page-wrapper {
  max-width: 900px; margin: 0 auto; padding: 40px 24px;
}
.game-page-wrapper h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.game-page-wrapper .sub { color: var(--text-muted); margin-bottom: 32px; }

/* SLOT MACHINE */
.slot-machine {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 0 40px rgba(124,58,237,.25);
  max-width: 520px; margin: 0 auto 32px;
}
.slot-display {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 24px;
}
.slot-reel {
  background: #0f0a1e;
  border: 2px solid var(--border);
  border-radius: 12px;
  width: 100px; height: 110px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.slot-reel.spinning { animation: slotSpin .12s linear infinite; }
@keyframes slotSpin {
  0% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  75% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}
.slot-result {
  min-height: 36px; font-size: 1.1rem; font-weight: 700;
  color: var(--accent); margin-bottom: 16px;
}
.slot-coins { font-size: .95rem; color: var(--text-muted); margin-bottom: 20px; }
.slot-coins span { color: var(--accent); font-weight: 700; }
.btn-spin {
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: #000; border: none; padding: 14px 40px;
  border-radius: 10px; font-size: 1.1rem; font-weight: 800;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  width: 100%;
}
.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.4); }
.btn-spin:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* WHEEL */
.wheel-wrapper {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 0 40px rgba(124,58,237,.25);
  max-width: 520px; margin: 0 auto 32px;
}
.wheel-container { position: relative; display: inline-block; margin-bottom: 20px; }
#wheelCanvas { border-radius: 50%; box-shadow: 0 0 30px rgba(124,58,237,.4); }
.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(--accent);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
.wheel-result {
  min-height: 36px; font-size: 1.1rem; font-weight: 700;
  color: var(--accent); margin-bottom: 16px;
}
.wheel-coins { font-size: .95rem; color: var(--text-muted); margin-bottom: 20px; }
.wheel-coins span { color: var(--accent); font-weight: 700; }
.btn-wheel-spin {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border: none; padding: 14px 40px;
  border-radius: 10px; font-size: 1.1rem; font-weight: 800;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  width: 100%;
}
.btn-wheel-spin:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.5); }
.btn-wheel-spin:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* COIN FLIP */
.coin-wrapper {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 0 40px rgba(124,58,237,.25);
  max-width: 520px; margin: 0 auto 32px;
}
.coin-scene { perspective: 600px; display: inline-block; margin-bottom: 24px; }
.coin {
  width: 120px; height: 120px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.2s cubic-bezier(.4,0,.2,1);
}
.coin-face {
  position: absolute; inset: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  backface-visibility: hidden;
  border: 4px solid var(--accent);
}
.coin-heads {
  background: radial-gradient(circle at 35% 35%, #fcd34d, #d97706);
}
.coin-tails {
  background: radial-gradient(circle at 35% 35%, #c0c0c0, #6b7280);
  transform: rotateY(180deg);
}
.coin.flipping { animation: coinFlip 1.2s ease-in-out forwards; }
@keyframes coinFlip {
  0% { transform: rotateY(0); }
  100% { transform: rotateY(var(--flip-deg)); }
}
.coin-pick { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.btn-pick {
  background: var(--bg-card2); border: 2px solid var(--border);
  color: var(--text); padding: 10px 28px; border-radius: 10px;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .2s;
}
.btn-pick.selected, .btn-pick:hover { border-color: var(--accent); color: var(--accent); background: rgba(245,158,11,.1); }
.coin-result { min-height: 36px; font-size: 1.1rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.coin-stats { font-size: .95rem; color: var(--text-muted); margin-bottom: 20px; }
.coin-stats span { color: var(--accent); font-weight: 700; }
.btn-flip {
  background: linear-gradient(135deg, var(--accent2), #0891b2);
  color: #fff; border: none; padding: 14px 40px;
  border-radius: 10px; font-size: 1.1rem; font-weight: 800;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  width: 100%;
}
.btn-flip:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,182,212,.4); }
.btn-flip:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 360px; object-fit: cover; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon { width: 36px; height: 36px; background: rgba(124,58,237,.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.about-feature-text h4 { font-weight: 700; margin-bottom: 2px; }
.about-feature-text p { color: var(--text-muted); font-size: .88rem; margin: 0; }

/* ===== VENUES ===== */
.venues-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.venue-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.venue-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--accent); }
.venue-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 4px; }
.venue-icon { font-size: 1.6rem; margin-bottom: 12px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(91,33,182,.08));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}
.newsletter-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.newsletter-section p { color: var(--text-muted); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 18px; border-radius: 10px;
  font-size: .95rem;
  outline: none; transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.btn-subscribe {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border: none; padding: 13px 28px;
  border-radius: 10px; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn-subscribe:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,.4); }
.newsletter-success { display: none; color: #4ade80; font-weight: 600; margin-top: 12px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-detail-icon { font-size: 1.3rem; }
.contact-detail-text h4 { font-weight: 700; margin-bottom: 2px; }
.contact-detail-text p { color: var(--text-muted); font-size: .9rem; margin: 0; }
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.contact-form-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px; border-radius: 10px;
  font-size: .95rem; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg-card); }
.btn-send {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border: none; padding: 14px 32px;
  border-radius: 10px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: transform .15s, box-shadow .15s; width: 100%;
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.4); }
.form-success { display: none; background: rgba(74,222,128,.1); border: 1px solid #4ade80; border-radius: 10px; padding: 16px; color: #4ade80; margin-top: 16px; text-align: center; font-weight: 600; }

/* ===== RESPONSIBLE GAMING ===== */
.rg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 32px; }
.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.rg-card .rg-icon { font-size: 2.2rem; margin-bottom: 12px; }
.rg-card h3 { font-weight: 700; margin-bottom: 8px; }
.rg-card p { color: var(--text-muted); font-size: .88rem; }

/* ===== FOOTER ===== */
footer {
  background: #080514;
  border-top: 1px solid var(--border);
  padding: 60px 24px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.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: .9rem; margin: 12px 0 20px; max-width: 280px; }
.footer-col h4 { font-weight: 700; margin-bottom: 16px; font-size: .95rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: .85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: .85rem; }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-disclaimer {
  background: rgba(124,58,237,.08);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 16px;
  color: var(--text-muted); font-size: .82rem;
  margin-bottom: 24px; line-height: 1.6;
}
.footer-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--primary); color: #fff;
  border-radius: 6px; font-weight: 800; font-size: .85rem;
  margin-right: 8px; flex-shrink: 0; vertical-align: middle;
}

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(91,33,182,.1));
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
  text-align: center;
}
.policy-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; }
.policy-hero p { color: var(--text-muted); }
.policy-content {
  max-width: 860px; margin: 0 auto; padding: 60px 24px;
}
.policy-content h2 { font-size: 1.4rem; font-weight: 700; margin: 36px 0 12px; color: var(--accent); }
.policy-content h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 8px; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.policy-content ul { margin: 0 0 14px 20px; list-style: disc; }
.policy-content ul li { color: var(--text-muted); margin-bottom: 6px; line-height: 1.7; }
.policy-content a { color: var(--accent); }
.policy-updated { background: rgba(124,58,237,.1); border-left: 3px solid var(--primary); padding: 12px 16px; border-radius: 0 8px 8px 0; margin-bottom: 32px; color: var(--text-muted); font-size: .9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    display: none;
    position: fixed; inset: 0; top: 68px;
    background: rgba(10,6,30,.97);
    z-index: 700; padding: 24px;
    flex-direction: column; gap: 8px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: var(--text); font-size: 1.1rem; font-weight: 600; padding: 14px 16px; border-radius: 10px; display: block; border-bottom: 1px solid var(--border); }
  .mobile-nav a:hover { background: rgba(124,58,237,.15); color: var(--accent); }
  .hero-content { padding: 60px 24px; }
  .hero-stats { padding: 0 24px 40px; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .slot-reel { width: 80px; height: 90px; font-size: 2.4rem; }
}
@media (max-width: 480px) {
  .age-gate-box { padding: 32px 20px; }
  .slot-display { gap: 8px; }
  .slot-reel { width: 70px; height: 80px; font-size: 2rem; }
  .newsletter-section { padding: 40px 20px; }
  .contact-form-box { padding: 24px 16px; }
}
