/* ===== NOVA ARCADE - Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --dark: #0f0a1e;
  --dark2: #1a1035;
  --dark3: #251848;
  --text: #e2d9f3;
  --text-muted: #9d8ec4;
  --white: #ffffff;
  --danger: #ef4444;
  --success: #10b981;
  --border: rgba(124, 58, 237, 0.3);
  --radius: 12px;
  --shadow: 0 8px 32px rgba(124, 58, 237, 0.25);
  --glow: 0 0 20px rgba(124, 58, 237, 0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--primary-light); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 10, 30, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  box-shadow: var(--glow);
}

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-text span { color: var(--gold); }

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}

nav ul li a {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
  background: rgba(124, 58, 237, 0.3);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: var(--white) !important;
  box-shadow: var(--glow);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  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-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,10,30,0.85) 0%, rgba(124,58,237,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 20px 80px;
  margin: 0 auto 0 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 560px;
}

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.15);
  color: var(--white);
  border-color: var(--primary-light);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat { text-align: left; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ===== GAMES SECTION ===== */
.games-section { background: var(--dark2); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.game-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.game-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.game-card-body { padding: 20px; }
.game-card-body h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.game-card-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }

.game-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.tag-free { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16,185,129,0.3); }
.tag-hot { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.tag-new { background: rgba(245, 158, 11, 0.15); color: var(--gold); border: 1px solid rgba(245,158,11,0.3); }

/* ===== FEATURES ===== */
.features-section { background: var(--dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: var(--glow);
}

.feature-card h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; }

/* ===== 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: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img { width: 100%; height: 400px; object-fit: cover; }

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.about-content h2 span { color: var(--gold); }

.about-content p { color: var(--text-muted); margin-bottom: 16px; }

.about-list { list-style: none; margin: 24px 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== LOCATIONS ===== */
.locations-section { background: var(--dark); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.location-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.location-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.location-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 4px; }
.location-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 11px;
  color: var(--primary-light);
  margin-bottom: 12px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.newsletter-text h2 span { color: var(--gold); }
.newsletter-text p { color: var(--text-muted); }

.newsletter-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(124, 58, 237, 0.08);
}

.form-control::placeholder { color: var(--text-muted); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  padding: 16px;
  color: #10b981;
  text-align: center;
  font-weight: 600;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.contact-info h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.contact-item-text p { color: var(--text-muted); font-size: 13px; }

.contact-form-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 24px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.policy-content h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.policy-content h3 { font-size: 1.2rem; color: var(--primary-light); margin: 24px 0 8px; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { color: var(--text-muted); padding-left: 24px; margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 6px; line-height: 1.8; }
.policy-content a { color: var(--primary-light); }
.policy-content a:hover { color: var(--gold); }

.policy-last-updated {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p { color: var(--text-muted); font-size: 13px; margin: 16px 0; max-width: 280px; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 13px; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--text-muted); font-size: 12px; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

.age-disclaimer {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 24px;
  font-size: 12px;
  color: #fca5a5;
  text-align: center;
}

/* ===== 18+ POPUP ===== */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 25, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-box {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.age-gate-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
}

.age-gate-box h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.age-gate-box h2 span { color: var(--gold); }

.age-gate-box p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.age-gate-buttons { display: flex; gap: 16px; justify-content: center; }

.age-gate-buttons .btn { flex: 1; justify-content: center; }

.age-gate-note {
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: var(--dark3);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text { font-size: 13px; color: var(--text-muted); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--primary-light); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

.btn-sm { padding: 8px 20px; font-size: 13px; }

/* ===== GAMES PAGE ===== */
.game-container {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}

.game-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark3));
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.game-header h2 { font-size: 1.6rem; color: var(--white); }
.game-header p { color: var(--text-muted); font-size: 13px; }

.game-body { padding: 32px; }

/* SLOT MACHINE */
.slot-machine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.slot-display {
  background: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 12px;
  box-shadow: inset 0 0 30px rgba(124,58,237,0.2), var(--glow);
}

.slot-reel {
  width: 90px; height: 90px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  position: relative;
}

.slot-reel.spinning {
  animation: spinReel 0.1s linear infinite;
}

@keyframes spinReel {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.slot-info {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.slot-tokens {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
}

.slot-tokens .label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.slot-tokens .value { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }

.slot-message {
  min-height: 40px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  padding: 8px 20px;
  border-radius: 8px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
}

.slot-paytable {
  width: 100%;
  max-width: 500px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.slot-paytable h4 { font-size: 1rem; color: var(--text-muted); margin-bottom: 10px; text-align: center; }
.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: 13px;
}
.paytable-row:last-child { border-bottom: none; }
.paytable-row .symbols { font-size: 18px; letter-spacing: 4px; }
.paytable-row .reward { color: var(--gold); font-weight: 700; }

/* WHEEL */
.wheel-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.wheel-wrapper {
  position: relative;
  width: 340px; height: 340px;
}

.wheel-pointer {
  position: absolute;
  top: -16px;
  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);
  z-index: 10;
  filter: drop-shadow(0 2px 6px rgba(245,158,11,0.7));
}

#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(124,58,237,0.5), 0 0 80px rgba(124,58,237,0.2);
  display: block;
}

.wheel-info {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.wheel-result {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  padding: 10px 24px;
  border-radius: 8px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  min-height: 44px;
}

/* TOKENS GAME */
.tokens-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.tokens-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 420px;
  width: 100%;
}

.token-card {
  aspect-ratio: 1;
  background: var(--dark2);
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}

.token-card:hover:not(.revealed) {
  border-color: var(--primary-light);
  background: rgba(124,58,237,0.1);
  transform: scale(1.05);
}

.token-card.revealed {
  cursor: default;
  animation: revealCard 0.3s ease;
}

@keyframes revealCard {
  from { transform: rotateY(90deg); }
  to { transform: rotateY(0); }
}

.token-card.revealed.win { border-color: var(--gold); background: rgba(245,158,11,0.15); }
.token-card.revealed.lose { border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.08); opacity: 0.6; }

.tokens-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.tokens-stat {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 24px;
  text-align: center;
}

.tokens-stat .label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.tokens-stat .value { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--white); }
.tokens-stat .value.gold { color: var(--gold); }

.tokens-message {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-light);
  text-align: center;
  min-height: 36px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(15,10,30,0.98); padding: 20px; gap: 4px; border-bottom: 1px solid var(--border); }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .age-gate-buttons { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .slot-display { gap: 8px; }
  .slot-reel { width: 70px; height: 70px; font-size: 36px; }
  .wheel-wrapper { width: 280px; height: 280px; }
}

@media (max-width: 480px) {
  .slot-reel { width: 60px; height: 60px; font-size: 28px; }
  .tokens-board { grid-template-columns: repeat(4, 1fr); }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.hidden { display: none !important; }

.glow-text {
  text-shadow: 0 0 20px rgba(124,58,237,0.6);
}

.neon-border {
  border: 1px solid var(--primary);
  box-shadow: 0 0 10px rgba(124,58,237,0.3), inset 0 0 10px rgba(124,58,237,0.1);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
