/* ===== 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: #0d0d1a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: #f4a261; text-decoration: none; transition: color 0.3s; }
a:hover { color: #e63946; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: #e63946;
  --secondary: #f4a261;
  --accent: #2a9d8f;
  --gold: #ffd700;
  --dark: #0d0d1a;
  --dark2: #1a1a2e;
  --dark3: #16213e;
  --light: #e0e0e0;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(22,33,62,0.97);
  border-top: 2px solid var(--secondary);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9000;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.9rem; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--secondary); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-cookie-accept:hover { background: #21867a; }
.btn-cookie-decline {
  background: transparent;
  color: var(--light);
  border: 1px solid #555;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.btn-cookie-decline:hover { border-color: var(--secondary); }

/* ===== AGE POPUP ===== */
#age-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.age-popup-box {
  background: var(--dark2);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,215,0,0.2);
}
.age-popup-box .age-icon { font-size: 4rem; margin-bottom: 16px; }
.age-popup-box h2 { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.age-popup-box p { color: #aaa; margin-bottom: 28px; font-size: 0.95rem; }
.age-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-age-yes:hover { background: #c1121f; transform: scale(1.04); }
.btn-age-no {
  background: transparent;
  color: #aaa;
  border: 2px solid #555;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s;
}
.btn-age-no:hover { border-color: var(--secondary); color: var(--secondary); }

/* ===== HEADER / NAV ===== */
header {
  background: rgba(13,13,26,0.97);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 800;
  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.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--secondary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #c1121f; color: #fff !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: 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-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero p {
  font-size: 1.15rem;
  color: #ccc;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #c1121f; transform: translateY(-2px); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }

/* ===== SECTIONS ===== */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--secondary); }
.section-sub { color: #aaa; max-width: 600px; margin-bottom: 48px; font-size: 1rem; }

/* ===== GAMES SECTION ===== */
.games-section { background: var(--dark2); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.game-card {
  background: var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(230,57,70,0.2); }
.game-card-img { height: 200px; overflow: hidden; position: relative; }
.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.06); }
.game-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.game-card-body { padding: 24px; }
.game-card-body h3 { font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.game-card-body p { color: #999; font-size: 0.9rem; margin-bottom: 20px; }
.btn-play {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 28px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 0.95rem;
  display: inline-block;
}
.btn-play:hover { background: #21867a; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(230,57,70,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-text h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.feature-text p { color: #888; font-size: 0.88rem; }

/* ===== VENUES SECTION ===== */
.venues-section { background: var(--dark2); }
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.venue-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s;
}
.venue-card:hover { border-color: var(--secondary); }
.venue-card h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 8px; }
.venue-card .venue-city { color: var(--secondary); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.venue-card p { color: #888; font-size: 0.88rem; line-height: 1.6; }
.venue-card .venue-address { color: #aaa; font-size: 0.85rem; margin-top: 12px; display: flex; gap: 6px; align-items: flex-start; }

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner .section-title { margin-bottom: 12px; }
.newsletter-inner p { color: #aaa; margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--secondary); }
.newsletter-form input::placeholder { color: #666; }
.newsletter-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #c1121f; }
.newsletter-success {
  display: none;
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
  font-size: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { color: #fff; font-size: 1.3rem; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { color: var(--secondary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item p { color: #aaa; font-size: 0.9rem; }
.contact-form { background: var(--dark2); border-radius: var(--radius); padding: 36px; border: 1px solid rgba(255,255,255,0.07); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #ccc; font-size: 0.88rem; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  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(--secondary); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}
.form-submit:hover { background: #c1121f; transform: translateY(-2px); }
.form-success {
  display: none;
  background: rgba(42,157,143,0.15);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px;
  color: var(--accent);
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: #08080f;
  border-top: 2px solid rgba(255,255,255,0.06);
  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 .logo { margin-bottom: 16px; }
.footer-brand p { color: #666; font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #666; font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 16px;
}
.footer-bottom p { color: #444; font-size: 0.82rem; }
.footer-disclaimer { color: #333; font-size: 0.78rem; margin-top: 16px; line-height: 1.6; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: #555; font-size: 0.82rem; }
.footer-legal a:hover { color: var(--secondary); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== GAME MODAL ===== */
.game-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.game-modal.active { display: flex; }
.game-modal-box {
  background: var(--dark2);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.game-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.game-modal-header h3 { color: #fff; font-size: 1.2rem; }
.modal-close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--primary); }
.game-modal-body { padding: 28px; }

/* ===== WHEEL GAME ===== */
.wheel-container { text-align: center; }
.wheel-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto 24px;
}
#wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255,215,0,0.3);
  display: block;
  margin: 0 auto;
}
.wheel-pointer {
  position: absolute;
  top: -14px;
  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 4px rgba(0,0,0,0.5));
  z-index: 2;
}
.wheel-result {
  min-height: 40px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
#btn-spin {
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: #000;
  border: none;
  padding: 14px 48px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
#btn-spin:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 6px 28px rgba(255,215,0,0.5); }
#btn-spin:disabled { opacity: 0.5; cursor: not-allowed; }
.wheel-tokens {
  margin-top: 16px;
  color: #aaa;
  font-size: 0.9rem;
}
.wheel-tokens strong { color: var(--secondary); }

/* ===== SLOTS GAME ===== */
.slots-container { text-align: center; }
.slots-machine {
  background: linear-gradient(180deg, #1a0a2e 0%, #2d1b4e 100%);
  border: 3px solid var(--gold);
  border-radius: 16px;
  padding: 28px;
  display: inline-block;
  box-shadow: 0 0 40px rgba(255,215,0,0.2), inset 0 0 30px rgba(0,0,0,0.3);
  max-width: 100%;
}
.slots-title {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}
.slots-reels {
  display: flex;
  gap: 8px;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  border-radius: 10px;
  padding: 16px;
  border: 2px solid rgba(255,215,0,0.3);
  margin-bottom: 20px;
}
.reel {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  overflow: hidden;
  position: relative;
  border: 2px solid #ddd;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
}
.reel.spinning {
  animation: reelSpin 0.1s linear infinite;
}
@keyframes reelSpin {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.slots-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.slots-stat {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 8px;
  padding: 10px 18px;
  flex: 1;
  min-width: 100px;
}
.slots-stat-label { color: #888; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.slots-stat-val { color: var(--gold); font-size: 1.2rem; font-weight: 800; }
.slots-result {
  min-height: 36px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(255,215,0,0.4);
}
#btn-slots-spin {
  background: linear-gradient(135deg, var(--primary), #c1121f);
  color: #fff;
  border: none;
  padding: 14px 48px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
#btn-slots-spin:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 6px 28px rgba(230,57,70,0.6); }
#btn-slots-spin:disabled { opacity: 0.5; cursor: not-allowed; }
.slots-paytable {
  margin-top: 24px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
}
.slots-paytable h4 { color: var(--secondary); font-size: 0.85rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.paytable-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; }
.paytable-row:last-child { border-bottom: none; }
.paytable-symbols { font-size: 1.1rem; letter-spacing: 2px; }
.paytable-prize { color: var(--gold); font-weight: 700; }

/* ===== TOKENS GAME ===== */
.tokens-container { text-align: center; }
.tokens-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto 24px;
  max-width: 400px;
}
.token-card {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2d1b4e, #1a0a2e);
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.token-card:hover { transform: scale(1.06); border-color: var(--gold); }
.token-card.flipped { background: linear-gradient(135deg, #1a3a2e, #0d2a1e); border-color: var(--accent); }
.token-card.matched { background: linear-gradient(135deg, #1a3a2e, #0d2a1e); border-color: var(--accent); opacity: 0.7; cursor: default; }
.token-card.hidden-face { font-size: 0; background: linear-gradient(135deg, #2d1b4e, #1a0a2e); }
.token-card.hidden-face::after { content: '🎴'; font-size: 1.8rem; }
.tokens-info { display: flex; justify-content: center; gap: 32px; margin-bottom: 20px; flex-wrap: wrap; }
.tokens-stat { text-align: center; }
.tokens-stat-val { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.tokens-stat-label { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.tokens-result { min-height: 36px; font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 16px; }
#btn-tokens-restart {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
#btn-tokens-restart:hover { background: #21867a; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 80px 24px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.page-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; margin-bottom: 12px; }
.page-header p { color: #888; font-size: 1rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; font-size: 0.85rem; }
.breadcrumb a { color: var(--secondary); }
.breadcrumb span { color: #555; }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.policy-content h2 { color: var(--secondary); font-size: 1.4rem; margin: 36px 0 14px; }
.policy-content h3 { color: #ddd; font-size: 1.1rem; margin: 24px 0 10px; }
.policy-content p { color: #aaa; margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { margin: 0 0 14px 20px; list-style: disc; }
.policy-content ul li { color: #aaa; margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--secondary); }
.policy-meta { background: var(--dark2); border-radius: 8px; padding: 16px 20px; margin-bottom: 36px; font-size: 0.88rem; color: #888; border-left: 3px solid var(--secondary); }

/* ===== RESPONSIBLE GAMING ===== */
.rg-section { background: var(--dark); }
.rg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.rg-card { background: var(--dark2); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,0.07); }
.rg-card .rg-icon { font-size: 2rem; margin-bottom: 14px; }
.rg-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.rg-card p { color: #888; font-size: 0.88rem; line-height: 1.7; }
.helpline-box {
  background: linear-gradient(135deg, rgba(230,57,70,0.1), rgba(244,162,97,0.1));
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}
.helpline-box h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.helpline-box p { color: #aaa; margin-bottom: 20px; }
.helpline-number { font-size: 2rem; font-weight: 800; color: var(--gold); }

/* ===== 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: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(13,13,26,0.98); padding: 20px 24px; gap: 16px; border-bottom: 2px solid var(--primary); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tokens-board { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .reel { width: 64px; height: 64px; font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 24px; }
  .age-popup-box { padding: 32px 24px; }
  .slots-reels { gap: 6px; }
  .reel { width: 56px; height: 56px; font-size: 1.8rem; }
}

/* ===== WIN ANIMATION ===== */
@keyframes winPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.win-anim { animation: winPulse 0.5s ease 3; }

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 700;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(230,57,70,0.4);
}
#scroll-top:hover { background: #c1121f; transform: translateY(-3px); }
#scroll-top.visible { display: flex; }
