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

/* ===== VARIABLES ===== */
:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --gold: #fbbf24;
  --gold-dark: #d97706;
  --dark: #0f0a1e;
  --dark2: #1a1035;
  --dark3: #251848;
  --text: #e2d9f3;
  --text-muted: #9d8ec4;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(124,58,237,.35);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(26,16,53,.97);
  border-top: 2px solid var(--purple);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  backdrop-filter: blur(8px);
}
#cookie-banner p { font-size: .9rem; color: var(--text-muted); max-width: 700px; }
#cookie-banner p a { color: var(--purple-light); }
#cookie-banner .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--purple); color: #fff; border: none; padding: 9px 22px;
  border-radius: 8px; cursor: pointer; font-size: .9rem; font-weight: 600;
  transition: background .2s;
}
.btn-cookie-accept:hover { background: var(--gold); color: #000; }
.btn-cookie-decline {
  background: transparent; color: var(--text-muted); border: 1px solid var(--text-muted);
  padding: 9px 22px; border-radius: 8px; cursor: pointer; font-size: .9rem;
  transition: all .2s;
}
.btn-cookie-decline:hover { border-color: var(--purple-light); color: var(--purple-light); }

/* ===== AGE GATE ===== */
#age-gate {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10,5,30,.97);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.age-gate-box {
  background: var(--dark2);
  border: 2px solid var(--purple);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px; width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(124,58,237,.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: .95rem; }
.age-gate-btns { display: flex; gap: 14px; justify-content: center; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--purple), #5b21b6);
  color: #fff; border: none; padding: 14px 36px;
  border-radius: 10px; cursor: pointer; font-size: 1rem; font-weight: 700;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(124,58,237,.5);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,.7); }
.btn-age-no {
  background: transparent; color: var(--text-muted);
  border: 2px solid var(--text-muted); padding: 14px 36px;
  border-radius: 10px; cursor: pointer; font-size: 1rem; font-weight: 600;
  transition: all .2s;
}
.btn-age-no:hover { border-color: #ef4444; color: #ef4444; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(15,10,30,.92);
  border-bottom: 1px solid rgba(124,58,237,.3);
  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;
  font-size: 1.4rem; font-weight: 800; color: var(--gold);
  letter-spacing: -.5px;
}
.logo img { width: 36px; height: 36px; }
.logo span { color: var(--purple-light); }
nav ul { display: flex; gap: 6px; align-items: center; }
nav ul li a {
  color: var(--text); padding: 8px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; transition: all .2s;
}
nav ul li a:hover, nav ul li a.active {
  background: rgba(124,58,237,.25); color: var(--gold);
}
.nav-cta {
  background: var(--purple) !important; color: #fff !important;
  padding: 8px 18px !important; border-radius: 8px !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: #000 !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: var(--dark2); padding: 16px 24px;
  border-bottom: 1px solid rgba(124,58,237,.3);
}
.mobile-menu a {
  color: var(--text); padding: 10px 0; font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,5,30,.7) 0%, rgba(10,5,30,.5) 50%, rgba(10,5,30,.9) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 0 24px; }
.hero-badge {
  display: inline-block; background: rgba(124,58,237,.3);
  border: 1px solid var(--purple); color: var(--purple-light);
  padding: 6px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: .5px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 60%, var(--purple-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content p { font-size: 1.15rem; color: #c4b5e8; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), #5b21b6);
  color: #fff; padding: 15px 36px; border-radius: 12px;
  font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 6px 24px rgba(124,58,237,.5);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(124,58,237,.7); color: #fff; }
.btn-secondary {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold); padding: 13px 34px;
  border-radius: 12px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .2s; display: inline-block;
}
.btn-secondary:hover { background: var(--gold); color: #000; }
.hero-stats {
  display: flex; gap: 40px; justify-content: center; margin-top: 48px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== SECTIONS ===== */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.4); color: var(--purple-light);
  padding: 5px 16px; border-radius: 50px; font-size: .8rem; font-weight: 600;
  margin-bottom: 14px; letter-spacing: .5px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  margin-bottom: 16px; color: #fff;
}
.section-title span { color: var(--gold); }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ===== GAMES SECTION ===== */
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 40px;
}
.game-card {
  background: var(--dark2); border: 1px solid rgba(124,58,237,.3);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.game-card-img { position: relative; height: 200px; overflow: hidden; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.game-card:hover .game-card-img img { transform: scale(1.06); }
.game-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #000; font-size: .75rem; font-weight: 800;
  padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px;
}
.game-card-body { padding: 22px; }
.game-card-body h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 18px; }
.btn-play {
  display: inline-block; background: var(--purple); color: #fff;
  padding: 10px 26px; border-radius: 8px; font-weight: 700; font-size: .9rem;
  border: none; cursor: pointer; transition: background .2s;
}
.btn-play:hover { background: var(--gold); color: #000; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--dark2); }
.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: 380px; object-fit: cover; }
.about-text h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.about-text h2 span { color: var(--gold); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  width: 44px; height: 44px; background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.4); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.about-feature-text h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.about-feature-text p { color: var(--text-muted); font-size: .85rem; margin: 0; }

/* ===== VENUES SECTION ===== */
.venues-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; margin-top: 40px;
}
.venue-card {
  background: var(--dark2); border: 1px solid rgba(124,58,237,.25);
  border-radius: var(--radius); padding: 24px;
  transition: transform .2s, border-color .2s;
}
.venue-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.venue-card h3 { color: var(--gold); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.venue-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.5; }
.venue-card .venue-tag {
  display: inline-block; background: rgba(124,58,237,.15);
  color: var(--purple-light); font-size: .75rem; padding: 3px 10px;
  border-radius: 50px; margin-bottom: 10px; border: 1px solid rgba(124,58,237,.3);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
  border-top: 1px solid rgba(124,58,237,.2);
  border-bottom: 1px solid rgba(124,58,237,.2);
}
.newsletter-box {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.newsletter-box h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.newsletter-box p { color: var(--text-muted); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 220px; padding: 13px 18px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(124,58,237,.4);
  border-radius: 10px; color: #fff; font-size: .95rem;
  outline: none; transition: border-color .2s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--purple-light); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.newsletter-form button {
  background: var(--purple); color: #fff; border: none;
  padding: 13px 28px; border-radius: 10px; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.newsletter-form button:hover { background: var(--gold); color: #000; }
#newsletter-success {
  display: none; margin-top: 14px; color: #4ade80; font-weight: 600; font-size: .95rem;
}

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.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: 18px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 44px; height: 44px; background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.4); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail-text h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.contact-detail-text p { color: var(--text-muted); font-size: .85rem; margin: 0; }
.contact-form-box {
  background: var(--dark2); border: 1px solid rgba(124,58,237,.3);
  border-radius: 16px; padding: 36px;
}
.contact-form-box h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: var(--text-muted); font-size: .85rem; margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(124,58,237,.3);
  border-radius: 8px; color: #fff; 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(--purple-light);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--dark2); }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--purple), #5b21b6);
  color: #fff; border: none; padding: 14px; border-radius: 10px;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: opacity .2s;
}
.btn-submit:hover { opacity: .85; }
#form-success {
  display: none; margin-top: 14px; padding: 14px; background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.3); border-radius: 8px;
  color: #4ade80; font-size: .9rem; text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: #07041a;
  border-top: 1px solid rgba(124,58,237,.25);
  padding: 60px 24px 30px;
}
.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; font-size: 1.2rem; }
.footer-brand p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: .95rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); 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: .82rem; }
.footer-disclaimer {
  color: var(--text-muted); font-size: .78rem; margin-top: 16px;
  padding: 14px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06); border-radius: 8px; line-height: 1.5;
}

/* ===== GAME MODALS ===== */
.game-modal {
  display: none; position: fixed; inset: 0; z-index: 8000;
  background: rgba(5,2,15,.95); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  overflow-y: auto; padding: 20px;
}
.game-modal.open { display: flex; }
.game-modal-inner {
  background: var(--dark2); border: 2px solid var(--purple);
  border-radius: 20px; padding: 32px; max-width: 700px; width: 100%;
  position: relative; box-shadow: 0 0 80px rgba(124,58,237,.4);
}
.game-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.game-modal-close:hover { background: #ef4444; }
.game-modal-inner h2 { font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: 6px; }
.game-modal-inner .game-desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }

/* ===== SLOT MACHINE ===== */
.slot-machine {
  background: linear-gradient(135deg, #1a0a3e, #0d0620);
  border: 3px solid var(--gold); border-radius: 16px;
  padding: 28px; text-align: center;
}
.slot-reels {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 20px;
}
.slot-reel {
  width: 90px; height: 90px; background: #fff;
  border: 3px solid var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; overflow: hidden; position: relative;
}
.slot-reel.spinning { animation: slotSpin .1s linear infinite; }
@keyframes slotSpin { 0%{transform:translateY(0)} 50%{transform:translateY(-10px)} 100%{transform:translateY(0)} }
.slot-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.slot-chips-display { color: var(--gold); font-weight: 700; font-size: 1rem; }
.slot-message { min-height: 28px; font-size: 1rem; font-weight: 700; color: #4ade80; margin-bottom: 14px; }
.slot-message.lose { color: #f87171; }
.btn-spin {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; border: none; padding: 14px 44px; border-radius: 10px;
  font-size: 1.1rem; font-weight: 800; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(251,191,36,.4);
}
.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(251,191,36,.6); }
.btn-spin:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.slot-paytable { margin-top: 18px; font-size: .8rem; color: var(--text-muted); }
.slot-paytable span { color: var(--gold); }

/* ===== WHEEL GAME ===== */
.wheel-game-wrap { text-align: center; }
.wheel-canvas-wrap { position: relative; display: inline-block; margin-bottom: 20px; }
#wheelCanvas { border-radius: 50%; box-shadow: 0 0 40px rgba(124,58,237,.6); }
.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(--gold);
  filter: drop-shadow(0 2px 6px rgba(251,191,36,.8));
}
.wheel-chips-display { color: var(--gold); font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.wheel-result { min-height: 28px; font-size: 1.05rem; font-weight: 700; color: #4ade80; margin-bottom: 14px; }
.wheel-result.lose { color: #f87171; }
.btn-spin-wheel {
  background: linear-gradient(135deg, var(--purple), #5b21b6);
  color: #fff; border: none; padding: 14px 44px; border-radius: 10px;
  font-size: 1.1rem; font-weight: 800; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(124,58,237,.5);
}
.btn-spin-wheel:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,.7); }
.btn-spin-wheel:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ===== CHIPS GAME ===== */
.chips-game { text-align: center; }
.chips-balance { color: var(--gold); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.chips-level { color: var(--purple-light); font-size: .9rem; margin-bottom: 20px; }
.chips-area {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.chip-btn {
  width: 70px; height: 70px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,.2);
  font-size: .75rem; font-weight: 800; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2px; margin: 0 auto;
  text-transform: uppercase; letter-spacing: .3px;
}
.chip-btn:hover { transform: scale(1.1); }
.chip-btn.red { background: radial-gradient(circle at 35% 35%, #f87171, #dc2626); border-color: #fca5a5; color: #fff; box-shadow: 0 4px 16px rgba(220,38,38,.5); }
.chip-btn.blue { background: radial-gradient(circle at 35% 35%, #60a5fa, #2563eb); border-color: #93c5fd; color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,.5); }
.chip-btn.green { background: radial-gradient(circle at 35% 35%, #4ade80, #16a34a); border-color: #86efac; color: #fff; box-shadow: 0 4px 16px rgba(22,163,74,.5); }
.chip-btn.gold { background: radial-gradient(circle at 35% 35%, #fbbf24, #d97706); border-color: #fde68a; color: #000; box-shadow: 0 4px 16px rgba(251,191,36,.5); }
.chip-btn.purple { background: radial-gradient(circle at 35% 35%, #a78bfa, #7c3aed); border-color: #c4b5fd; color: #fff; box-shadow: 0 4px 16px rgba(124,58,237,.5); }
.chip-btn.silver { background: radial-gradient(circle at 35% 35%, #e2e8f0, #94a3b8); border-color: #f1f5f9; color: #000; box-shadow: 0 4px 16px rgba(148,163,184,.5); }
.chip-btn.black { background: radial-gradient(circle at 35% 35%, #374151, #111827); border-color: #6b7280; color: #fff; box-shadow: 0 4px 16px rgba(17,24,39,.5); }
.chip-btn.rainbow { background: conic-gradient(red,orange,yellow,green,blue,violet,red); border-color: #fff; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.8); box-shadow: 0 4px 16px rgba(255,255,255,.3); }
.chips-message { min-height: 28px; font-size: 1rem; font-weight: 700; color: #4ade80; margin-bottom: 14px; }
.chips-message.lose { color: #f87171; }
.chips-progress-bar {
  background: rgba(255,255,255,.1); border-radius: 50px; height: 10px;
  margin-bottom: 8px; overflow: hidden;
}
.chips-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 50px; transition: width .4s ease;
}
.chips-progress-label { font-size: .8rem; color: var(--text-muted); margin-bottom: 14px; }
.btn-reset-chips {
  background: rgba(255,255,255,.08); color: var(--text-muted);
  border: 1px solid rgba(255,255,255,.15); padding: 9px 22px;
  border-radius: 8px; cursor: pointer; font-size: .85rem; transition: all .2s;
}
.btn-reset-chips:hover { background: rgba(124,58,237,.2); color: var(--purple-light); border-color: var(--purple); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
  padding: 80px 24px 60px; text-align: center;
  border-bottom: 1px solid rgba(124,58,237,.25);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; margin-bottom: 20px; font-size: .85rem; }
.breadcrumb a { color: var(--purple-light); }
.breadcrumb span { color: var(--text-muted); }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 860px; margin: 0 auto; padding: 60px 24px;
}
.policy-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--gold); margin: 36px 0 12px; }
.policy-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--purple-light); margin: 24px 0 8px; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.7; }
.policy-content ul { margin: 10px 0 14px 20px; list-style: disc; }
.policy-content ul li { color: var(--text-muted); margin-bottom: 6px; font-size: .95rem; }
.policy-content a { color: var(--purple-light); }
.policy-content a:hover { color: var(--gold); }
.policy-last-updated {
  background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.3);
  border-radius: 8px; padding: 12px 18px; margin-bottom: 32px;
  color: var(--text-muted); font-size: .88rem;
}

/* ===== RESPONSIBLE GAMING ===== */
.rg-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 36px; }
.rg-card {
  background: var(--dark2); border: 1px solid rgba(124,58,237,.25);
  border-radius: var(--radius); padding: 24px;
}
.rg-card .rg-icon { font-size: 2rem; margin-bottom: 12px; }
.rg-card h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.rg-card p { color: var(--text-muted); font-size: .88rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .chips-area { grid-template-columns: repeat(4, 1fr); }
  .chip-btn { width: 58px; height: 58px; font-size: .65rem; }
  .slot-reel { width: 72px; height: 72px; font-size: 2.2rem; }
}
@media (max-width: 400px) {
  .age-gate-box { padding: 32px 20px; }
  .age-gate-btns { flex-direction: column; }
}
