/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red-50: #fff5f5;
  --red-100: #ffe0e0;
  --red-200: #ffb3b3;
  --red-400: #f05050;
  --red-500: #e03030;
  --red-600: #c82020;
  --red-700: #a31515;
  --red-800: #7a0e0e;

  --gold-100: #fffbeb;
  --gold-200: #fef3c7;
  --gold-300: #fde68a;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;

  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --green-400: #34d399;
  --green-500: #10b981;
  --green-600: #059669;
  --green-700: #047857;

  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;

  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;

  --amber-400: #fbbf24;
  --amber-500: #f59e0b;

  --orange-400: #fb923c;
  --orange-500: #f97316;

  --bg-primary: #0d0f14;
  --bg-secondary: #13161e;
  --bg-card: #1a1d27;
  --bg-card-hover: #1e2230;
  --surface: #232736;
  --surface-2: #2a2f42;

  --text-primary: #f0f2f8;
  --text-secondary: #a0a8c0;
  --text-muted: #6b7280;

  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.12);

  --accent: #e03030;
  --accent-hover: #c82020;
  --accent-gold: #f59e0b;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.7);

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold); }

img { max-width: 100%; }

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

/* === AGE MODAL === */
.age-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.age-modal-overlay.hidden { display: none; }

.age-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-modal-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.1rem;
}

.age-modal-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.5rem;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(224,48,48,0.4);
}

.age-modal h2 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; margin-bottom: 12px; }
.age-modal p { color: var(--text-secondary); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.6; }
.age-modal-sub { font-size: 0.85rem !important; color: var(--text-muted) !important; }

.age-checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  text-align: left; cursor: pointer;
  background: var(--surface); border-radius: var(--radius-md);
  padding: 14px; margin: 20px 0;
  font-size: 0.875rem; color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.age-checkbox-label:hover { border-color: var(--red-500); }

.age-checkbox-label input { display: none; }

.age-checkbox-custom {
  width: 20px; height: 20px; min-width: 20px;
  border: 2px solid var(--neutral-500);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); margin-top: 1px;
}

.age-checkbox-label input:checked + .age-checkbox-custom {
  background: var(--red-500); border-color: var(--red-500);
}

.age-checkbox-label input:checked + .age-checkbox-custom::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid white;
  border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

.age-checkbox-label a { color: var(--accent-gold); text-decoration: underline; }

.age-modal-btn {
  width: 100%; padding: 14px; font-size: 1rem;
  margin-bottom: 16px;
  opacity: 0.5; cursor: not-allowed;
  transition: all var(--transition);
}
.age-modal-btn.active { opacity: 1; cursor: pointer; }

.age-modal-footer { font-size: 0.8rem; color: var(--text-muted); }
.age-modal-footer a { color: var(--text-muted); text-decoration: underline; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: 16px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-banner.hidden { display: none; }

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

.cookie-content p { color: var(--text-secondary); font-size: 0.875rem; }
.cookie-content a { color: var(--accent-gold); text-decoration: underline; }

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

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 15, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: var(--text-primary) !important;
}

.logo-maple { color: var(--red-500); font-size: 1.2em; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
  transition: all var(--transition);
}

.nav-links a:hover { color: var(--text-primary); background: var(--surface); }

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

.coin-display {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface); border-radius: var(--radius-full);
  padding: 6px 14px; font-size: 0.875rem; font-weight: 600;
  color: var(--gold-400); border: 1px solid rgba(245,158,11,0.2);
}

.coin-display svg circle { fill: var(--gold-400); }

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

.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all var(--transition);
}

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: white; border: none; border-radius: var(--radius-sm);
  padding: 12px 24px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 2px 12px rgba(224,48,48,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-400), var(--red-600));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(224,48,48,0.4);
  color: white;
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 12px 24px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}

.btn-outline:hover {
  background: var(--surface); border-color: var(--text-secondary);
  color: var(--text-primary);
}

.btn-outline-light {
  background: rgba(255,255,255,0.1); color: white;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: var(--radius-sm);
  padding: 12px 24px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; justify-content: center;
}

.btn-outline-light:hover { background: rgba(255,255,255,0.2); color: white; }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.btn-primary-sm {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: white; border: none; border-radius: var(--radius-sm);
  padding: 8px 18px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}

.btn-primary-sm:hover { background: linear-gradient(135deg, var(--red-400), var(--red-600)); color: white; }

.btn-outline-sm {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 8px 18px; font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}

.btn-outline-sm:hover { background: var(--surface); color: var(--text-primary); }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0d0f14 0%, #1a0808 50%, #0d0f14 100%);
  padding-top: 80px;
}

.hero-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}

.hero-particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,48,48,0.15), transparent 70%);
  animation: floatParticle linear infinite;
}

.p1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-duration: 20s; }
.p2 { width: 300px; height: 300px; bottom: 100px; left: -50px; animation-duration: 25s; animation-delay: -5s; background: radial-gradient(circle, rgba(245,158,11,0.1), transparent 70%); }
.p3 { width: 200px; height: 200px; top: 40%; right: 20%; animation-duration: 18s; animation-delay: -10s; }
.p4 { width: 150px; height: 150px; top: 20%; left: 30%; animation-duration: 22s; animation-delay: -8s; background: radial-gradient(circle, rgba(52,211,153,0.08), transparent 70%); }
.p5 { width: 250px; height: 250px; bottom: 20%; right: 30%; animation-duration: 30s; animation-delay: -15s; background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%); }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(20px) scale(0.95); }
}

.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  position: relative; z-index: 1;
  padding-bottom: 80px;
}

.hero-content {}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,48,48,0.15); border: 1px solid rgba(224,48,48,0.3);
  border-radius: var(--radius-full); padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--red-400);
  margin-bottom: 24px; letter-spacing: 0.05em; text-transform: uppercase;
}

.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-400); animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f2f8 50%, var(--gold-300) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 36px; max-width: 500px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 24px;
  width: fit-content;
}

.stat-item { text-align: center; padding: 0 24px; }
.stat-number {
  display: block; font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.5rem; color: var(--text-primary);
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.hero-card-stack { position: relative; width: 300px; height: 320px; }

.hero-card {
  position: absolute;
  width: 130px; height: 180px;
  background: white; border-radius: 12px;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 12px; box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.hc1 { top: 20px; left: 20px; transform: rotate(-12deg); z-index: 1; }
.hc2 { top: 40px; left: 90px; transform: rotate(3deg); z-index: 2; }
.hc3 { top: 70px; left: 155px; transform: rotate(10deg); z-index: 3; }

.hero-card-stack:hover .hc1 { transform: rotate(-20deg) translateY(-10px); }
.hero-card-stack:hover .hc2 { transform: rotate(0deg) translateY(-15px); }
.hero-card-stack:hover .hc3 { transform: rotate(15deg) translateY(-8px); }

.hc-suit { font-size: 2rem; line-height: 1; }
.hc-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; color: #1a1a1a; }
.red { color: #e03030 !important; }

.hero-chips {
  position: absolute; bottom: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 8px;
}

.chip {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.75rem;
  border: 4px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-md);
  animation: chipFloat ease-in-out infinite alternate;
}

.chip-red { background: var(--red-500); color: white; animation-duration: 2s; }
.chip-blue { background: var(--blue-500); color: white; animation-duration: 2.5s; animation-delay: -0.5s; }
.chip-gold { background: var(--gold-500); color: #1a1a1a; animation-duration: 3s; animation-delay: -1s; }

@keyframes chipFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
}

.hero-wave svg { display: block; width: 100%; }

/* === SECTION COMMON === */
.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-full); padding: 5px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--gold-400);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 14px;
}

.section-sub { color: var(--text-secondary); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* === GAMES === */
.games-section { padding: 100px 0; background: var(--bg-primary); }

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

.game-card {
  position: relative; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden; transition: all 0.3s ease;
  display: flex; flex-direction: column;
}

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

.game-card.featured {
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 0 30px rgba(245,158,11,0.1);
}

.game-featured-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #1a1a1a; font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-full);
}

.game-card-bg {
  height: 160px; position: relative; overflow: hidden;
}

.bg-slots { background: linear-gradient(135deg, #0d1a2e 0%, #1a3a5c 50%, #0a2040 100%); }
.bg-blackjack { background: linear-gradient(135deg, #0a2a1a 0%, #1a4a2a 50%, #0a2010 100%); }
.bg-roulette { background: linear-gradient(135deg, #2a0a0a 0%, #4a1a0a 50%, #2a0a0a 100%); }

.bg-slots::after {
  content: '🎰'; font-size: 5rem; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.4; filter: grayscale(0.3);
}

.bg-blackjack::after {
  content: '♠'; font-size: 7rem; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.15);
}

.bg-roulette::after {
  content: '🎡'; font-size: 5rem; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.4;
}

.game-card-content { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

.game-icon { font-size: 2rem; }

.game-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1.2rem;
}

.game-card-content p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; flex: 1; }

.game-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.tag {
  font-size: 0.75rem; font-weight: 500;
  background: var(--surface); color: var(--text-secondary);
  padding: 3px 10px; border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.game-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border);
}

.game-rtp { font-size: 0.8rem; color: var(--green-400); font-weight: 600; }

.games-disclaimer {
  text-align: center; color: var(--text-muted); font-size: 0.82rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 20px;
}

/* === FEATURES === */
.features-section { padding: 100px 0; background: var(--bg-secondary); }

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

.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition-slow);
}

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

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

.fi-green { background: rgba(16,185,129,0.15); color: var(--green-400); }
.fi-blue { background: rgba(59,130,246,0.15); color: var(--blue-400); }
.fi-amber { background: rgba(245,158,11,0.15); color: var(--amber-400); }
.fi-red { background: rgba(224,48,48,0.15); color: var(--red-400); }
.fi-teal { background: rgba(20,184,166,0.15); color: var(--teal-400); }
.fi-orange { background: rgba(249,115,22,0.15); color: var(--orange-400); }

.feature-card h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.05rem; margin-bottom: 10px;
}

.feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 100px 0; background: var(--bg-primary); }

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

.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}

.testimonial-card:hover { border-color: var(--border-light); box-shadow: var(--shadow-md); }

.featured-testimonial {
  background: linear-gradient(135deg, rgba(224,48,48,0.08), rgba(245,158,11,0.06));
  border-color: rgba(245,158,11,0.25);
}

.testimonial-stars { color: var(--gold-400); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}

.av1 { background: linear-gradient(135deg, var(--red-500), var(--red-700)); color: white; }
.av2 { background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); color: white; }
.av3 { background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: white; }

.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* === CTA === */
.cta-section { padding: 80px 0; }

.cta-box {
  background: linear-gradient(135deg, var(--red-700) 0%, var(--red-800) 40%, #2a0808 100%);
  border-radius: var(--radius-xl); padding: 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(224,48,48,0.25);
}

.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(245,158,11,0.1), transparent 60%);
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 12px;
}

.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1rem; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-coins-visual {
  position: relative; width: 160px; height: 160px; flex-shrink: 0;
}

.cta-coin {
  position: absolute;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.1rem; color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
  border: 3px solid var(--gold-300);
  animation: coinFloat ease-in-out infinite alternate;
}

.cc1 { top: 0; left: 50%; transform: translateX(-50%); animation-duration: 2.1s; }
.cc2 { top: 30px; left: 0; animation-duration: 2.4s; animation-delay: -0.5s; }
.cc3 { top: 30px; right: 0; animation-duration: 1.9s; animation-delay: -1s; }
.cc4 { bottom: 0; left: 20px; animation-duration: 2.7s; animation-delay: -1.5s; }
.cc5 { bottom: 0; right: 20px; animation-duration: 2.2s; animation-delay: -0.8s; }

@keyframes coinFloat {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-12px) rotate(5deg); }
}

.cc1 { transform: translateX(-50%); }

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

.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 60px; margin-bottom: 48px; }

.footer-logo {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem;
  color: var(--text-primary) !important;
}

.footer-brand p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }

.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; color: var(--text-secondary);
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--red-400); }

.footer-contact-item a { color: var(--text-secondary); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-400); }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.footer-badge {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: var(--radius-full);
  background: var(--surface); color: var(--text-muted);
  border: 1px solid var(--border);
}

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.footer-col h5 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.875rem; color: var(--text-primary);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: var(--text-secondary); font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--text-primary); }

.footer-disclaimer {
  margin-bottom: 32px;
}

.disclaimer-box {
  background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md); padding: 20px 24px;
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7;
}

.disclaimer-box strong { color: var(--gold-400); }

.disclaimer-links {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px;
}

.disclaimer-links a {
  color: var(--gold-400); text-decoration: underline; font-size: 0.82rem;
}

.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: 0.8rem; }

/* === INNER PAGE STYLES === */
.page-hero {
  padding: 120px 0 60px; background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-full); padding: 5px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--gold-400);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  margin-bottom: 14px;
}

.page-hero p { color: var(--text-secondary); max-width: 540px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }

.page-content { padding: 60px 0 100px; }

.prose {
  max-width: 760px; margin: 0 auto;
}

.prose h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.5rem; margin: 40px 0 16px; color: var(--text-primary);
}

.prose h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 1.15rem; margin: 28px 0 12px; color: var(--text-primary);
}

.prose p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }

.prose ul, .prose ol {
  color: var(--text-secondary); padding-left: 24px;
  margin-bottom: 20px; line-height: 1.8;
}

.prose li { margin-bottom: 6px; }

.prose a { color: var(--gold-400); text-decoration: underline; }

.prose strong { color: var(--text-primary); }

.prose .highlight-box {
  background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md); padding: 20px 24px; margin: 28px 0;
}

.prose .highlight-box p { margin-bottom: 0; }

.info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0;
}

.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}

.info-card h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  margin-bottom: 8px; font-size: 1rem;
}

.info-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* GAME PAGES */
.game-page { min-height: 100vh; background: var(--bg-primary); padding-top: 80px; }

.game-header {
  background: var(--bg-secondary); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.game-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}

.game-header-left { display: flex; align-items: center; gap: 16px; }

.game-title-area h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem;
}

.game-title-area span { font-size: 0.82rem; color: var(--text-muted); }

.game-balance {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border-radius: var(--radius-md);
  padding: 8px 18px; border: 1px solid rgba(245,158,11,0.2);
}

.game-balance-label { font-size: 0.78rem; color: var(--text-muted); }
.game-balance-amount {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--gold-400);
}

.game-main {
  max-width: 1100px; margin: 0 auto; padding: 32px 24px;
}

/* SLOTS GAME */
.slots-container {
  display: grid; grid-template-columns: 1fr 320px; gap: 32px;
}

.slots-machine {
  background: linear-gradient(160deg, #0d1a2e, #1a2a4e);
  border-radius: var(--radius-xl); padding: 32px;
  border: 2px solid rgba(96,165,250,0.2);
  box-shadow: 0 0 40px rgba(96,165,250,0.1);
}

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

.reel-wrapper {
  background: rgba(0,0,0,0.5); border-radius: var(--radius-md);
  border: 2px solid rgba(96,165,250,0.3); overflow: hidden;
  width: 90px; height: 100px; position: relative;
}

.reel-display {
  display: flex; align-items: center; justify-content: center;
  height: 100%; font-size: 3rem; line-height: 1;
  transition: transform 0.1s;
}

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

@keyframes reelSpin {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-20px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}

.reel-wrapper.winner {
  border-color: var(--gold-400) !important;
  box-shadow: 0 0 20px rgba(245,158,11,0.5) !important;
  animation: winnerPulse 0.5s ease-in-out 3;
}

@keyframes winnerPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(245,158,11,0.5); }
  50% { box-shadow: 0 0 40px rgba(245,158,11,0.9); }
}

.slots-paylines {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px;
}

.payline-chip {
  font-size: 0.75rem; padding: 4px 10px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: var(--radius-full); color: var(--text-muted);
}

.slots-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}

.spin-btn {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #1a1a1a; border: none; border-radius: var(--radius-md);
  padding: 16px 48px; font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.1rem; cursor: pointer;
  transition: all var(--transition); box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  min-width: 140px;
}

.spin-btn:hover:not(:disabled) {
  transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,158,11,0.5);
}

.spin-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.bet-control { display: flex; align-items: center; gap: 8px; }

.bet-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-primary); cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}

.bet-btn:hover { background: var(--surface-2); border-color: var(--border-light); }

.bet-amount {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--gold-400); min-width: 80px; text-align: center;
}

.slots-result {
  text-align: center; min-height: 36px; margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem;
}

.result-win { color: var(--gold-400); animation: resultPop 0.3s ease; }
.result-lose { color: var(--text-muted); }
.result-big { color: var(--green-400); font-size: 1.4rem; }

@keyframes resultPop {
  0% { transform: scale(0.8); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.game-stats-panel {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 24px;
}

.game-stats-panel h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  margin-bottom: 16px; color: var(--text-secondary); text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.8rem;
}

.stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.stat-row:last-child { border-bottom: none; }
.stat-row span:first-child { color: var(--text-muted); }
.stat-row span:last-child { font-weight: 600; color: var(--text-primary); }

.paytable { margin-top: 24px; }

.paytable h3 {
  margin-bottom: 12px;
}

.pay-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 0.82rem; border-bottom: 1px solid var(--border);
}

.pay-row:last-child { border-bottom: none; }
.pay-symbols { font-size: 1.1rem; letter-spacing: 2px; }
.pay-multiplier { color: var(--gold-400); font-weight: 700; }

/* BLACKJACK */
.bj-table {
  background: linear-gradient(160deg, #0a2a1a, #1a4a2a);
  border-radius: var(--radius-xl); padding: 32px;
  border: 2px solid rgba(52,211,153,0.2);
  box-shadow: 0 0 40px rgba(52,211,153,0.08);
}

.bj-area { margin-bottom: 24px; }
.bj-area-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); margin-bottom: 10px;
}

.bj-hand { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; min-height: 110px; }

.bj-card {
  width: 72px; height: 100px; border-radius: 8px;
  background: white; display: flex; flex-direction: column;
  align-items: flex-start; padding: 6px 8px;
  box-shadow: 3px 3px 12px rgba(0,0,0,0.5);
  animation: cardDeal 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; flex-shrink: 0;
}

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

.bj-card.face-down {
  background: repeating-linear-gradient(
    45deg, #1a3a2a, #1a3a2a 5px, #0d2a1a 5px, #0d2a1a 10px
  );
}

.bj-card-rank {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; line-height: 1;
  color: #1a1a1a;
}

.bj-card-suit { font-size: 1.2rem; line-height: 1; }
.bj-card-suit.red { color: #e03030; }
.bj-card-suit.black { color: #1a1a1a; }

.bj-hand-value {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.4); border-radius: var(--radius-full);
  padding: 3px 12px; font-size: 0.85rem; font-weight: 700;
  color: rgba(255,255,255,0.8); margin-top: 8px;
}

.bj-controls {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 24px;
}

.bj-btn {
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  border: 2px solid; transition: all var(--transition);
}

.bj-btn-hit {
  background: rgba(52,211,153,0.15); color: var(--green-400);
  border-color: var(--green-400);
}
.bj-btn-hit:hover:not(:disabled) { background: rgba(52,211,153,0.25); }

.bj-btn-stand {
  background: rgba(224,48,48,0.15); color: var(--red-400);
  border-color: var(--red-400);
}
.bj-btn-stand:hover:not(:disabled) { background: rgba(224,48,48,0.25); }

.bj-btn-double {
  background: rgba(245,158,11,0.15); color: var(--gold-400);
  border-color: var(--gold-400);
}
.bj-btn-double:hover:not(:disabled) { background: rgba(245,158,11,0.25); }

.bj-btn-deal {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white; border-color: transparent;
  padding: 12px 36px; font-size: 1rem;
}
.bj-btn-deal:hover { background: linear-gradient(135deg, var(--green-400), var(--green-600)); }

.bj-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.bj-result {
  text-align: center; padding: 16px;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem;
  min-height: 56px; display: flex; align-items: center; justify-content: center;
}

.bj-result.win { color: var(--green-400); }
.bj-result.lose { color: var(--red-400); }
.bj-result.push { color: var(--gold-400); }

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

.roulette-wheel-section {
  background: linear-gradient(160deg, #2a0a0a, #4a1a0a);
  border-radius: var(--radius-xl); padding: 32px;
  border: 2px solid rgba(224,48,48,0.2);
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}

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

.wheel-canvas { border-radius: 50%; box-shadow: 0 0 40px rgba(224,48,48,0.3); }

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

.wheel-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #1a1a1a; border: 4px solid var(--gold-400);
  z-index: 11;
}

.spin-btn-roulette {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: white; border: none; border-radius: var(--radius-md);
  padding: 14px 40px; font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1rem; cursor: pointer;
  transition: all var(--transition); box-shadow: 0 4px 20px rgba(224,48,48,0.4);
}

.spin-btn-roulette:hover:not(:disabled) {
  transform: translateY(-2px); box-shadow: 0 6px 28px rgba(224,48,48,0.5);
}

.spin-btn-roulette:disabled { opacity: 0.5; cursor: not-allowed; }

.roulette-result {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem;
  text-align: center; min-height: 28px;
}

.roulette-betting {
  background: var(--bg-card); border-radius: var(--radius-xl);
  border: 1px solid var(--border); padding: 24px;
}

.roulette-betting h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
  margin-bottom: 16px;
}

.bet-type-tabs {
  display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap;
}

.bet-tab {
  padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.8rem; cursor: pointer;
  transition: all var(--transition);
}

.bet-tab.active {
  background: var(--red-500); border-color: var(--red-500); color: white;
}

.bet-grid {
  display: grid; gap: 6px; margin-bottom: 16px;
}

.bet-btn-r {
  padding: 10px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-primary); cursor: pointer; font-size: 0.82rem;
  font-weight: 600; transition: all var(--transition);
  text-align: center;
}

.bet-btn-r:hover { border-color: var(--border-light); background: var(--surface-2); }
.bet-btn-r.selected { border-color: var(--gold-400) !important; background: rgba(245,158,11,0.12) !important; color: var(--gold-400); }
.bet-btn-r.red-bet { border-color: rgba(224,48,48,0.3); }
.bet-btn-r.black-bet { border-color: rgba(255,255,255,0.15); }
.bet-btn-r.green-bet { border-color: rgba(52,211,153,0.3); color: var(--green-400); }

.numbers-grid { grid-template-columns: repeat(6, 1fr); }
.outside-grid { grid-template-columns: repeat(3, 1fr); }

.selected-bet-display {
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 16px;
  font-size: 0.85rem; color: var(--text-secondary);
}

.selected-bet-display strong { color: var(--gold-400); }

/* === LEADERBOARD === */
.leaderboard { margin-top: 24px; }

.leader-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.leader-row:last-child { border-bottom: none; }

.leader-rank { font-weight: 700; min-width: 24px; color: var(--text-muted); }
.leader-rank.gold { color: var(--gold-400); }
.leader-rank.silver { color: var(--neutral-400); }
.leader-rank.bronze { color: var(--orange-400); }

.leader-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}

.leader-name { flex: 1; }
.leader-score { font-weight: 700; color: var(--gold-400); }

/* === FREE COINS DAILY === */
.daily-bonus-card {
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(224,48,48,0.08));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-lg); padding: 20px;
  text-align: center; margin-top: 16px;
}

.daily-bonus-card h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 6px; }
.daily-bonus-card p { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 12px; }

.claim-btn {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #1a1a1a; border: none; border-radius: var(--radius-sm);
  padding: 8px 20px; font-weight: 700; font-size: 0.875rem;
  cursor: pointer; transition: all var(--transition);
}

.claim-btn:hover:not(:disabled) { transform: translateY(-1px); }
.claim-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* TOAST */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 8000; display: flex; flex-direction: column; gap: 8px; }

.toast {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 14px 20px;
  font-size: 0.875rem; max-width: 300px;
  animation: toastIn 0.3s ease; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
}

.toast.win { border-color: rgba(52,211,153,0.4); }
.toast.lose { border-color: rgba(224,48,48,0.3); }
.toast.info { border-color: rgba(59,130,246,0.3); }

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .slots-container { grid-template-columns: 1fr; }
  .roulette-container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    padding: 16px; gap: 4px;
  }
  .nav-burger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; padding: 36px 24px; }
  .cta-coins-visual { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .info-grid { grid-template-columns: 1fr; }
  .bj-controls { gap: 8px; }
  .hero-actions { flex-direction: column; }
  .age-modal { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .game-header-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .numbers-grid { grid-template-columns: repeat(4, 1fr); }
}
