@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-deep: #060c17;
  --bg-base: #0a1220;
  --bg-surface: #0f1c30;
  --bg-card: #142238;
  --bg-card-hover: #1a2d47;
  --border: #1e3354;
  --border-light: #253f66;

  --gold: #f5a623;
  --gold-dark: #d4891a;
  --gold-light: #fbbf24;
  --blue: #2196f3;
  --blue-dark: #1565c0;
  --green: #00c853;
  --green-dark: #00943d;
  --red: #ef4444;
  --red-dark: #b91c1c;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #4a6480;

  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 24px rgba(245,166,35,0.25);
  --shadow-blue: 0 0 24px rgba(33,150,243,0.25);

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

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

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(245,166,35,0.45); }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(33,150,243,0.45); }

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
}
.btn-green:hover { transform: translateY(-2px); }

.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
}
.btn-red:hover { transform: translateY(-2px); }

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 40px; font-size: 1.125rem; }
.btn-full { width: 100%; justify-content: center; }

.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ── AGE MODAL ─────────────────────────────── */
#ageModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 12, 23, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.age-modal-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(245,166,35,0.1);
  animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.age-modal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
}

.age-modal-box h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.age-modal-box p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.age-check-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: border-color var(--transition);
  text-align: left;
}
.age-check-label:hover { border-color: var(--gold); }
.age-check-label.checked { border-color: var(--gold); background: rgba(245,166,35,0.08); }

.age-checkbox-visual {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-top: 1px;
}

.age-check-label.checked .age-checkbox-visual {
  background: var(--gold);
  border-color: var(--gold);
}

.age-checkbox-visual::after {
  content: '';
  width: 5px;
  height: 10px;
  border: 2px solid #0a0a0a;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform var(--transition);
  margin-top: -2px;
}

.age-check-label.checked .age-checkbox-visual::after { transform: rotate(45deg) scale(1); }

.age-check-label span { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.age-check-label span strong { color: var(--text-primary); }

#ageConfirmBtn { transition: all var(--transition); }
#ageConfirmBtn:not(:disabled) { opacity: 1; }

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

/* ── COOKIE CONSENT ────────────────────────── */
#cookieBanner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 9000;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 24px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-text { flex: 1; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.cookie-text strong { color: var(--text-primary); }
.cookie-text a { color: var(--gold); text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

#cookieBanner.hidden { display: none; }

/* ── HEADER / NAV ──────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 0;
  transition: all var(--transition-slow);
}

.site-header.scrolled {
  background: rgba(6,12,23,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-diamond {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #0a0a0a;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-gold);
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}
.logo-name span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(245,166,35,0.08); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-balance {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.nav-balance-icon { font-size: 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 799;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--gold); background: rgba(245,166,35,0.08); }

/* ── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245,166,35,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(33,150,243,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,51,84,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,51,84,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, transparent 30%, black 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 100px;
  padding: 6px 18px 6px 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.15;
  pointer-events: none;
}

.hero-cards-float {
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  pointer-events: none;
}

.hero-card-float {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  animation: floatCard 3s ease-in-out infinite;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}

.hero-card-float:nth-child(2) { animation-delay: 0.5s; }
.hero-card-float:nth-child(3) { animation-delay: 1s; }
.hero-card-float:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-card-float .card-icon { font-size: 2.5rem; margin-bottom: 8px; }
.hero-card-float .card-name { font-family: var(--font-heading); font-size: 0.875rem; color: var(--text-secondary); font-weight: 600; }

/* ── SECTION COMMON ────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag::before, .section-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title .gold { color: var(--gold); }

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
}

.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }

/* ── GAMES SECTION ─────────────────────────── */
.games-section { background: var(--bg-base); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.game-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
  group: true;
}
.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.game-card-banner {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-banner-slots { background: linear-gradient(135deg, #1a0a2e 0%, #0a1628 50%, #1a2a0a 100%); }
.game-banner-blackjack { background: linear-gradient(135deg, #0a1a0a 0%, #0a1628 50%, #1a0a0a 100%); }
.game-banner-roulette { background: linear-gradient(135deg, #1a0808 0%, #0a1628 50%, #081a14 100%); }

.game-banner-icon {
  font-size: 5rem;
  animation: iconFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(245,166,35,0.4));
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.game-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-card-body { padding: 28px; }
.game-card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.game-card-body p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

.game-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.game-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.game-meta-dot { width: 6px; height: 6px; border-radius: 50%; }
.game-meta-dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.game-meta-dot.gold { background: var(--gold); box-shadow: 0 0 6px var(--gold); }

/* ── BENEFITS SECTION ──────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-slow);
}
.benefit-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.benefit-icon.gold { background: rgba(245,166,35,0.12); }
.benefit-icon.blue { background: rgba(33,150,243,0.12); }
.benefit-icon.green { background: rgba(0,200,83,0.12); }
.benefit-icon.red { background: rgba(239,68,68,0.12); }

.benefit-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ── HOW IT WORKS STRIP ────────────────────── */
.steps-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 56px;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--green));
  opacity: 0.3;
  pointer-events: none;
}

.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}

.step-item h4 { font-size: 1.125rem; margin-bottom: 8px; }
.step-item p { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.6; }

/* ── COMMUNITY PROMO ───────────────────────── */
.community-promo {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.community-promo::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.promo-content h2 { font-size: 2.25rem; margin-bottom: 12px; }
.promo-content p { color: var(--text-secondary); max-width: 460px; line-height: 1.7; }
.promo-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── FOOTER ────────────────────────────────── */
.site-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo-name { font-size: 1.375rem; display: block; margin-bottom: 4px; margin-top: 12px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin-top: 12px; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-disclaimer {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
}

.footer-disclaimer-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.footer-disclaimer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-disclaimer a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-age-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--red);
}

/* ── PAGE HERO (subpages) ──────────────────── */
.page-hero {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(245,166,35,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.0625rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── CONTENT BLOCKS ────────────────────────── */
.content-section { padding: 80px 0; }
.content-section + .content-section { padding-top: 0; }

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

.content-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.content-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.content-card p, .content-card li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.content-card ul { padding-left: 16px; }
.content-card li { list-style: disc; }
.content-card li::marker { color: var(--gold); }

.content-prose h2 {
  font-size: 1.75rem;
  margin: 48px 0 16px;
  color: var(--text-primary);
}
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--gold); }
.content-prose p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 16px; }
.content-prose ul, .content-prose ol { padding-left: 24px; margin-bottom: 16px; }
.content-prose li { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 6px; }
.content-prose li::marker { color: var(--gold); }
.content-prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.content-prose strong { color: var(--text-primary); }

/* ── FAQ ACCORDION ─────────────────────────── */
.faq-list { margin-top: 48px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }

.faq-trigger {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  text-align: left;
}

.faq-trigger h4 {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.faq-chevron {
  width: 24px;
  height: 24px;
  background: var(--bg-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--gold); color: #0a0a0a; }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--bg-card);
}
.faq-body-inner { padding: 0 24px 20px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.8; }
.faq-item.open .faq-body { max-height: 400px; }

/* ── COMMUNITY FEED ────────────────────────── */
.community-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.feed-post {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.feed-post:hover { border-color: var(--border-light); }

.feed-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.feed-user strong { display: block; font-size: 0.9375rem; }
.feed-user span { font-size: 0.8125rem; color: var(--text-muted); }

.feed-post p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }

.feed-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.feed-reaction { cursor: pointer; transition: color var(--transition); }
.feed-reaction:hover { color: var(--gold); }

/* ── LEADERBOARD ───────────────────────────── */
.leaderboard-table {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}

.lb-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: var(--bg-surface); }

.lb-row.lb-header { background: var(--bg-surface); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }

.lb-rank { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text-muted); text-align: center; }
.lb-rank.gold-rank { color: var(--gold); }
.lb-rank.silver-rank { color: #c0c0c0; }
.lb-rank.bronze-rank { color: #cd7f32; }

.lb-player { display: flex; align-items: center; gap: 12px; }
.lb-player strong { font-size: 0.9375rem; }
.lb-player span { font-size: 0.8125rem; color: var(--text-muted); }

.lb-score { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--gold); }
.lb-game { font-size: 0.8125rem; color: var(--text-muted); }

/* ── INFO BOX ──────────────────────────────── */
.info-box {
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
}
.info-box.info-warning { background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.3); }
.info-box.info-danger { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.3); }
.info-box.info-success { background: rgba(0,200,83,0.08); border: 1px solid rgba(0,200,83,0.3); }

.info-box-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.info-warning .info-box-title { color: var(--gold); }
.info-danger .info-box-title { color: var(--red); }
.info-success .info-box-title { color: var(--green); }
.info-box p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* ── RESPONSIBLE GAMING ────────────────────── */
.rg-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.rg-resource {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.rg-resource:hover { border-color: var(--gold); transform: translateY(-4px); }

.rg-resource-icon { font-size: 2.5rem; margin-bottom: 16px; }
.rg-resource h4 { font-size: 1.125rem; margin-bottom: 8px; }
.rg-resource p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.rg-resource a.btn { display: inline-flex; }

/* ── GAME PAGE ─────────────────────────────── */
.game-page {
  min-height: 100vh;
  padding: 100px 0 64px;
  background: var(--bg-deep);
}

.game-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.game-panel {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.game-panel-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-panel-title { font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.game-panel-title span { font-size: 1.5rem; }

.game-balance-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
}

.balance-item { text-align: center; }
.balance-item .val { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--gold); }
.balance-item .lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.game-panel-body { padding: 32px; }

.game-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sidebar-card-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.sidebar-card-body { padding: 20px; }

/* ── SLOTS SPECIFIC ────────────────────────── */
.slots-machine {
  background: var(--bg-deep);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1.5px solid var(--border);
  margin-bottom: 24px;
}

.slots-reels {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.reel {
  width: 100px;
  height: 120px;
  background: var(--bg-base);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-window {
  font-size: 3.5rem;
  transition: transform 0.05s;
  user-select: none;
}

.reel.spinning .reel-window {
  animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-120px); }
}

.slots-win-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.slots-win-line.active { opacity: 1; }

.slots-result {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  min-height: 36px;
  transition: all 0.3s;
}
.slots-result.win { color: var(--gold); animation: winPulse 0.5s ease; }
.slots-result.lose { color: var(--text-muted); }

@keyframes winPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.bet-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bet-selector {
  display: flex;
  gap: 8px;
}

.bet-btn {
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.bet-btn:hover { border-color: var(--gold); color: var(--gold); }
.bet-btn.active { background: rgba(245,166,35,0.12); border-color: var(--gold); color: var(--gold); }

/* ── BLACKJACK SPECIFIC ────────────────────── */
.blackjack-table {
  background: radial-gradient(ellipse at center, #0d2a14 0%, #051208 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  min-height: 360px;
  border: 2px solid #1a4025;
  margin-bottom: 24px;
  position: relative;
}

.bj-zone { margin-bottom: 32px; }
.bj-zone-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.bj-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  background: rgba(0,0,0,0.5);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 0 10px;
  margin-left: 12px;
}
.bj-score.bust { background: rgba(239,68,68,0.3); color: var(--red); }
.bj-score.blackjack { background: rgba(245,166,35,0.3); color: var(--gold); }

.cards-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 100px;
  align-items: center;
}

.playing-card {
  width: 68px;
  height: 96px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: default;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  animation: cardDeal 0.3s ease;
  position: relative;
  overflow: hidden;
}

@keyframes cardDeal {
  from { transform: translateY(-30px) rotate(-5deg); opacity: 0; }
  to   { transform: translateY(0) rotate(0); opacity: 1; }
}

.playing-card.red { color: #e53e3e; }
.playing-card.black { color: #1a1a1a; }
.playing-card.card-back {
  background: linear-gradient(135deg, #1565c0 25%, #0d47a1 25%, #0d47a1 50%, #1565c0 50%, #1565c0 75%, #0d47a1 75%);
  background-size: 10px 10px;
  color: transparent;
}

.card-rank-tl {
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1;
}
.card-suit-tl {
  position: absolute;
  top: 18px;
  left: 8px;
  font-size: 0.75rem;
  line-height: 1;
}

.card-center { font-size: 2rem; }

.bj-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 24px 0;
}

.bj-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.bj-status {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bj-status.win { color: var(--gold); }
.bj-status.lose { color: var(--red); }
.bj-status.push { color: var(--blue); }

/* ── ROULETTE SPECIFIC ─────────────────────── */
.roulette-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.roulette-wheel-wrap {
  text-align: center;
}

.roulette-wheel {
  width: 280px;
  height: 280px;
  margin: 0 auto 20px;
  position: relative;
}

.wheel-svg {
  width: 100%;
  height: 100%;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 24px solid var(--gold);
  filter: drop-shadow(0 2px 4px rgba(245,166,35,0.5));
  z-index: 2;
}

.roulette-result-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.roulette-result-num .result-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.roulette-betting-grid {
  display: grid;
  gap: 8px;
}

.roulette-quick-bets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.roulette-bet-btn {
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.roulette-bet-btn:hover { border-color: var(--border-light); color: var(--text-primary); }
.roulette-bet-btn.selected { border-color: var(--gold) !important; background: rgba(245,166,35,0.12) !important; color: var(--gold) !important; }

.roulette-bet-btn.red-bet { border-color: rgba(239,68,68,0.3); }
.roulette-bet-btn.red-bet:hover, .roulette-bet-btn.red-bet.selected { border-color: var(--red) !important; background: rgba(239,68,68,0.12) !important; color: var(--red) !important; }

.roulette-bet-btn.black-bet { border-color: rgba(100,116,128,0.3); }

.roulette-num-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.roulette-num {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  user-select: none;
}
.roulette-num.zero { background: rgba(0,200,83,0.15); color: var(--green); }
.roulette-num.red-num { background: rgba(239,68,68,0.15); color: #fca5a5; }
.roulette-num.black-num { background: rgba(100,116,128,0.15); color: var(--text-secondary); }
.roulette-num:hover { border-color: var(--border-light); transform: scale(1.1); }
.roulette-num.selected { border-color: var(--gold) !important; background: rgba(245,166,35,0.15) !important; color: var(--gold) !important; }

/* ── WIN ANIMATION ─────────────────────────── */
.win-flash {
  animation: winFlash 0.6s ease;
}

@keyframes winFlash {
  0%, 100% { box-shadow: none; }
  30% { box-shadow: 0 0 60px rgba(245,166,35,0.6); }
}

/* ── CHIP SELECTOR ─────────────────────────── */
.chip-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.chip:hover { transform: scale(1.15) translateY(-2px); }
.chip.active { transform: scale(1.2) translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }

.chip-10 { border-color: #3b82f6; color: #3b82f6; background: rgba(59,130,246,0.1); }
.chip-25 { border-color: #10b981; color: #10b981; background: rgba(16,185,129,0.1); }
.chip-50 { border-color: #f59e0b; color: #f59e0b; background: rgba(245,158,11,0.1); }
.chip-100 { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,0.1); }
.chip-250 { border-color: #8b5cf6; color: #8b5cf6; background: rgba(139,92,246,0.1); }

/* ── HISTORY LOG ───────────────────────────── */
.history-log { max-height: 200px; overflow-y: auto; }

.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8125rem;
}
.history-item:last-child { border-bottom: none; }
.history-item .h-game { color: var(--text-muted); }
.history-item .h-result.win { color: var(--green); font-weight: 600; }
.history-item .h-result.lose { color: var(--red); font-weight: 600; }

/* ── TOAST ─────────────────────────────────── */
#toastContainer {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  animation: toastIn 0.3s ease;
  max-width: 300px;
  pointer-events: all;
}
.toast.toast-win { border-color: var(--gold); background: rgba(245,166,35,0.1); color: var(--gold); }
.toast.toast-lose { border-color: rgba(239,68,68,0.4); }
.toast.toast-out { animation: toastOut 0.3s ease forwards; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-cards-float { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-connector { display: none; }
  .game-layout { grid-template-columns: 1fr; }
  .roulette-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .nav-balance, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .games-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .community-promo { flex-direction: column; padding: 40px 28px; }
  .promo-actions { flex-direction: column; width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .age-modal-box { padding: 40px 28px; }
  .cookie-actions { flex-direction: column; }
  #cookieBanner { flex-direction: column; gap: 16px; }
  .community-feed { grid-template-columns: 1fr; }
  .content-grid-2 { grid-template-columns: 1fr; }
  .rg-resources { grid-template-columns: 1fr; }
  .bj-actions { justify-content: center; }
  .hero-stats { gap: 24px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .roulette-num-grid { grid-template-columns: repeat(4, 1fr); }
  .slots-reels { gap: 8px; }
  .reel { width: 80px; }
}
