/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0d0b1e;
  color: #e0d9f7;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: #c49bff; text-decoration: none; transition: color 0.3s; }
a:hover { color: #f0c040; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --purple: #7b2ff7;
  --purple-light: #c49bff;
  --gold: #f0c040;
  --dark: #0d0b1e;
  --dark2: #16122e;
  --dark3: #1e1840;
  --text: #e0d9f7;
  --text-muted: #9b8ec4;
  --radius: 12px;
  --shadow: 0 4px 32px rgba(123,47,247,0.25);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #16122e;
  border-top: 2px solid var(--purple);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(123,47,247,0.3);
}
#cookie-banner p { font-size: 0.9rem; color: var(--text-muted); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--purple-light); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--purple); color: #fff; border: none;
  padding: 8px 20px; border-radius: 6px; cursor: pointer; font-weight: 600;
  transition: background 0.3s;
}
.btn-cookie-accept:hover { background: #6020d0; }
.btn-cookie-decline {
  background: transparent; color: var(--text-muted); border: 1px solid var(--text-muted);
  padding: 8px 20px; border-radius: 6px; cursor: pointer; font-weight: 600;
  transition: all 0.3s;
}
.btn-cookie-decline:hover { border-color: var(--purple-light); color: var(--purple-light); }

/* ===== AGE GATE MODAL ===== */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(13,11,30,0.97);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
}
.age-gate-box {
  background: var(--dark2);
  border: 2px solid var(--purple);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 460px; width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(123,47,247,0.5);
}
.age-gate-box .age-icon { font-size: 4rem; margin-bottom: 16px; }
.age-gate-box h2 { font-size: 2rem; color: var(--gold); margin-bottom: 8px; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.age-gate-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--purple), #5b1fc0);
  color: #fff; border: none; padding: 14px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(123,47,247,0.5);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123,47,247,0.7); }
.btn-age-no {
  background: transparent; color: var(--text-muted);
  border: 2px solid var(--text-muted); padding: 14px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s;
}
.btn-age-no:hover { border-color: #ff4d4d; color: #ff4d4d; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,11,30,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,47,247,0.3);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: #fff;
  text-decoration: none;
}
.logo-icon { font-size: 1.8rem; }
.logo span { color: var(--gold); }
nav ul { display: flex; gap: 8px; align-items: center; }
nav ul li a {
  color: var(--text); font-weight: 500; padding: 8px 14px;
  border-radius: 8px; transition: all 0.3s; font-size: 0.95rem;
}
nav ul li a:hover, nav ul li a.active {
  background: rgba(123,47,247,0.2); color: var(--purple-light);
}
.nav-cta {
  background: linear-gradient(135deg, var(--purple), #5b1fc0) !important;
  color: #fff !important; padding: 9px 20px !important;
  border-radius: 50px !important; font-weight: 700 !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--dark2); border-bottom: 1px solid rgba(123,47,247,0.3);
  padding: 16px 24px; z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { flex-direction: column; gap: 4px; display: flex; }
.mobile-nav ul li a { display: block; padding: 12px 16px; border-radius: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,47,247,0.3) 0%, rgba(13,11,30,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 800px; padding: 40px 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(123,47,247,0.3); border: 1px solid var(--purple);
  color: var(--purple-light); padding: 6px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.15rem; color: #c5bde0; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), #5b1fc0);
  color: #fff; padding: 15px 36px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(123,47,247,0.5);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(123,47,247,0.7); color: #fff; }
.btn-secondary {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4); padding: 15px 36px;
  border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SECTIONS ===== */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-tag {
  display: inline-block; background: rgba(123,47,247,0.2); border: 1px solid var(--purple);
  color: var(--purple-light); padding: 4px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px;
}
.game-card {
  background: var(--dark2); border: 1px solid rgba(123,47,247,0.25);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(123,47,247,0.35); }
.game-card-img { height: 200px; overflow: hidden; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.game-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.btn-play {
  background: linear-gradient(135deg, var(--purple), #5b1fc0);
  color: #fff; border: none; padding: 10px 24px;
  border-radius: 50px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-size: 0.9rem; width: 100%;
}
.btn-play:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===== GAME MODAL ===== */
.game-modal-overlay {
  position: fixed; inset: 0; background: rgba(13,11,30,0.95);
  z-index: 10000; display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.game-modal-overlay.active { display: flex; }
.game-modal {
  background: var(--dark2); border: 1px solid rgba(123,47,247,0.4);
  border-radius: 20px; width: 100%; max-width: 680px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 0 60px rgba(123,47,247,0.4);
}
.game-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(123,47,247,0.2);
}
.game-modal-header h3 { font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.modal-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 4px 8px;
  border-radius: 6px; transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.game-modal-body { padding: 24px; }

/* ===== SLOT MACHINE ===== */
.slot-machine {
  background: linear-gradient(135deg, #1a1040, #0d0b1e);
  border: 2px solid var(--purple); border-radius: 16px;
  padding: 24px; text-align: center;
}
.slot-reels {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 20px;
}
.slot-reel {
  width: 90px; height: 90px;
  background: #0d0b1e; border: 2px solid rgba(123,47,247,0.5);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; overflow: hidden; position: relative;
  transition: all 0.1s;
}
.slot-reel.spinning { animation: slotSpin 0.1s linear infinite; }
@keyframes slotSpin { 0%{transform:translateY(-4px)} 50%{transform:translateY(4px)} 100%{transform:translateY(-4px)} }
.slot-result {
  min-height: 32px; font-size: 1.1rem; font-weight: 700;
  margin-bottom: 16px; color: var(--gold);
}
.slot-tokens {
  font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px;
}
.slot-tokens span { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.btn-spin {
  background: linear-gradient(135deg, #f0c040, #e09010);
  color: #0d0b1e; border: none; padding: 14px 40px;
  border-radius: 50px; font-size: 1.1rem; font-weight: 800; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(240,192,64,0.4);
}
.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,192,64,0.6); }
.btn-spin:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== FORTUNE WHEEL ===== */
.wheel-container { text-align: center; }
.wheel-wrap { position: relative; display: inline-block; margin-bottom: 20px; }
#fortune-wheel { border-radius: 50%; box-shadow: 0 0 40px rgba(123,47,247,0.5); }
.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: 30px solid var(--gold);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.wheel-result {
  min-height: 32px; font-size: 1.1rem; font-weight: 700;
  margin-bottom: 16px; color: var(--gold);
}
.wheel-tokens { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.wheel-tokens span { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.btn-spin-wheel {
  background: linear-gradient(135deg, var(--purple), #5b1fc0);
  color: #fff; border: none; padding: 14px 40px;
  border-radius: 50px; font-size: 1.1rem; font-weight: 800; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(123,47,247,0.5);
}
.btn-spin-wheel:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123,47,247,0.7); }
.btn-spin-wheel:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== COIN FLIP ===== */
.coin-game { text-align: center; }
.coin-wrap { margin: 20px auto; perspective: 600px; width: 120px; height: 120px; }
.coin {
  width: 120px; height: 120px; border-radius: 50%;
  position: relative; transform-style: preserve-3d;
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.coin-face, .coin-back {
  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(--gold);
}
.coin-face { background: radial-gradient(circle at 35% 35%, #f0c040, #b8860b); }
.coin-back { background: radial-gradient(circle at 35% 35%, #c0c0c0, #808080); transform: rotateY(180deg); }
.coin.flipping { animation: coinFlip 1.2s ease-in-out; }
@keyframes coinFlip {
  0%{transform:rotateY(0)} 50%{transform:rotateY(900deg)} 100%{transform:rotateY(1080deg)}
}
.coin-choice-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 16px; }
.btn-choice {
  padding: 10px 28px; border-radius: 50px; font-weight: 700; cursor: pointer;
  border: 2px solid var(--purple); background: transparent; color: var(--purple-light);
  transition: all 0.2s; font-size: 0.95rem;
}
.btn-choice.selected, .btn-choice:hover { background: var(--purple); color: #fff; }
.coin-result { min-height: 32px; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.coin-tokens { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.coin-tokens span { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.btn-flip {
  background: linear-gradient(135deg, #f0c040, #e09010);
  color: #0d0b1e; border: none; padding: 14px 40px;
  border-radius: 50px; font-size: 1.1rem; font-weight: 800; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(240,192,64,0.4);
}
.btn-flip:hover { transform: translateY(-2px); }
.btn-flip:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--dark2); border: 1px solid rgba(123,47,247,0.2);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 2.5rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== ABOUT SECTION ===== */
.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: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.about-text h2 span { color: var(--gold); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.97rem; }
.about-stats { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== LOCATIONS ===== */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.location-card {
  background: var(--dark2); border: 1px solid rgba(123,47,247,0.2);
  border-radius: var(--radius); padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.location-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.location-card .loc-city { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.location-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 4px; }
.location-card p strong { color: var(--text); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-top: 1px solid rgba(123,47,247,0.2);
  border-bottom: 1px solid rgba(123,47,247,0.2);
}
.newsletter-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.newsletter-inner h2 span { color: var(--gold); }
.newsletter-inner p { color: var(--text-muted); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 240px; padding: 14px 20px;
  background: var(--dark); border: 1px solid rgba(123,47,247,0.4);
  border-radius: 50px; color: var(--text); font-size: 0.95rem;
  outline: none; transition: border-color 0.3s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--purple); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.btn-subscribe {
  background: linear-gradient(135deg, var(--purple), #5b1fc0);
  color: #fff; border: none; padding: 14px 32px;
  border-radius: 50px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-size: 0.95rem; white-space: nowrap;
}
.btn-subscribe:hover { opacity: 0.9; transform: translateY(-2px); }
.newsletter-success {
  display: none; color: #4ade80; font-weight: 600; margin-top: 12px; font-size: 0.95rem;
}

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.contact-info h2 span { color: var(--gold); }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-text strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 2px; }
.contact-item-text span { color: var(--text-muted); font-size: 0.88rem; }
.contact-form-wrap {
  background: var(--dark2); border: 1px solid rgba(123,47,247,0.2);
  border-radius: 16px; padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--dark); border: 1px solid rgba(123,47,247,0.3);
  border-radius: 10px; color: var(--text); font-size: 0.95rem;
  outline: none; transition: border-color 0.3s; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark2); }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--purple), #5b1fc0);
  color: #fff; border: none; padding: 14px;
  border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(123,47,247,0.4);
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }
.form-success {
  display: none; background: rgba(74,222,128,0.1); border: 1px solid #4ade80;
  border-radius: 10px; padding: 14px; text-align: center;
  color: #4ade80; font-weight: 600; margin-top: 14px; font-size: 0.95rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark2); border-top: 1px solid rgba(123,47,247,0.2);
  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: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--purple-light); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(123,47,247,0.15); 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: 0.82rem; }
.footer-bottom a { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { font-size: 0.78rem; color: var(--text-muted); margin-top: 20px; line-height: 1.6; padding-top: 16px; border-top: 1px solid rgba(123,47,247,0.1); }
.disclaimer-bar {
  background: rgba(240,192,64,0.08); border: 1px solid rgba(240,192,64,0.2);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 20px;
  font-size: 0.82rem; color: var(--text-muted); text-align: center;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 80px 24px 60px; text-align: center;
  border-bottom: 1px solid rgba(123,47,247,0.2);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.policy-content h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 12px; color: var(--purple-light); }
.policy-content h3 { font-size: 1.15rem; font-weight: 600; margin: 24px 0 8px; color: #fff; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.8; }
.policy-content ul { margin: 12px 0 16px 20px; }
.policy-content ul li { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 6px; list-style: disc; }
.policy-content a { color: var(--purple-light); }
.policy-content a:hover { color: var(--gold); }
.policy-date { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; }

/* ===== RESPONSIBLE GAMING ===== */
.rg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.rg-card {
  background: var(--dark2); border: 1px solid rgba(123,47,247,0.2);
  border-radius: var(--radius); padding: 24px;
}
.rg-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--gold); }
.rg-card p { color: var(--text-muted); font-size: 0.9rem; }
.rg-resources { margin-top: 40px; }
.rg-resources h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.resource-list { display: flex; flex-direction: column; gap: 12px; }
.resource-item {
  background: var(--dark2); border: 1px solid rgba(123,47,247,0.2);
  border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.resource-item strong { color: #fff; }
.resource-item span { color: var(--text-muted); font-size: 0.88rem; }
.resource-item a { color: var(--purple-light); font-size: 0.88rem; font-weight: 600; }
.resource-item a:hover { color: var(--gold); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 12px 24px; background: var(--dark); border-bottom: 1px solid rgba(123,47,247,0.1); }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 8px; align-items: center; font-size: 0.85rem; }
.breadcrumb-inner a { color: var(--text-muted); }
.breadcrumb-inner a:hover { color: var(--purple-light); }
.breadcrumb-inner span { color: var(--text-muted); }
.breadcrumb-inner .current { color: var(--purple-light); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 80px; right: 24px;
  background: var(--dark2); border: 1px solid var(--purple);
  border-radius: 10px; padding: 14px 20px;
  color: var(--text); font-size: 0.9rem; font-weight: 600;
  z-index: 99998; transform: translateX(120%); transition: transform 0.4s;
  max-width: 300px; box-shadow: var(--shadow);
}
.toast.show { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 70vh; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 16px; }
  .slot-reel { width: 72px; height: 72px; font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .age-gate-box { padding: 32px 24px; }
  .hero-content h1 { font-size: 2rem; }
  .slot-reels { gap: 8px; }
  .slot-reel { width: 60px; height: 60px; font-size: 1.8rem; }
}
