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

:root {
  --red:       #c0392b;
  --red-dark:  #96281b;
  --red-light: #e74c3c;
  --gold:      #d4a017;
  --gold-light:#f0c040;
  --gold-pale: #fdf3d0;
  --white:     #ffffff;
  --off-white: #f8f6f2;
  --gray-100:  #f2ede8;
  --gray-200:  #e0d9d0;
  --gray-300:  #b8b0a4;
  --gray-400:  #8a8278;
  --gray-500:  #5c5650;
  --gray-700:  #3a3530;
  --gray-900:  #1a1714;
  --navy:      #1b2a40;
  --navy-dark: #111b2a;
  --teal:      #1a7a6e;
  --teal-light:#22a08f;
  --green:     #27ae60;
  --green-dark:#1e8449;

  --font-head: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

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

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.14);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.22);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.32);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { line-height: 1.7; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red  { color: var(--red); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 600; transition: all var(--transition);
  letter-spacing: .02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(192,57,43,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,57,43,.45); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--gray-900);
  box-shadow: 0 4px 18px rgba(212,160,23,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,160,23,.45); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--gray-900); }

.btn-sm { padding: 10px 22px; font-size: .9rem; }

.section-label {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 48px;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--navy-dark);
  color: var(--white);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-size: .9rem; opacity: .9; max-width: 680px; }
#cookie-banner p a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }
#cookie-accept {
  background: var(--gold);
  color: var(--gray-900);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: background var(--transition);
}
#cookie-accept:hover { background: var(--gold-light); }
#cookie-decline {
  background: transparent;
  color: var(--gray-300);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
#cookie-decline:hover { color: var(--white); }

/* ===== AGE MODAL ===== */
#age-modal {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10,8,6,.92);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
#age-modal.visible {
  display: flex;
}
.age-modal-box {
  background: var(--navy-dark);
  border: 1px solid rgba(212,160,23,.25);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  color: var(--white);
}
.age-modal-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.age-modal-box h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.age-modal-box p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  margin-bottom: 32px;
}
.age-check-row {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 28px;
  text-align: left;
  cursor: pointer;
}
.age-check-row input[type="checkbox"] {
  width: 22px; height: 22px; accent-color: var(--gold);
  flex-shrink: 0; margin-top: 2px; cursor: pointer;
}
.age-check-row span {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
#age-confirm-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--gray-900);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  opacity: 1;
  cursor: pointer;
}
#age-confirm-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
#age-confirm-btn:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,160,23,.45); }
.age-disclaimer {
  margin-top: 20px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ===== HEADER / NAV ===== */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 0 24px;
  transition: background 0.35s, box-shadow 0.35s;
}
#main-header.scrolled {
  background: rgba(17,27,42,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  display: flex; align-items: center; gap: 10px;
}
.logo-maple { font-size: 1.6rem; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--red-light), var(--red-dark)) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
}
.nav-cta:hover { opacity: .9; background: var(--red-light) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 790;
  background: var(--navy-dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.4rem;
  font-family: var(--font-head);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; color: var(--white); font-size: 2rem; line-height: 1;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-dark) 0%, #14233a 60%, #1a1010 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,.07) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(192,57,43,.08) 0%, transparent 55%),
    radial-gradient(circle at 60% 80%, rgba(26,122,110,.06) 0%, transparent 50%);
}
.hero-leaves {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.leaf {
  position: absolute;
  width: 30px; height: 30px;
  background: var(--red-light);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  opacity: 0.06;
  animation: leafFloat linear infinite;
}
@keyframes leafFloat {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10%  { opacity: .06; }
  90%  { opacity: .06; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-text {}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.25);
  color: var(--gold);
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 320px; height: 340px;
}
.hcard {
  position: absolute;
  width: 200px; height: 260px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  box-shadow: var(--shadow-xl);
}
.hcard-1 {
  background: linear-gradient(135deg, #c0392b, #8e1f14);
  transform: rotate(-12deg) translate(-60px, 20px);
  animation: cardFloat1 4s ease-in-out infinite;
  z-index: 1;
}
.hcard-2 {
  background: linear-gradient(135deg, #1b2a40, #0d1822);
  border: 2px solid rgba(212,160,23,.3);
  transform: rotate(0deg) translate(10px, -10px);
  animation: cardFloat2 4.5s ease-in-out infinite 0.5s;
  z-index: 3;
}
.hcard-3 {
  background: linear-gradient(135deg, #d4a017, #9a7010);
  transform: rotate(10deg) translate(70px, 30px);
  animation: cardFloat3 3.8s ease-in-out infinite 1s;
  z-index: 2;
}
@keyframes cardFloat1 {
  0%,100% { transform: rotate(-12deg) translate(-60px, 20px); }
  50%      { transform: rotate(-10deg) translate(-60px, 5px); }
}
@keyframes cardFloat2 {
  0%,100% { transform: rotate(0deg) translate(10px, -10px); }
  50%      { transform: rotate(2deg) translate(10px, -22px); }
}
@keyframes cardFloat3 {
  0%,100% { transform: rotate(10deg) translate(70px, 30px); }
  50%      { transform: rotate(8deg) translate(70px, 14px); }
}
.hcard-symbol {
  font-size: 4rem;
  color: rgba(255,255,255,.9);
  line-height: 1;
}
.hcard-2 .hcard-symbol { color: var(--gold); }

/* ===== SECTION BASE ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--white); }
.section-dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,.55); }
.section-dark .section-label { background: rgba(212,160,23,.12); color: var(--gold); }

/* ===== GAMES SECTION ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}
.game-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.game-thumb {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.game-thumb-1 { background: linear-gradient(135deg, #1b2a40 0%, #2d4a6b 100%); }
.game-thumb-2 { background: linear-gradient(135deg, #1a3a1a 0%, #2d6b2d 100%); }
.game-thumb-3 { background: linear-gradient(135deg, #3a1a1a 0%, #6b2d2d 100%); }

.game-icon-large { font-size: 5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.game-anim {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}

/* slot reels preview */
.slot-reel-preview {
  display: flex; gap: 6px;
}
.slot-reel-preview .reel {
  width: 44px; height: 56px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  animation: reelSpin 1.5s linear infinite;
}
.slot-reel-preview .reel:nth-child(2) { animation-delay: .2s; }
.slot-reel-preview .reel:nth-child(3) { animation-delay: .4s; }
@keyframes reelSpin {
  0%,100% { transform: scaleY(1); }
  50%      { transform: scaleY(.85); }
}

/* card preview */
.card-preview {
  display: flex; gap: -4px;
}
.mini-card {
  width: 38px; height: 54px;
  background: var(--white);
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  box-shadow: var(--shadow-sm);
  margin-left: -10px;
  font-weight: 700;
  animation: cardFan 2s ease-in-out infinite;
}
.mini-card:first-child { margin-left: 0; color: var(--gray-900); animation-delay: .3s; }
.mini-card:nth-child(3) { animation-delay: .6s; }
@keyframes cardFan {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* roulette preview */
.roulette-preview {
  position: relative;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: conic-gradient(
    #c0392b 0% 10%, #1a1a1a 10% 20%, #c0392b 20% 30%, #1a1a1a 30% 40%,
    #c0392b 40% 50%, #1a1a1a 50% 60%, #c0392b 60% 70%, #1a1a1a 70% 80%,
    #c0392b 80% 90%, #27ae60 90% 100%
  );
  border: 4px solid var(--gold);
  animation: rouletteSpin 3s linear infinite;
  box-shadow: 0 0 24px rgba(212,160,23,.4);
}
@keyframes rouletteSpin { to { transform: rotate(360deg); } }

.game-body { padding: 28px; }
.game-body h3 { margin-bottom: 10px; }
.game-body p { color: var(--gray-400); font-size: .9rem; margin-bottom: 24px; }
.game-tags { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.game-tag {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(212,160,23,.3);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.feature-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }

/* ===== HOW IT WORKS MINI ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-200) 0%, var(--gold) 50%, var(--gray-200) 100%);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700;
  color: var(--gray-900);
  margin: 0 auto 20px;
  box-shadow: 0 4px 18px rgba(212,160,23,.35);
}
.step-item h4 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: .875rem; color: var(--gray-400); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.t-quote { color: var(--gray-500); font-size: .92rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--white);
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: .95rem; }
.t-loc  { font-size: .8rem; color: var(--gray-400); }

/* ===== BANNER CTA ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
                    radial-gradient(circle at 75% 25%, rgba(255,255,255,.04) 0%, transparent 55%);
}
.cta-banner h2, .cta-banner p { color: var(--white); position: relative; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p  { opacity: .85; margin-bottom: 36px; }
.cta-banner .btn-gold { position: relative; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.7; max-width: 300px; }

.footer-contact { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  display: flex; align-items: flex-start; gap: 6px;
}
.footer-contact-item a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-disclaimer {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 32px 0;
}
.footer-disclaimer h5 {
  color: var(--gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-disclaimer p {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  line-height: 1.7;
}
.footer-disclaimer a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: .82rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== INNER PAGE HEADER ===== */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #14233a 100%);
  padding: 130px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: .8; }

/* ===== CONTENT PAGE ===== */
.content-page { padding: 80px 0; }
.content-page .container { max-width: 820px; }
.content-section { margin-bottom: 52px; }
.content-section h2 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.content-section h3 { font-size: 1.15rem; margin: 20px 0 10px; color: var(--gray-700); }
.content-section p { color: var(--gray-500); margin-bottom: 14px; font-size: .95rem; }
.content-section ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--gray-500);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.content-section .info-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 20px 0;
  color: var(--gray-700);
  font-size: .92rem;
}
.content-section .warning-box {
  background: #fff3f3;
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 20px 0;
  color: var(--gray-700);
  font-size: .92rem;
}

/* ===== GAMES PAGES ===== */
.game-page { padding: 80px 0; }
.game-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* --- SLOTS --- */
.slot-machine {
  background: linear-gradient(160deg, #1b2a40, #0d1822);
  border: 2px solid rgba(212,160,23,.25);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-xl), inset 0 0 60px rgba(212,160,23,.04);
}
.slot-title {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(212,160,23,.5);
}
.slot-subtitle { color: rgba(255,255,255,.5); margin-bottom: 40px; font-size: .9rem; }
.slot-balance-row {
  display: flex; justify-content: center; gap: 40px; margin-bottom: 36px;
}
.slot-balance-item {}
.slot-balance-label { font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.slot-balance-val {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}
.slot-reels-wrap {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  background: rgba(0,0,0,.35);
  border: 2px solid rgba(212,160,23,.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 32px;
}
.slot-reel {
  width: 90px; height: 100px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative; overflow: hidden;
  transition: transform .1s;
}
.slot-reel.spinning {
  animation: slotSpin .12s linear infinite;
}
@keyframes slotSpin {
  0%   { transform: scaleY(1); }
  50%  { transform: scaleY(.5); }
  100% { transform: scaleY(1); }
}
.slot-reel.winning { animation: winPulse .5s ease-in-out 3; }
@keyframes winPulse {
  0%,100% { box-shadow: none; }
  50%      { box-shadow: 0 0 24px var(--gold-light); border-color: var(--gold-light); }
}
.slot-payline { display: flex; align-items: center; gap: 8px; }
.slot-payline-line {
  flex: 1; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.slot-bet-row {
  display: flex; justify-content: center; align-items: center; gap: 16px; margin-bottom: 28px;
}
.bet-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1.2rem; font-weight: 700;
  transition: background var(--transition);
}
.bet-btn:hover { background: rgba(255,255,255,.2); }
.bet-display {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(212,160,23,.2);
  border-radius: var(--radius-sm);
  padding: 8px 24px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--gold);
  min-width: 80px;
}
.slot-spin-btn {
  width: 100%;
  max-width: 300px;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--gray-900);
  font-size: 1.1rem; font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(212,160,23,.4);
  margin-bottom: 24px;
}
.slot-spin-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,160,23,.55); }
.slot-spin-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.slot-msg {
  min-height: 32px;
  font-size: 1rem; font-weight: 600;
  color: var(--gold);
  transition: opacity .3s;
}
.slot-paytable {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
}
.slot-paytable h4 { color: rgba(255,255,255,.6); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.paytable-rows { display: flex; flex-direction: column; gap: 8px; }
.paytable-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.paytable-row span:first-child { font-size: 1.4rem; letter-spacing: 4px; }
.paytable-row span:last-child { color: var(--gold); font-weight: 700; font-size: .9rem; }

/* --- BLACKJACK --- */
.bj-table {
  background: radial-gradient(ellipse at center, #1e5c3a 0%, #0e3320 100%);
  border: 3px solid rgba(212,160,23,.3);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.bj-zone-label {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.4); margin-bottom: 12px;
}
.bj-hand {
  min-height: 100px;
  display: flex; align-items: center; justify-content: center; gap: -8px;
  margin-bottom: 8px;
}
.bj-card {
  width: 70px; height: 95px;
  background: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-size: 1.3rem; font-weight: 700;
  box-shadow: var(--shadow-md);
  margin-left: -16px;
  position: relative;
  transition: transform .3s;
  animation: dealCard .3s ease-out;
}
.bj-card:first-child { margin-left: 0; }
.bj-card.red-suit { color: var(--red); }
.bj-card.black-suit { color: var(--gray-900); }
.bj-card.hidden {
  background: linear-gradient(135deg, #1b2a40, #0d1822);
  color: transparent;
}
.bj-card.hidden::after {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(212,160,23,.25);
  border-radius: 4px;
  background: repeating-linear-gradient(
    45deg,
    rgba(212,160,23,.06) 0px, rgba(212,160,23,.06) 4px,
    transparent 4px, transparent 8px
  );
}
@keyframes dealCard {
  from { transform: translateY(-30px) scale(.8); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.bj-score {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.bj-score.bust { color: var(--red-light); }
.bj-score.blackjack { color: var(--gold); }
.bj-divider { border: none; border-top: 2px dashed rgba(255,255,255,.15); margin: 24px 0; }
.bj-controls { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.bj-btn {
  padding: 13px 30px;
  border-radius: var(--radius-md);
  font-size: .95rem; font-weight: 700;
  transition: all var(--transition);
}
.bj-btn-hit   { background: var(--teal-light); color: var(--white); }
.bj-btn-stand { background: var(--red);    color: var(--white); }
.bj-btn-deal  { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--gray-900); }
.bj-btn-double{ background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.bj-btn:hover:not(:disabled) { transform: translateY(-2px); opacity: .9; }
.bj-btn:disabled { opacity: .35; cursor: not-allowed; transform: none !important; }
.bj-msg {
  min-height: 40px;
  font-size: 1.15rem; font-weight: 700;
  transition: opacity .3s;
}
.bj-msg.win  { color: var(--gold); }
.bj-msg.lose { color: var(--red-light); }
.bj-msg.push { color: rgba(255,255,255,.7); }
.bj-chip-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.bj-chip {
  width: 56px; height: 56px;
  border-radius: 50%;
  font-size: .85rem; font-weight: 800;
  color: var(--white);
  border: 3px solid rgba(255,255,255,.3);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.bj-chip:hover { transform: scale(1.12); box-shadow: 0 6px 18px rgba(0,0,0,.4); }
.chip-5   { background: var(--red); }
.chip-10  { background: var(--navy); }
.chip-25  { background: var(--green-dark); }
.chip-50  { background: #8b6914; }
.chip-100 { background: #2d2d2d; }
.bj-stats { display: flex; gap: 32px; justify-content: center; margin-top: 28px; }
.bj-stat-item {}
.bj-stat-val { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); }
.bj-stat-lbl { font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }

/* --- ROULETTE --- */
.roulette-page { background: radial-gradient(ellipse at center, #2a1a1a 0%, #0d0a0a 100%); }
.roulette-container {
  background: radial-gradient(ellipse at center, #3a1a1a 0%, #1a0d0d 100%);
  border: 2px solid rgba(212,160,23,.25);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
}
.roulette-wheel-wrap {
  display: flex; justify-content: center; margin-bottom: 36px;
}
.roulette-wheel {
  width: 220px; height: 220px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 40px rgba(212,160,23,.3), inset 0 0 40px rgba(0,0,0,.5);
}
.roulette-wheel-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #c0392b 0deg 9.7deg, #1a1a1a 9.7deg 19.4deg, #c0392b 19.4deg 29.1deg,
    #1a1a1a 29.1deg 38.8deg, #c0392b 38.8deg 48.5deg, #1a1a1a 48.5deg 58.2deg,
    #c0392b 58.2deg 67.9deg, #1a1a1a 67.9deg 77.6deg, #c0392b 77.6deg 87.3deg,
    #27ae60 87.3deg 97deg, #c0392b 97deg 106.7deg, #1a1a1a 106.7deg 116.4deg,
    #c0392b 116.4deg 126.1deg, #1a1a1a 126.1deg 135.8deg, #c0392b 135.8deg 145.5deg,
    #1a1a1a 145.5deg 155.2deg, #c0392b 155.2deg 164.9deg, #1a1a1a 164.9deg 174.6deg,
    #c0392b 174.6deg 184.3deg, #1a1a1a 184.3deg 194deg, #c0392b 194deg 203.7deg,
    #1a1a1a 203.7deg 213.4deg, #c0392b 213.4deg 223.1deg, #1a1a1a 223.1deg 232.8deg,
    #c0392b 232.8deg 242.5deg, #1a1a1a 242.5deg 252.2deg, #c0392b 252.2deg 261.9deg,
    #1a1a1a 261.9deg 271.6deg, #c0392b 271.6deg 281.3deg, #1a1a1a 281.3deg 291deg,
    #c0392b 291deg 300.7deg, #1a1a1a 300.7deg 310.4deg, #c0392b 310.4deg 320.1deg,
    #1a1a1a 320.1deg 329.8deg, #c0392b 329.8deg 339.5deg, #1a1a1a 339.5deg 349.2deg,
    #c0392b 349.2deg 360deg
  );
  border: 6px solid var(--gold);
  border-radius: 50%;
  transition: transform 4s cubic-bezier(.17,.67,.12,1);
}
.roulette-ball-container {
  position: absolute; inset: 0;
  border-radius: 50%;
  transition: transform 4s cubic-bezier(.17,.67,.12,1);
}
.roulette-ball {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #ccc);
  box-shadow: 0 2px 6px rgba(0,0,0,.5);
}
.roulette-center {
  position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, #3a2a00, #1a1200);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--gold);
  z-index: 2;
}
.roulette-pointer {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 16px solid var(--gold);
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
.roulette-balance-row { display: flex; justify-content: center; gap: 40px; margin-bottom: 28px; }
.r-balance-item {}
.r-balance-label { font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.r-balance-val { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); }
.roulette-bet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.r-bet-btn {
  padding: 14px 10px;
  border-radius: var(--radius-md);
  font-size: .85rem; font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--transition);
  color: var(--white);
}
.r-bet-btn.red-bet   { background: var(--red-dark); border-color: var(--red); }
.r-bet-btn.black-bet { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.r-bet-btn.green-bet { background: var(--green-dark); border-color: var(--green); }
.r-bet-btn.even-bet, .r-bet-btn.odd-bet  { background: rgba(212,160,23,.15); border-color: rgba(212,160,23,.3); }
.r-bet-btn.low-bet, .r-bet-btn.high-bet  { background: rgba(26,122,110,.2); border-color: rgba(26,122,110,.4); }
.r-bet-btn:hover:not(:disabled)  { transform: scale(1.04); filter: brightness(1.15); }
.r-bet-btn:disabled { opacity: .4; cursor: not-allowed; }
.r-bet-btn.selected { border-color: var(--gold-light) !important; box-shadow: 0 0 12px rgba(212,160,23,.4); }
.roulette-wager-row {
  display: flex; gap: 10px; justify-content: center; align-items: center; margin-bottom: 24px;
}
.roulette-chip-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: .8rem; font-weight: 800;
  color: var(--white); border: 3px solid rgba(255,255,255,.3);
  transition: transform var(--transition);
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.roulette-chip-btn:hover { transform: scale(1.12); }
.roulette-spin-btn {
  width: 100%; max-width: 280px;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--gray-900); font-size: 1.05rem; font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(212,160,23,.35);
  transition: all var(--transition);
  margin: 0 auto; display: block;
}
.roulette-spin-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,160,23,.5); }
.roulette-spin-btn:disabled { opacity: .4; cursor: not-allowed; }
.roulette-result {
  text-align: center;
  margin-top: 24px;
  min-height: 48px;
}
.r-result-num {
  font-family: var(--font-head);
  font-size: 2.5rem; font-weight: 700;
  color: var(--white);
}
.r-result-num.red   { color: var(--red-light); }
.r-result-num.green { color: var(--green); }
.r-result-msg { font-size: 1rem; font-weight: 600; color: var(--gold); margin-top: 4px; }
.roulette-history {
  display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
  margin-top: 20px; min-height: 28px;
}
.r-hist-ball {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: var(--white);
}
.r-hist-ball.red   { background: var(--red); }
.r-hist-ball.black { background: #333; }
.r-hist-ball.green { background: var(--green); }

/* ===== INNER PAGES - HOW IT WORKS ===== */
.hiw-steps {
  display: grid; gap: 40px;
}
.hiw-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: start;
}
.hiw-step-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--gray-900);
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(212,160,23,.3);
}

/* ===== COMMUNITY ===== */
.community-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.community-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.community-card h3 { margin-bottom: 12px; }
.community-card p  { color: var(--gray-400); font-size: .92rem; margin-bottom: 20px; }

/* ===== HELP / FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: none;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--gray-700);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-arrow {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  color: var(--gray-400); font-size: .92rem; line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ===== RESPONSIBLE GAMING ===== */
.rg-tools-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px;
}
.rg-tool-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.rg-tool-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.rg-tool-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.rg-tool-card p  { color: var(--gray-400); font-size: .88rem; }

.rg-orgs { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.rg-org {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 22px;
}
.rg-org-name { font-weight: 600; font-size: .95rem; }
.rg-org-desc { font-size: .82rem; color: var(--gray-400); margin-top: 2px; }
.rg-org-link {
  color: var(--red);
  font-size: .85rem; font-weight: 600;
  border: 1px solid var(--red);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.rg-org-link:hover { background: var(--red); color: var(--white); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .rg-tools-grid { grid-template-columns: 1fr; }
  .roulette-bet-grid { grid-template-columns: repeat(2, 1fr); }
  .slot-machine, .bj-table, .roulette-container { padding: 32px 20px; }
  .age-modal-box { padding: 36px 24px; }
  .cta-banner { padding: 48px 28px; }
}

@media (max-width: 480px) {
  .steps-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .bj-chip-row .bj-chip { width: 46px; height: 46px; font-size: .78rem; }
  .bj-controls { gap: 8px; }
  .bj-btn { padding: 11px 18px; font-size: .88rem; }
}
