/* ===== 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: #0d0a1a;
  color: #e0d8f5;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: #c89bff; text-decoration: none; transition: color .2s; }
a:hover { color: #ffd700; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --purple: #6c2bd9;
  --purple-light: #9b59f5;
  --gold: #ffd700;
  --dark: #0d0a1a;
  --dark2: #160e2e;
  --card-bg: #1a1035;
  --text: #e0d8f5;
  --text-muted: #a89cc8;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(108,43,217,.35);
}

/* ===== AGE GATE OVERLAY ===== */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,6,25,.97);
  display: flex; align-items: center; justify-content: center;
}
.age-gate-box {
  background: var(--dark2);
  border: 2px solid var(--purple);
  border-radius: 18px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(108,43,217,.6);
}
.age-gate-box .ag-icon { font-size: 64px; margin-bottom: 16px; }
.age-gate-box h2 { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 28px; font-size: .95rem; }
.ag-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-yes, .btn-no {
  padding: 14px 36px; border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.btn-yes { background: linear-gradient(135deg, var(--purple), var(--purple-light)); color: #fff; }
.btn-yes:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,43,217,.5); }
.btn-no { background: #2a1f4a; color: var(--text-muted); border: 1px solid #3d2f6a; }
.btn-no:hover { background: #3a2a5a; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8888;
  background: #1a1035ee;
  border-top: 1px solid var(--purple);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  backdrop-filter: blur(8px);
}
#cookie-banner p { font-size: .88rem; 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, .btn-cookie-decline {
  padding: 9px 22px; border-radius: 50px; border: none;
  font-size: .85rem; font-weight: 600; cursor: pointer; transition: .2s;
}
.btn-cookie-accept { background: var(--purple); color: #fff; }
.btn-cookie-accept:hover { background: var(--purple-light); }
.btn-cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid #3d2f6a; }
.btn-cookie-decline:hover { border-color: var(--purple-light); color: var(--text); }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,10,26,.95);
  border-bottom: 1px solid rgba(108,43,217,.3);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: var(--gold);
  text-decoration: none;
}
.logo span { color: var(--purple-light); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  padding: 6px 0; border-bottom: 2px solid transparent; transition: .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff !important; padding: 10px 22px !important;
  border-radius: 50px; border-bottom: none !important;
  font-weight: 700 !important;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }
.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: .3s; }
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--dark2); border-top: 1px solid rgba(108,43,217,.3);
  padding: 12px 0;
}
.mobile-nav a {
  display: block; padding: 12px 24px; color: var(--text);
  font-weight: 500; border-bottom: 1px solid rgba(108,43,217,.1);
  transition: .2s;
}
.mobile-nav a:hover { background: rgba(108,43,217,.15); color: var(--gold); }
.mobile-nav.open { display: flex; }

/* ===== 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(.45);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,10,26,.7) 0%, rgba(108,43,217,.2) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 800px; padding: 40px 24px;
}
.hero-badge {
  display: inline-block; background: rgba(108,43,217,.4);
  border: 1px solid var(--purple-light); border-radius: 50px;
  padding: 6px 18px; font-size: .82rem; font-weight: 600;
  color: var(--purple-light); margin-bottom: 20px; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content p {
  font-size: 1.15rem; color: #c8bfe8; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; padding: 16px 40px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(108,43,217,.55); color: #fff; }
.btn-secondary {
  display: inline-block; background: transparent;
  color: var(--gold); padding: 15px 38px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; border: 2px solid var(--gold);
  cursor: pointer; transition: .2s; text-decoration: none;
}
.btn-secondary:hover { background: var(--gold); color: var(--dark); }
.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 48px;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: .82rem; 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(108,43,217,.2);
  border: 1px solid var(--purple); border-radius: 50px;
  padding: 5px 16px; font-size: .78rem; font-weight: 600;
  color: var(--purple-light); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
  margin-bottom: 14px; color: #fff;
}
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== GAMES SECTION ===== */
.games-section { background: var(--dark2); }
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 12px;
}
.game-card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid rgba(108,43,217,.3); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.game-card-img { position: relative; overflow: hidden; height: 200px; }
.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; left: 12px;
  background: var(--gold); color: var(--dark);
  padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 700;
}
.game-card-body { padding: 22px; }
.game-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.game-card-body p { font-size: .9rem; color: var(--text-muted); margin-bottom: 18px; }
.btn-play {
  display: inline-block; background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; padding: 11px 28px; border-radius: 50px;
  font-weight: 700; font-size: .9rem; border: none; cursor: pointer;
  transition: .2s; text-decoration: none;
}
.btn-play:hover { opacity: .85; transform: translateY(-2px); color: #fff; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid rgba(108,43,217,.2); padding: 28px 24px;
  text-align: center; transition: .25s;
}
.feature-card:hover { border-color: var(--purple); box-shadow: var(--shadow); }
.feature-icon { font-size: 2.4rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p { font-size: .88rem; color: var(--text-muted); }

/* ===== LOCATIONS ===== */
.locations-section { background: var(--dark2); }
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.location-card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid rgba(108,43,217,.2); padding: 24px;
  transition: .25s;
}
.location-card:hover { border-color: var(--purple-light); box-shadow: var(--shadow); }
.location-card h3 { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.location-card p { font-size: .87rem; color: var(--text-muted); margin-bottom: 4px; }
.location-tag {
  display: inline-block; background: rgba(108,43,217,.2);
  color: var(--purple-light); padding: 3px 10px; border-radius: 50px;
  font-size: .75rem; font-weight: 600; margin-top: 10px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, #1a0a3a 0%, #0d1a3a 100%);
  border-top: 1px solid rgba(108,43,217,.3);
  border-bottom: 1px solid rgba(108,43,217,.3);
}
.newsletter-inner {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.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: 220px; padding: 14px 20px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(108,43,217,.4);
  border-radius: 50px; 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: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; padding: 14px 32px; border: none; border-radius: 50px;
  font-weight: 700; font-size: .95rem; cursor: pointer; transition: .2s;
}
.newsletter-form button:hover { opacity: .85; transform: translateY(-2px); }
.newsletter-success {
  display: none; color: #4ade80; font-weight: 600;
  margin-top: 14px; font-size: .95rem;
}

/* ===== CONTACT FORM ===== */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong { display: block; color: #fff; font-size: .95rem; }
.contact-detail-text span { color: var(--text-muted); font-size: .88rem; }
.contact-form-box {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid rgba(108,43,217,.25); padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(108,43,217,.3);
  border-radius: 8px; color: #fff; font-size: .95rem; outline: none;
  transition: border-color .2s; font-family: inherit;
}
.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); }
.form-submit {
  width: 100%; background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; padding: 14px; border: none; border-radius: 8px;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: .2s;
}
.form-submit:hover { opacity: .85; }
.form-success {
  display: none; background: rgba(74,222,128,.1); border: 1px solid #4ade80;
  border-radius: 8px; padding: 14px; text-align: center;
  color: #4ade80; font-weight: 600; margin-top: 14px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative; padding: 100px 24px 60px;
  background-image: url('../img/about-bg.jpg');
  background-size: cover; background-position: center;
  text-align: center;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,10,26,.8);
}
.about-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.about-hero-content h1 { font-size: 2.8rem; font-weight: 900; color: #fff; margin-bottom: 16px; }
.about-hero-content p { font-size: 1.1rem; color: var(--text-muted); }
.about-content { background: var(--dark); padding: 80px 24px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-text h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid rgba(108,43,217,.2); padding: 24px; text-align: center;
}
.value-card .vi { font-size: 2rem; margin-bottom: 10px; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.value-card p { font-size: .85rem; color: var(--text-muted); }

/* ===== PAGE HERO (generic) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a0a3a 0%, #0d1a3a 100%);
  padding: 80px 24px 60px; text-align: center;
  border-bottom: 1px solid rgba(108,43,217,.3);
}
.page-hero h1 { font-size: 2.4rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 860px; margin: 0 auto; padding: 60px 24px 80px;
}
.policy-content h2 { font-size: 1.5rem; font-weight: 700; 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.75; }
.policy-content ul { margin: 10px 0 14px 20px; }
.policy-content ul li { color: var(--text-muted); margin-bottom: 6px; list-style: disc; }
.policy-content a { color: var(--purple-light); }
.policy-content .last-updated {
  background: rgba(108,43,217,.1); border-left: 3px solid var(--purple);
  padding: 12px 16px; border-radius: 4px; margin-bottom: 32px;
  font-size: .88rem; color: var(--text-muted);
}

/* ===== GAMES PAGE ===== */
.games-page-section { background: var(--dark); padding: 60px 24px; }
.game-full-card {
  background: var(--card-bg); border-radius: 16px;
  border: 1px solid rgba(108,43,217,.3); overflow: hidden;
  margin-bottom: 40px;
}
.game-full-header {
  background: linear-gradient(135deg, #1a0a3a, #0d1a3a);
  padding: 24px 28px; border-bottom: 1px solid rgba(108,43,217,.3);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.game-full-header h2 { font-size: 1.5rem; font-weight: 800; color: #fff; }
.game-full-header .badge {
  background: var(--gold); color: var(--dark);
  padding: 4px 14px; border-radius: 50px; font-size: .78rem; font-weight: 700;
}
.game-full-body { padding: 28px; }

/* ===== SLOT MACHINE ===== */
.slot-machine {
  background: linear-gradient(135deg, #1a0a3a, #0d1a3a);
  border-radius: 16px; padding: 28px; max-width: 520px; margin: 0 auto;
  border: 2px solid rgba(108,43,217,.5); box-shadow: 0 0 40px rgba(108,43,217,.3);
}
.slot-title { text-align: center; font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 20px; }
.slot-reels {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 20px;
}
.reel {
  width: 100px; height: 120px; background: #fff;
  border-radius: 10px; overflow: hidden; position: relative;
  border: 3px solid var(--gold); box-shadow: inset 0 0 10px rgba(0,0,0,.3);
}
.reel-inner {
  position: absolute; top: 0; left: 0; width: 100%;
  transition: top .6s cubic-bezier(.25,.46,.45,.94);
}
.reel-symbol {
  height: 120px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: #fff;
}
.reel-highlight {
  position: absolute; inset: 0; pointer-events: none;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, transparent 30%, transparent 70%, rgba(255,255,255,.4) 100%);
}
.slot-controls { text-align: center; }
.slot-info {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,.3); border-radius: 10px; padding: 12px 18px;
  margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.slot-info-item { text-align: center; }
.slot-info-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.slot-info-value { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.btn-spin {
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: #fff; padding: 16px 48px; border: none; border-radius: 50px;
  font-size: 1.1rem; font-weight: 800; cursor: pointer; transition: .2s;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(230,57,70,.4);
}
.btn-spin:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(230,57,70,.5); }
.btn-spin:disabled { opacity: .5; cursor: not-allowed; }
.slot-message {
  min-height: 36px; text-align: center; font-size: 1rem;
  font-weight: 700; color: var(--gold); margin-top: 14px;
  transition: .3s;
}

/* ===== WHEEL OF FORTUNE ===== */
.wheel-game {
  background: linear-gradient(135deg, #1a0a3a, #0d1a3a);
  border-radius: 16px; padding: 28px; max-width: 520px; margin: 0 auto;
  border: 2px solid rgba(108,43,217,.5); box-shadow: 0 0 40px rgba(108,43,217,.3);
}
.wheel-title { text-align: center; font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 20px; }
.wheel-container { position: relative; width: 320px; height: 320px; margin: 0 auto 24px; }
#wheel-canvas { border-radius: 50%; box-shadow: 0 0 30px rgba(108,43,217,.5); }
.wheel-pointer {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 36px solid var(--gold);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  z-index: 10;
}
.wheel-controls { text-align: center; }
.btn-spin-wheel {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; padding: 16px 48px; border: none; border-radius: 50px;
  font-size: 1.1rem; font-weight: 800; cursor: pointer; transition: .2s;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(108,43,217,.4);
}
.btn-spin-wheel:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(108,43,217,.55); }
.btn-spin-wheel:disabled { opacity: .5; cursor: not-allowed; }
.wheel-result {
  min-height: 36px; text-align: center; font-size: 1rem;
  font-weight: 700; color: var(--gold); margin-top: 14px;
}
.wheel-spins-info {
  text-align: center; font-size: .85rem; color: var(--text-muted); margin-top: 8px;
}

/* ===== TOKENS GAME ===== */
.tokens-game {
  background: linear-gradient(135deg, #1a0a3a, #0d1a3a);
  border-radius: 16px; padding: 28px; max-width: 520px; margin: 0 auto;
  border: 2px solid rgba(108,43,217,.5); box-shadow: 0 0 40px rgba(108,43,217,.3);
}
.tokens-title { text-align: center; font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.tokens-subtitle { text-align: center; font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; }
.tokens-board {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  margin-bottom: 20px;
}
.token-cell {
  aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.08);
  border: 2px solid rgba(108,43,217,.3); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; transition: .2s; user-select: none;
}
.token-cell:hover { border-color: var(--gold); background: rgba(255,215,0,.1); transform: scale(1.08); }
.token-cell.revealed { cursor: default; }
.token-cell.revealed:hover { transform: none; }
.token-cell.match { border-color: #4ade80; background: rgba(74,222,128,.15); animation: pulse-green .5s; }
.token-cell.no-match { border-color: #f87171; background: rgba(248,113,113,.1); }
@keyframes pulse-green { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.tokens-info {
  display: flex; justify-content: space-around; background: rgba(0,0,0,.3);
  border-radius: 10px; padding: 12px; margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.tokens-info-item { text-align: center; }
.tokens-info-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.tokens-info-value { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.tokens-controls { text-align: center; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-tokens-new {
  background: linear-gradient(135deg, #059669, #34d399);
  color: #fff; padding: 14px 32px; border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: .2s;
}
.btn-tokens-new:hover { opacity: .85; transform: translateY(-2px); }
.tokens-message {
  min-height: 36px; text-align: center; font-size: 1rem;
  font-weight: 700; color: var(--gold); margin-top: 14px;
}

/* ===== FOOTER ===== */
footer {
  background: #080514; border-top: 1px solid rgba(108,43,217,.3);
  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;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: var(--text-muted); transition: .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(108,43,217,.2); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--purple-light); }
.footer-disclaimer {
  font-size: .78rem; color: #6b5f8a; margin-top: 16px; line-height: 1.6;
  padding-top: 16px; border-top: 1px solid rgba(108,43,217,.1);
}
.responsible-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(108,43,217,.15); border: 1px solid rgba(108,43,217,.3);
  border-radius: 50px; padding: 5px 14px; font-size: .78rem; color: var(--text-muted);
  margin-top: 12px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 7000;
  background: rgba(0,0,0,.8); display: none;
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--dark2); border: 1px solid rgba(108,43,217,.4);
  border-radius: 18px; padding: 36px; max-width: 500px; width: 90%;
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.4rem; cursor: pointer; transition: .2s;
}
.modal-close:hover { color: #fff; }
.modal-box h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.modal-box p { color: var(--text-muted); margin-bottom: 20px; font-size: .92rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.6rem; }
  .slot-reels { gap: 8px; }
  .reel { width: 80px; height: 100px; }
  .reel-symbol { height: 100px; font-size: 2.4rem; }
  .wheel-container { width: 260px; height: 260px; }
}
@media (max-width: 480px) {
  .reel { width: 70px; }
  .wheel-container { width: 220px; height: 220px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .6s ease both; }
.fade-in-delay-1 { animation-delay: .1s; }
.fade-in-delay-2 { animation-delay: .2s; }
.fade-in-delay-3 { animation-delay: .3s; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 24px; background: rgba(108,43,217,.08);
  border-bottom: 1px solid rgba(108,43,217,.15);
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; font-size: .85rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--purple-light); }
.breadcrumb-inner span { margin: 0 6px; }
