/* =========================================================================
   ROKDA7 — DESIGN SYSTEM
   Region: India · Theme: Red + Black neon arena
   1. Reset  2. Variables  3. Typography  4. Base  5. Layout helpers
   6. Affiliate bar 7. Alert strip 8. Header 9. Mobile nav 10. Sticky download bar
   11. Age gate 12. Exit intent 13. Buttons 14. Section headers 15. Ticker
   16-18. Hero 19-20. Game cards/sidebar 21. Timeline 22. Stats 23. Mockup
   24. Carousel 25. Feature cards 26. Bonus fan 27. Referral 28. Winners wall
   29. FAQ 30. Blog 31. CTA 32. Footer 33. Game detail 34. Download 35. Leaderboard
   36. Blog post 37. Static pages 38. 404 39. Contact 40. Sitemap 41. Utils 42. Responsive
   ========================================================================= */

/* 1. RESET ---------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
img, picture, svg, canvas { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* 2. CUSTOM PROPERTIES ---------------------------------------------------- */
:root {
  --bg-void: #0A0A0A;
  --bg-surface: #111111;
  --bg-elevated: #1A1A1A;
  --red-primary: #E8001D;
  --red-hot: #FF1A35;
  --red-dim: #8B0012;
  --gold-accent: #FFD700;
  --gold-muted: #B8960C;
  --text-primary: #FFFFFF;
  --text-secondary: #C8C8C8;
  --text-muted: #666666;
  --success: #00C853;
  --danger: #FF3B55;
  --border-subtle: rgba(232,0,29,0.15);
  --border-strong: rgba(232,0,29,0.45);
  --glass: rgba(255,255,255,0.03);
  --glass-strong: rgba(255,255,255,0.06);
  --shadow-red: 0 0 24px rgba(232,0,29,0.5);
  --maxw: 1280px;
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 72px;
  --font-display: 'Rajdhani', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* 3. TYPOGRAPHY ----------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-secondary);
  background: var(--bg-void);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--text-primary); line-height: 1.1; font-weight: 700; }
h1 { font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { margin-bottom: 1rem; }
strong { color: var(--text-primary); }
.num, .data { font-family: var(--font-display); font-weight: 700; }
.glow-red { color: var(--red-hot); text-shadow: 0 0 12px rgba(232,0,29,0.7), 0 0 28px rgba(232,0,29,0.35); }
.glow-gold { color: var(--gold-accent); text-shadow: 0 0 14px rgba(255,215,0,0.45); }

/* 4. BASE ELEMENTS -------------------------------------------------------- */
::selection { background: var(--red-primary); color: #fff; }
:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  background: var(--red-primary); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--red-dim); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-primary); }

/* 5. LAYOUT HELPERS ------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }
.section { padding-block: clamp(56px, 8vw, 110px); position: relative; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 10px; } .gap-md { gap: 20px; } .gap-lg { gap: 36px; }
.tone-void { background: var(--bg-void); }
.tone-surface { background: var(--bg-surface); }
.tone-elevated { background: linear-gradient(180deg, #121212, #0c0c0c); }

/* 6. AFFILIATE BAR -------------------------------------------------------- */
.affiliate-bar {
  background: linear-gradient(90deg, #1a0306, #2a0509, #1a0306);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.72rem; letter-spacing: 0.04em; color: var(--text-secondary);
  text-align: center; padding: 7px 14px;
}
.affiliate-bar strong { color: var(--red-hot); }

/* 7. ALERT STRIP ---------------------------------------------------------- */
.alert-strip {
  background: var(--red-primary); color: #fff; position: relative; overflow: hidden;
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em;
}
.alert-strip__track { display: flex; white-space: nowrap; animation: ticker 22s linear infinite; }
.alert-strip__track span { padding: 9px 40px; }
.alert-strip__close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 1.1rem; width: 26px; height: 26px; line-height: 1;
  background: rgba(0,0,0,0.25); border-radius: 50%; z-index: 2;
}
.alert-strip.is-hidden { display: none; }

/* 8. STICKY HEADER -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 800;
  background: rgba(10,10,10,0.72); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle); transition: background .3s, box-shadow .3s, padding .3s;
}
.site-header.scrolled { background: rgba(8,8,8,0.92); box-shadow: 0 6px 30px rgba(0,0,0,0.6); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: 0.02em; }
.logo__mark {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dim));
  box-shadow: var(--shadow-red); color: #fff; font-weight: 800; font-size: 1.1rem;
}
.logo span.r7 { color: var(--red-hot); }
.main-nav { display: flex; gap: 6px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.03em;
  color: var(--text-secondary); padding: 8px 14px; border-radius: 8px; transition: color .2s, background .2s; position: relative;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(232,0,29,0.12); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--red-primary); box-shadow: 0 0 10px var(--red-primary);
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.hamburger span { width: 24px; height: 2px; background: #fff; transition: .3s; }

/* 9. MOBILE NAV OVERLAY ---------------------------------------------------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 900; background: rgba(8,8,8,0.98); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; padding: 80px 28px 28px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.7,0,.3,1); visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav__close { position: absolute; top: 22px; right: 22px; font-size: 2rem; color: #fff; line-height: 1; }
.mobile-nav a { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--text-secondary); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:hover { color: var(--red-hot); }
.mobile-nav__social { margin-top: auto; display: flex; gap: 14px; padding-top: 24px; }
.mobile-nav__social a { font-size: 0.9rem; padding: 8px 14px; border: 1px solid var(--border-subtle); border-radius: 8px; }

/* 10. STICKY BOTTOM DOWNLOAD BAR ------------------------------------------ */
.sticky-dl {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 700;
  background: rgba(12,12,12,0.95); backdrop-filter: blur(16px); border-top: 1px solid var(--border-strong);
  padding: 12px clamp(16px,4vw,32px); display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(120%); transition: transform .4s cubic-bezier(.6,0,.3,1);
}
.sticky-dl.show { transform: translateY(0); }
.sticky-dl__txt { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 0.98rem; }
.sticky-dl__txt small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--text-muted); font-size: 0.72rem; }

/* 12. EXIT INTENT POPUP --------------------------------------------------- */
.exit-popup {
  position: fixed; top: 50%; right: 24px; transform: translateY(-50%) translateX(120%); z-index: 950;
  width: min(360px, calc(100vw - 32px)); padding: 30px 26px; border-radius: var(--radius);
  background: linear-gradient(160deg, #1a0407, var(--bg-surface)); border: 1px solid var(--border-strong);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(232,0,29,0.2); transition: transform .45s cubic-bezier(.6,0,.3,1);
}
.exit-popup.show { transform: translateY(-50%) translateX(0); }
.exit-popup__close { position: absolute; top: 12px; right: 14px; font-size: 1.4rem; color: var(--text-muted); }
.exit-popup__eyebrow { color: var(--red-hot); font-family: var(--font-display); font-weight: 700; letter-spacing: .12em; font-size: .72rem; }
.exit-popup h3 { margin: 8px 0 6px; }
.exit-popup .amount { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--gold-accent); }

/* 13. BUTTON SYSTEM ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.92rem; padding: 13px 26px; border-radius: var(--radius-sm); transition: all .25s; white-space: nowrap;
  border: 1px solid transparent; line-height: 1;
}
.btn-red { background: var(--red-primary); color: #fff; box-shadow: 0 4px 18px rgba(232,0,29,0.32); }
.btn-red:hover { background: var(--red-hot); box-shadow: var(--shadow-red); transform: translateY(-2px); }
.btn-outline { border-color: var(--border-strong); color: #fff; background: rgba(232,0,29,0.04); }
.btn-outline:hover { border-color: var(--red-hot); box-shadow: 0 0 18px rgba(232,0,29,0.3); transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-accent), var(--gold-muted)); color: #1a1400; box-shadow: 0 4px 18px rgba(255,215,0,0.28); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(255,215,0,0.45); }
.btn-ghost { color: var(--text-secondary); border-color: rgba(255,255,255,0.1); }
.btn-ghost:hover { color: #fff; border-color: var(--border-strong); }
.btn-lg { padding: 17px 36px; font-size: 1.02rem; }
.btn-sm { padding: 9px 16px; font-size: 0.78rem; }
.btn-full { width: 100%; }
.btn-pulse { animation: pulseRed 2.4s ease-in-out infinite; }

/* 14. SECTION HEADERS ----------------------------------------------------- */
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.sec-head.left { text-align: left; margin-inline: 0; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; font-size: 0.74rem; color: var(--red-hot); margin-bottom: 12px;
  padding: 5px 14px; border: 1px solid var(--border-subtle); border-radius: 30px; background: rgba(232,0,29,0.06);
}
.sec-head h2 { margin-bottom: 12px; }
.sec-head p { color: var(--text-muted); font-size: 1rem; }

/* 15. TICKER / MARQUEE ---------------------------------------------------- */
.pay-ticker { background: linear-gradient(90deg, #1c0306, #2c0509); border-block: 1px solid var(--border-subtle); overflow: hidden; padding: 14px 0; }
.pay-ticker__track { display: flex; gap: 56px; white-space: nowrap; animation: ticker 26s linear infinite; width: max-content; }
.pay-ticker__track:hover { animation-play-state: paused; }
.pay-ticker__item { font-family: var(--font-display); font-weight: 600; letter-spacing: .06em; color: var(--text-secondary); font-size: 1rem; display: flex; align-items: center; gap: 10px; }
.pay-ticker__item::before { content: "●"; color: var(--red-hot); font-size: .6rem; }

/* 16-18. HERO — THE ARENA ------------------------------------------------- */
.hero { position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; overflow: hidden; padding-block: 50px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: var(--bg-void); }
.hero__scanlines { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(135deg, transparent 0 6px, rgba(232,0,29,0.03) 6px 8px); }
.hero__canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__radial { position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at 72% 50%, rgba(232,0,29,0.14), transparent 55%); }
.hero .container { position: relative; z-index: 3; }
.hero__grid { display: grid; grid-template-columns: 40% 60%; gap: 40px; align-items: center; }

.hero__eyebrow { display: inline-flex; align-items: center; gap: 7px; font-family: 'Courier New', monospace; font-size: 0.72rem; letter-spacing: 0.14em; color: var(--red-hot); border: 1px solid var(--border-subtle); padding: 6px 14px; border-radius: 4px; background: rgba(232,0,29,0.05); text-transform: uppercase; }
.hero__eyebrow .cursor { width: 8px; height: 14px; background: var(--red-hot); display: inline-block; animation: blink 1s step-end infinite; }
.hero__title { margin: 22px 0 18px; }
.hero__title .line { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(3.2rem, 9vw, 7.5rem); line-height: 0.92; }
.hero__title .l-win { color: #fff; }
.hero__title .l-amount { color: var(--red-hot); text-shadow: 0 0 24px rgba(232,0,29,0.7), 0 0 50px rgba(232,0,29,0.4); animation: neonFlicker 4s infinite; }
.hero__title .l-tonight { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.55); }
.hero__sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 440px; margin-bottom: 26px; }
.hero__ctas { display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; font-size: 0.82rem; color: var(--text-secondary); }
.hero__trust span { display: flex; align-items: center; gap: 6px; }
.hero__trust span::before { content: "✓"; color: var(--success); font-weight: 700; }
.hero__fineprint { margin-top: 22px; font-size: 0.68rem; color: var(--text-muted); max-width: 380px; line-height: 1.5; }

/* Hero game tile grid */
.hero__feed { position: relative; }
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.game-tile {
  position: relative; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 22px 16px; text-align: center; overflow: hidden;
  opacity: 0; transform: translateY(28px); animation: slideInUp .55s forwards;
}
.game-tile:hover { border-color: var(--border-strong); box-shadow: 0 0 26px rgba(232,0,29,0.22); transform: translateY(-4px); transition: transform .25s, box-shadow .25s, border-color .25s; }
.game-tile__icon { font-size: 2.4rem; margin-bottom: 8px; }
.game-tile__name { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1rem; }
.game-tile__live { display: inline-flex; align-items: center; gap: 5px; margin-top: 7px; font-size: 0.68rem; color: var(--red-hot); font-family: var(--font-display); font-weight: 600; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-hot); box-shadow: 0 0 8px var(--red-hot); position: relative; }
.live-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--red-hot); animation: expandRing 1.8s ease-out infinite; }

/* 19-20. GAME CARDS + SIDEBAR --------------------------------------------- */
.games-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.game-sidebar { position: sticky; top: calc(var(--header-h) + 16px); background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 22px; }
.game-sidebar h4 { margin-bottom: 12px; color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: .06em; }
.game-sidebar .filter-block { margin-bottom: 26px; }
.filter-search { width: 100%; padding: 11px 14px; border-radius: 8px; background: var(--bg-void); border: 1px solid var(--border-subtle); color: #fff; }
.filter-search:focus { border-color: var(--border-strong); outline: none; }
.filter-check { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.9rem; cursor: pointer; color: var(--text-secondary); }
.filter-check input { accent-color: var(--red-primary); width: 16px; height: 16px; }
.filter-check:hover { color: #fff; }
.rtp-slider { width: 100%; accent-color: var(--red-primary); }
.rtp-val { font-family: var(--font-display); font-weight: 700; color: var(--red-hot); }

.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; }
.game-card {
  position: relative; background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.game-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: 0 0 26px rgba(232,0,29,0.25); }
.game-card.wide { grid-column: span 2; }
.game-card__art { aspect-ratio: 16/10; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: rgba(255,255,255,0.92); position: relative; text-align: center; padding: 10px; }
.game-card__body { padding: 14px 16px; }
.game-card__name { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.05rem; }
.game-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.badge { display: inline-block; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; padding: 4px 9px; border-radius: 20px; background: rgba(232,0,29,0.12); color: var(--red-hot); border: 1px solid var(--border-subtle); }
.badge-gold { background: rgba(255,215,0,0.1); color: var(--gold-accent); border-color: rgba(255,215,0,0.25); }
.rtp-chip { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--success); }
.game-card__play {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(2px); transition: opacity .25s;
}
.game-card:hover .game-card__play { opacity: 1; }
.load-more-wrap { text-align: center; margin-top: 38px; }

/* 21. TIMELINE / STEPPER -------------------------------------------------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.timeline::before { content: ""; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--red-dim), var(--red-primary), var(--red-dim)); z-index: 0; }
.tl-step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.tl-num { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; background: var(--bg-elevated); border: 2px solid var(--red-primary); box-shadow: 0 0 18px rgba(232,0,29,0.4); }
.tl-step h4 { margin-bottom: 6px; }
.tl-step p { font-size: 0.86rem; color: var(--text-muted); }
.countdown { display: flex; gap: 6px; justify-content: center; margin-top: 12px; }
.countdown .cd-unit { background: var(--bg-void); border: 1px solid var(--border-subtle); border-radius: 6px; padding: 6px 9px; min-width: 42px; text-align: center; }
.countdown .cd-num { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--red-hot); display: block; line-height: 1; }
.countdown .cd-lbl { font-size: 0.56rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: .05em; }

/* Horizontal stepper (download page) */
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.stepper .step { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 28px 22px; position: relative; }
.stepper .step::before { counter-increment: step; content: counter(step); position: absolute; top: -16px; left: 22px; width: 36px; height: 36px; border-radius: 50%; background: var(--red-primary); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; box-shadow: var(--shadow-red); }
.stepper .step h4 { margin: 10px 0 6px; }

/* 22. STATS COUNTER BAND -------------------------------------------------- */
.stats-band { background: linear-gradient(180deg, #0e0e0e, #080808); border-block: 1px solid var(--border-subtle); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 38px 16px; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 22%; bottom: 22%; width: 1px; background: var(--border-strong); }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: var(--red-hot); text-shadow: 0 0 18px rgba(232,0,29,0.4); }
.stat__lbl { font-size: 0.84rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* 23. PHONE / APP MOCKUP -------------------------------------------------- */
.mockup { width: 280px; max-width: 100%; aspect-ratio: 9/19; border-radius: 34px; background: linear-gradient(160deg, #1a1a1a, #0a0a0a); border: 2px solid var(--border-strong); padding: 14px; box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 0 50px rgba(232,0,29,0.15); position: relative; }
.mockup::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 90px; height: 18px; background: #000; border-radius: 0 0 14px 14px; z-index: 2; }
.mockup__screen { width: 100%; height: 100%; border-radius: 24px; background: radial-gradient(circle at 50% 25%, rgba(232,0,29,0.25), var(--bg-void) 60%); overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 24px; text-align: center; }
.mockup__screen .m-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: #fff; }
.mockup__screen .m-amt { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--gold-accent); }

/* 24. SCREENSHOTS CAROUSEL ------------------------------------------------ */
.experience { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-pills { display: flex; flex-direction: column; gap: 14px; }
.feature-pill { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); }
.feature-pill__icon { font-size: 1.6rem; flex-shrink: 0; }
.feature-pill h4 { margin-bottom: 3px; }
.feature-pill p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }
.carousel { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border-subtle); cursor: grab; }
.carousel.dragging { cursor: grabbing; }
.carousel__track { display: flex; transition: transform .5s cubic-bezier(.6,0,.3,1); }
.carousel__slide { min-width: 100%; aspect-ratio: 16/10; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff; }
.carousel__dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.carousel__dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: .2s; }
.carousel__dots button.active { background: var(--red-primary); box-shadow: 0 0 10px var(--red-primary); width: 26px; border-radius: 6px; }

/* 25. FEATURE CARDS ------------------------------------------------------- */
.feature-card { text-align: center; padding: 38px 26px; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); transition: transform .25s, border-color .25s; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 0 30px rgba(232,0,29,0.16); }
.feature-card__icon { font-size: 2.8rem; margin-bottom: 16px; filter: drop-shadow(0 0 14px rgba(232,0,29,0.5)); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* 26. BONUS CARDS — FAN DECK ---------------------------------------------- */
.bonus-fan { display: flex; justify-content: center; perspective: 1200px; padding: 30px 0; min-height: 380px; align-items: center; }
.bonus-card {
  width: 280px; padding: 30px 26px; border-radius: var(--radius); background: linear-gradient(165deg, #1c0306, var(--bg-surface));
  border: 1px solid var(--border-strong); box-shadow: 0 16px 40px rgba(0,0,0,0.6); margin-inline: -70px;
  transition: transform .4s cubic-bezier(.6,0,.3,1), box-shadow .4s; transform-origin: bottom center;
}
.bonus-card:nth-child(1) { transform: rotate(-8deg) translateY(10px); }
.bonus-card:nth-child(2) { transform: rotate(0deg); z-index: 3; }
.bonus-card:nth-child(3) { transform: rotate(8deg) translateY(10px); }
.bonus-fan:hover .bonus-card:nth-child(1) { transform: rotate(-12deg) translateX(-40px) translateY(-6px); }
.bonus-fan:hover .bonus-card:nth-child(2) { transform: translateY(-16px) scale(1.04); }
.bonus-fan:hover .bonus-card:nth-child(3) { transform: rotate(12deg) translateX(40px) translateY(-6px); }
.bonus-card:hover { box-shadow: 0 0 40px rgba(232,0,29,0.35); z-index: 5; }
.bonus-card__tag { font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; color: var(--red-hot); }
.bonus-card__amt { font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; color: var(--gold-accent); margin: 8px 0; }
.bonus-card p { font-size: 0.86rem; color: var(--text-muted); }

/* Grid bonus cards (bonus.html) */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bonus-tile { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; }
.bonus-tile__head { padding: 22px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.bonus-tile__head.welcome { background: linear-gradient(135deg, var(--red-primary), var(--red-dim)); }
.bonus-tile__head.reload { background: linear-gradient(135deg, #b8860b, #6b4e00); }
.bonus-tile__head.referral { background: linear-gradient(135deg, #00897b, #004d40); }
.bonus-tile__head.festive { background: linear-gradient(135deg, #6a1b9a, #311b92); }
.bonus-tile__head.loyalty { background: linear-gradient(135deg, #1565c0, #0d2b4e); }
.bonus-tile__body { padding: 22px; }
.bonus-tile__amt { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--gold-accent); }
.drawer-toggle { color: var(--red-hot); font-size: 0.82rem; font-weight: 600; cursor: pointer; margin-top: 12px; display: inline-block; }
.drawer { max-height: 0; overflow: hidden; transition: max-height .35s ease; font-size: 0.82rem; color: var(--text-muted); }
.drawer.open { max-height: 300px; margin-top: 10px; }

/* 27. REFERRAL + CALCULATOR ----------------------------------------------- */
.referral { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ref-timeline { display: flex; flex-direction: column; gap: 0; }
.ref-step { display: flex; gap: 18px; padding-bottom: 28px; position: relative; }
.ref-step:not(:last-child)::before { content: ""; position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: var(--border-strong); }
.ref-step__dot { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; background: var(--bg-elevated); border: 2px solid var(--red-primary); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--red-hot); box-shadow: 0 0 14px rgba(232,0,29,0.4); }
.ref-step h4 { margin-bottom: 3px; }
.ref-step p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }
.calc { background: var(--bg-surface); border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 32px; }
.calc label { display: block; font-family: var(--font-display); font-weight: 600; color: #fff; margin-bottom: 10px; }
.calc input[type=number] { width: 100%; padding: 14px; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; background: var(--bg-void); border: 1px solid var(--border-subtle); border-radius: 8px; color: #fff; text-align: center; }
.calc input[type=range] { width: 100%; accent-color: var(--red-primary); margin: 18px 0; }
.calc__result { text-align: center; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border-subtle); }
.calc__result .total { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--gold-accent); text-shadow: 0 0 20px rgba(255,215,0,0.35); }
.calc__breakdown { font-size: 0.82rem; color: var(--text-muted); margin-top: 8px; }

/* 28. WINNERS WALL — MASONRY ---------------------------------------------- */
.winners-wall { columns: 4; column-gap: 18px; }
.winner-card { break-inside: avoid; margin-bottom: 18px; padding: 20px; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); display: flex; gap: 14px; align-items: center; transition: border-color .25s, box-shadow .25s; }
.winner-card:hover { border-color: var(--border-strong); box-shadow: 0 0 22px rgba(232,0,29,0.18); }
.winner-card.tall { padding-block: 34px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--red-primary), var(--red-dim)); box-shadow: 0 0 14px rgba(232,0,29,0.35); }
.winner-card__name { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 0.95rem; }
.winner-card__game { font-size: 0.76rem; color: var(--text-muted); }
.winner-card__amt { font-family: var(--font-display); font-weight: 800; color: var(--gold-accent); font-size: 1.1rem; margin-left: auto; }

/* 29. FAQ ACCORDION ------------------------------------------------------- */
.faq-search { max-width: 480px; margin: 0 auto 30px; }
.faq-search input { width: 100%; padding: 14px 18px; border-radius: 30px; background: var(--bg-surface); border: 1px solid var(--border-subtle); color: #fff; }
.faq-search input:focus { border-color: var(--border-strong); outline: none; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-subtle); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: var(--bg-surface); }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.02rem; }
.faq-q .arrow { color: var(--red-hot); transition: transform .3s; flex-shrink: 0; font-size: 1.2rem; }
.faq-item.open .faq-q .arrow { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 18px; margin: 0; font-size: 0.92rem; color: var(--text-secondary); }
.faq-item.open .faq-a { max-height: 320px; }

/* 30. BLOG — MAGAZINE ----------------------------------------------------- */
.blog-featured { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.blog-featured__art { aspect-ratio: 16/10; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff; }
.blog-featured__body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__body h3 { font-size: 1.8rem; margin: 12px 0; }
.blog-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.blog-pill { padding: 8px 18px; border-radius: 30px; border: 1px solid var(--border-subtle); font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; color: var(--text-secondary); cursor: pointer; transition: .2s; }
.blog-pill.active, .blog-pill:hover { background: var(--red-primary); color: #fff; border-color: var(--red-primary); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; transition: transform .25s, border-color .25s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.blog-card__art { aspect-ratio: 16/9; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; text-align: center; padding: 12px; }
.blog-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card__meta { display: flex; gap: 10px; align-items: center; font-size: 0.74rem; color: var(--text-muted); }
.blog-card__body h3 { font-size: 1.15rem; }
.blog-card__body p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }
.blog-card__link { margin-top: auto; color: var(--red-hot); font-weight: 600; font-size: 0.86rem; font-family: var(--font-display); }

/* 31. CTA BANNER ---------------------------------------------------------- */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--red-dim), #0a0a0a 70%); text-align: center; padding-block: clamp(60px, 10vw, 120px); }
.cta-banner__canvas { position: absolute; inset: 0; z-index: 0; }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(2.5rem, 7vw, 5rem); color: #fff; text-shadow: 0 0 30px rgba(232,0,29,0.5); }
.cta-banner p { font-size: 1.1rem; max-width: 540px; margin: 14px auto 28px; }

/* 32. FOOTER -------------------------------------------------------------- */
.site-footer { background: #070707; border-top: 1px solid var(--border-subtle); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); max-width: 320px; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col a { display: block; padding: 5px 0; font-size: 0.88rem; color: var(--text-secondary); transition: color .2s; }
.footer-col a:hover { color: var(--red-hot); }
.footer-disclaimers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 44px 0 30px; }
.disc-card { padding: 18px 20px; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); display: flex; gap: 14px; align-items: flex-start; }
.disc-card__icon { font-size: 1.6rem; flex-shrink: 0; }
.disc-card h5 { font-family: var(--font-display); color: #fff; font-size: 0.92rem; margin-bottom: 4px; }
.disc-card p { font-size: 0.74rem; color: var(--text-muted); margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0 30px; text-align: center; font-size: 0.76rem; color: var(--text-muted); }
.footer-bottom .restricted { color: var(--text-secondary); margin-top: 6px; }
.footer-bottom .restricted strong { color: var(--danger); }

/* 33. GAME DETAIL PAGE ---------------------------------------------------- */
.game-hero { position: relative; padding: 60px 0; overflow: hidden; border-bottom: 1px solid var(--border-subtle); }
.game-hero__inner { position: relative; z-index: 2; text-align: center; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--red-hot); }
.game-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 14px; }
.game-hero__badges { display: flex; gap: 10px; justify-content: center; margin-bottom: 26px; }
.game-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: -40px auto 0; position: relative; z-index: 5; max-width: 760px; }
.game-stat { background: var(--bg-elevated); border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 24px; text-align: center; }
.game-stat__val { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--red-hot); }
.game-stat__lbl { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.game-tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 28px; flex-wrap: wrap; }
.game-tab { padding: 12px 20px; font-family: var(--font-display); font-weight: 600; color: var(--text-muted); border-bottom: 2px solid transparent; transition: .2s; }
.game-tab.active { color: #fff; border-bottom-color: var(--red-primary); }
.game-panel { display: none; }
.game-panel.active { display: block; animation: countUp .4s; }
.game-panel h3 { margin: 22px 0 12px; }
.game-panel ul { margin: 0 0 16px 20px; list-style: disc; }
.game-panel li { margin-bottom: 8px; }
.rel-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 14px; }
.rel-scroll .game-card { min-width: 200px; }

/* 34. DOWNLOAD PAGE ------------------------------------------------------- */
.dl-hero { text-align: center; padding: 60px 0; }
.dl-arc { width: 180px; height: 180px; margin: 0 auto 24px; position: relative; display: grid; place-items: center; }
.dl-arc svg { transform: rotate(-90deg); }
.dl-arc__pct { position: absolute; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--red-hot); }
.version-badge { display: inline-block; padding: 6px 16px; border-radius: 30px; background: rgba(232,0,29,0.1); border: 1px solid var(--border-subtle); color: var(--red-hot); font-family: var(--font-display); font-weight: 600; font-size: 0.84rem; margin-bottom: 16px; }
.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 600px; margin: 0 auto; }
.req-box { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 24px; text-align: center; }
.req-box__val { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: #fff; }
.req-box__lbl { font-size: 0.8rem; color: var(--text-muted); }
.version-table th, .version-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border-subtle); font-size: 0.88rem; }
.version-table th { font-family: var(--font-display); color: #fff; text-transform: uppercase; font-size: 0.78rem; letter-spacing: .05em; }
.version-table td:first-child { font-family: var(--font-display); font-weight: 700; color: var(--red-hot); }
.security-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 30px 0; }
.security-badge { display: flex; align-items: center; gap: 8px; padding: 12px 20px; border: 1px solid var(--border-subtle); border-radius: 30px; font-family: var(--font-display); font-weight: 600; color: var(--text-secondary); font-size: 0.86rem; }
.security-badge::before { content: "🛡️"; }

/* 35. LEADERBOARD --------------------------------------------------------- */
.podium { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 16px; align-items: end; max-width: 720px; margin: 0 auto 50px; }
.podium__col { text-align: center; }
.podium__avatar { width: 70px; height: 70px; margin: 0 auto 12px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: #fff; border: 3px solid; }
.podium__col.first .podium__avatar { border-color: var(--gold-accent); box-shadow: 0 0 26px rgba(255,215,0,0.5); background: linear-gradient(135deg, #b8860b, #6b4e00); }
.podium__col.second .podium__avatar { border-color: #c0c0c0; background: linear-gradient(135deg, #777, #444); }
.podium__col.third .podium__avatar { border-color: #cd7f32; background: linear-gradient(135deg, #8a5a2b, #5a3a1a); }
.podium__stand { border-radius: 10px 10px 0 0; background: linear-gradient(180deg, var(--bg-elevated), var(--bg-surface)); border: 1px solid var(--border-strong); border-bottom: none; padding: 18px 12px; transform-origin: bottom; animation: podiumRise .6s ease-out; }
.podium__col.first .podium__stand { height: 150px; border-color: var(--gold-muted); }
.podium__col.second .podium__stand { height: 110px; }
.podium__col.third .podium__stand { height: 90px; }
.podium__rank { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--gold-accent); }
.podium__amt { font-family: var(--font-display); font-weight: 700; color: var(--gold-accent); }
.lb-filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.lb-filter { padding: 9px 20px; border-radius: 30px; border: 1px solid var(--border-subtle); font-family: var(--font-display); font-weight: 600; font-size: 0.84rem; color: var(--text-secondary); cursor: pointer; transition: .2s; }
.lb-filter.active { background: var(--red-primary); color: #fff; border-color: var(--red-primary); }
.lb-table-wrap { max-width: 880px; margin: 0 auto; border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; }
.lb-table th { position: sticky; top: var(--header-h); background: var(--bg-elevated); font-family: var(--font-display); text-transform: uppercase; font-size: 0.76rem; letter-spacing: .05em; color: #fff; padding: 14px 18px; text-align: left; z-index: 2; }
.lb-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-subtle); font-size: 0.9rem; }
.lb-table tr:hover td { background: rgba(232,0,29,0.04); }
.lb-rank { font-family: var(--font-display); font-weight: 800; color: var(--red-hot); }
.lb-amt { font-family: var(--font-display); font-weight: 700; color: var(--gold-accent); }
.rank-up { color: var(--success); } .rank-down { color: var(--danger); }
.lb-name { display: flex; align-items: center; gap: 10px; }

/* 36. BLOG POST ----------------------------------------------------------- */
.post-hero { padding: 50px 0 30px; border-bottom: 1px solid var(--border-subtle); }
.post-hero .container { max-width: 820px; }
.post-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 14px 0; }
.post-meta { display: flex; gap: 14px; align-items: center; font-size: 0.84rem; color: var(--text-muted); }
.post-body { max-width: 760px; margin: 0 auto; padding: 40px clamp(16px,4vw,40px) 60px; }
.post-body h2 { font-size: 1.7rem; margin: 36px 0 14px; }
.post-body h3 { font-size: 1.3rem; margin: 26px 0 10px; }
.post-body p { font-size: 1.02rem; color: var(--text-secondary); line-height: 1.75; }
.post-body ul, .post-body ol { margin: 0 0 18px 24px; }
.post-body ul { list-style: disc; } .post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 10px; color: var(--text-secondary); }
.post-body strong { color: #fff; }
.post-callout { background: linear-gradient(135deg, rgba(232,0,29,0.08), transparent); border-left: 3px solid var(--red-primary); padding: 18px 22px; border-radius: 8px; margin: 24px 0; }
.post-cta { text-align: center; background: var(--bg-surface); border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 34px; margin: 36px 0; }

/* 37. STATIC PAGES -------------------------------------------------------- */
.legal-hero { padding: 50px 0 30px; border-bottom: 1px solid var(--border-subtle); text-align: center; }
.legal-body { max-width: 820px; margin: 0 auto; padding: 40px clamp(16px,4vw,40px) 70px; }
.legal-body h2 { font-size: 1.5rem; margin: 32px 0 12px; color: #fff; }
.legal-body h3 { font-size: 1.15rem; margin: 22px 0 8px; }
.legal-body p, .legal-body li { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.7; }
.legal-body ul, .legal-body ol { margin: 0 0 18px 24px; }
.legal-body ul { list-style: disc; } .legal-body ol { list-style: decimal; }
.legal-body li { margin-bottom: 8px; }
.legal-toc { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 30px; }
.legal-toc a { color: var(--red-hot); display: block; padding: 4px 0; font-size: 0.9rem; }

/* 38. 404 ----------------------------------------------------------------- */
.err-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.err-code { font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem, 20vw, 12rem); color: var(--red-hot); text-shadow: 0 0 40px rgba(232,0,29,0.5); line-height: 1; }

/* 39. CONTACT FORM -------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 44px; align-items: start; }
.contact-info { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 32px; }
.contact-info__item { padding: 16px 0; border-bottom: 1px solid var(--border-subtle); }
.contact-info__item:last-child { border-bottom: none; }
.contact-info__item h4 { margin-bottom: 4px; }
.contact-info__item p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-display); font-weight: 600; color: #fff; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; background: var(--bg-void); border: 1px solid var(--border-subtle); border-radius: 8px; color: #fff; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--border-strong); }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: var(--danger); animation: shake .4s; }
.form-error { color: var(--danger); font-size: 0.78rem; margin-top: 6px; display: none; }
.form-group.error .form-error { display: block; }
.form-success { text-align: center; padding: 40px; background: var(--bg-surface); border: 1px solid var(--success); border-radius: var(--radius); }
.form-success__icon { font-size: 3rem; color: var(--success); }

/* 40. SITEMAP ------------------------------------------------------------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.sitemap-col h4 { color: #fff; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border-subtle); }
.sitemap-col a { display: block; padding: 6px 0; font-size: 0.9rem; color: var(--text-secondary); }
.sitemap-col a:hover { color: var(--red-hot); }

/* 41. UTILITIES ----------------------------------------------------------- */
.text-center { text-align: center; } .text-red { color: var(--red-hot); } .text-gold { color: var(--gold-accent); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; } .mb-sm { margin-bottom: 12px; } .mb-md { margin-bottom: 24px; } .mb-lg { margin-bottom: 40px; }
.hidden { display: none !important; }
.w-full { width: 100%; }
.divider { height: 1px; background: var(--border-subtle); border: none; margin: 40px 0; }

/* 42. RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 1200px) {
  .winners-wall { columns: 3; }
  .hero__title .line { font-size: clamp(3rem, 8vw, 6rem); }
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__feed { order: 2; }
  .referral, .experience, .contact-layout, .blog-featured { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .games-layout { grid-template-columns: 1fr; }
  .game-sidebar { position: static; }
}
@media (max-width: 960px) {
  .winners-wall { columns: 2; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  /* bonus-grid mobile rules now in BONUS PAGE section below */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .timeline::before { display: none; }
}
@media (max-width: 768px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .stepper { grid-template-columns: 1fr; }
  .game-stats-row { grid-template-columns: 1fr; }
  .footer-disclaimers { grid-template-columns: 1fr; }
  .bonus-card { margin-inline: -40px; }
  .header-cta .btn:not(.btn-sm) { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero__title .line { font-size: clamp(2.6rem, 14vw, 4rem); }
}
@media (max-width: 640px) {
  .winners-wall { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
  .podium { grid-template-columns: 1fr; gap: 24px; }
  .podium__stand { height: auto !important; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: 1fr; }
  .sticky-dl__txt small { display: none; }
}
@media (max-width: 480px) {
  .bonus-fan { flex-direction: column; }
  .bonus-card { margin-inline: 0; margin-bottom: 16px; transform: none !important; }
  .hero__ctas { max-width: 100%; }
}
@media (max-width: 360px) {
  .tile-grid { grid-template-columns: 1fr; }
  .container { padding-inline: 14px; }
}

/* ============ IMAGE INTEGRATION (game + blog images) ============ */
/* Game card images */
.game-card { color: var(--text-primary); display: block; }
.game-card__art { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-void); padding: 0; }
.game-card__art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.game-card:hover .game-card__art img { transform: scale(1.06); }
.game-card__art--tall { aspect-ratio: auto; flex: 1; min-height: 240px; }
.game-card__art--tall img { height: 100%; min-height: 240px; }

/* Hero live-feed tiles with thumbnails */
.game-tile { color: var(--text-primary); text-decoration: none; }
.game-tile__thumb { width: 100%; aspect-ratio: 16 / 10; border-radius: 10px; overflow: hidden; margin-bottom: 10px; background: var(--bg-void); border: 1px solid var(--border-subtle); }
.game-tile__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Game detail hero media — portrait poster, full bleed */
.game-hero__media {
  width: 240px;
  max-width: 70%;
  margin: 0 auto 26px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-strong);
  box-shadow: 0 0 60px rgba(232,0,29,0.30), 0 20px 40px rgba(0,0,0,0.6);
  aspect-ratio: 211 / 260;
  background: var(--bg-void);
}
.game-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Related game scroll images */
.rel-scroll .game-card__art { aspect-ratio: 211 / 260; }

/* Blog card + featured images */
.blog-card__art, .blog-featured__art { overflow: hidden; background: var(--bg-void); }
.blog-card__art img, .blog-featured__art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.blog-card:hover .blog-card__art img { transform: scale(1.05); }
.blog-featured__art { aspect-ratio: 16 / 10; }

/* Blog post featured image */
.post-featured-img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border-subtle); margin-bottom: 8px; display: block; }
/* ============ SCREENSHOTS (carousel images, original framing) ============ */
.carousel__slide { aspect-ratio: auto; padding: 0; background: var(--bg-void); display: flex; align-items: center; justify-content: center; }
.carousel__slide img { display: block; width: auto; max-width: 100%; height: auto; max-height: 560px; margin: 0 auto; object-fit: contain; }
@media (max-width: 640px) { .carousel__slide img { max-height: 70vh; } }
/* ============ BRAND LOGO IMAGE ============ */
.logo { gap: 0; }
.logo__img { height: 36px; width: auto; max-width: 160px; display: block; object-fit: contain; }
.site-header.scrolled .logo__img { height: 32px; transition: height .3s; }
.footer-brand .logo__img { height: 42px; max-width: 180px; }
@media (max-width: 768px) { .logo__img { height: 30px; max-width: 132px; } }
@media (max-width: 360px) { .logo__img { height: 26px; } }
/* ============ APP SHOWCASE (hero image, premium) ============ */
.app-showcase { position: relative; overflow: hidden; background: linear-gradient(180deg, #0c0c0c, #070707); }
.app-showcase__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(232,0,29,0.16), transparent 58%),
    repeating-linear-gradient(135deg, transparent 0 7px, rgba(232,0,29,0.025) 7px 9px);
  pointer-events: none; }
.app-showcase .container { position: relative; z-index: 2; }
.app-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 600px; margin-top: 10px; }
.app-stage__glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,29,0.45), rgba(232,0,29,0.10) 45%, transparent 70%);
  filter: blur(36px); z-index: 0; }
.app-device { position: relative; z-index: 2; width: clamp(240px, 32vw, 322px); aspect-ratio: 840 / 1873;
  border-radius: 32px; padding: 8px; background: linear-gradient(160deg, #1b1b1b, #0a0a0a);
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 0 50px rgba(232,0,29,0.28); }
.app-device img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 25px; background: var(--bg-void); }

.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px;
  padding: 13px 17px; border-radius: 14px;
  background: rgba(255,255,255,0.045); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle); box-shadow: 0 12px 34px rgba(0,0,0,0.45); white-space: nowrap; }
.float-card__icon { font-size: 1.5rem; filter: drop-shadow(0 0 8px rgba(232,0,29,0.5)); }
.float-card strong { display: block; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.02rem; line-height: 1.1; }
.float-card small { color: var(--text-muted); font-size: 0.72rem; }
.fc-1 { top: 14%; left: 4%;  animation: floatY 5s ease-in-out infinite; }
.fc-2 { bottom: 18%; left: 7%; animation: floatY 6s ease-in-out infinite .6s; }
.fc-3 { top: 19%; right: 4%;  animation: floatY 5.5s ease-in-out infinite .3s; }
.fc-4 { bottom: 15%; right: 6%; animation: floatY 6.5s ease-in-out infinite .9s; }

.app-showcase__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

@media (max-width: 1024px) {
  .fc-1, .fc-2 { left: 1%; } .fc-3, .fc-4 { right: 1%; }
}
@media (max-width: 900px) {
  .app-stage { flex-direction: column; min-height: 0; gap: 26px; }
  .app-device { order: -1; width: clamp(220px, 64vw, 300px); }
  .float-card { position: static; animation: none; width: 100%; max-width: 320px; justify-content: flex-start; }
  .app-stage__glow { width: 300px; height: 300px; top: 32%; }
}
@media (prefers-reduced-motion: reduce) { .float-card { animation: none !important; } }
/* ============ GAME POSTER FIX (portrait 211x260 art, no crop) ============ */
/* Game cards everywhere: match the real poster aspect so nothing is cropped */
.game-card__art { aspect-ratio: 211 / 260; }
.game-card__art img { object-position: center; }
.game-card.wide { grid-column: auto; }                 /* uniform lobby grid */
.game-card__art--tall { aspect-ratio: 211 / 260; min-height: 0; flex: initial; }
.game-card__art--tall img { min-height: 0; }

/* Hero live-feed tiles: premium poster cards with overlaid live badge */
.tile-grid { gap: 14px; }
.game-tile { padding: 0; border-radius: 14px; overflow: hidden; background: var(--bg-surface); border: 1px solid var(--border-subtle); }
.game-tile:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 0 26px rgba(232,0,29,0.28); }
.game-tile__thumb { position: relative; width: 100%; aspect-ratio: 211 / 260; margin: 0; border: none; border-radius: 0; overflow: hidden; }
.game-tile__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .35s ease; }
.game-tile:hover .game-tile__thumb img { transform: scale(1.06); }
.game-tile__live {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 6px 7px; font-size: 0.64rem; font-family: var(--font-display); font-weight: 600;
  color: #fff; letter-spacing: .02em;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 8%, rgba(0,0,0,0.35) 60%, transparent);
}
@media (max-width: 640px) { .tile-grid { gap: 12px; } }
/* === POPULAR SEARCHES TAG CLOUD === */
.search-cloud { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:10px; }
.search-cloud a { display:inline-block; padding:7px 16px; border-radius:50px; font-size:.78rem; font-family:var(--font-display); font-weight:600; color:var(--text-secondary); background:rgba(255,255,255,0.04); border:1px solid var(--border-subtle); text-decoration:none; transition:border-color .2s,color .2s; }
.search-cloud a:hover { border-color:var(--red-primary); color:var(--red-primary); }
/* ============================================================
   AUDIT FIXES — Responsive, accessibility, performance
   ============================================================ */

/* Grid + feature-pill base rules defined in Layout section above */

/* Security row badges */
.security-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.security-badge { display: inline-block; padding: 8px 20px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle); border-radius: 50px; font-size: .8rem; font-family: var(--font-display); font-weight: 600; color: var(--text-secondary); letter-spacing: .03em; }

/* Left-aligned sec-head */
.sec-head.left { text-align: left; }
.sec-head.left::after { margin-left: 0; }

/* text-red utility */
.text-red { color: var(--red-primary); }

/* ---- 1024px tablet ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .feature-pill { padding: 14px 16px; }
  .feature-pill__icon { font-size: 1.3rem; }
  .security-row { gap: 8px; }
  .security-badge { padding: 6px 14px; font-size: .75rem; }
}

/* ---- 480px mobile ---- */
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .sec-head h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .feature-card { padding: 18px 14px; }
  .search-cloud { gap: 8px; }
  .search-cloud a { padding: 6px 12px; font-size: .72rem; }
  .game-hero__media { width: 180px; max-width: 55%; }
  .tile-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
}

/* ---- 360px smallest phones ---- */
@media (max-width: 360px) {
  .grid-4 { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: repeat(2,1fr); }
  .hero__cta { flex-direction: column; align-items: stretch; }
}

/* Focus ring for keyboard accessibility */
a:focus-visible, button:focus-visible { outline: 2px solid var(--red-primary); outline-offset: 3px; border-radius: 4px; }

/* Smooth image loading */
img { transition: opacity .2s ease; }
img[loading="lazy"] { opacity: 0; }
img[loading="lazy"].loaded { opacity: 1; }

/* Print: hide decorative chrome */
@media print {
  .site-header, .sticky-dl, .alert-strip, .affiliate-bar, .exit-popup, footer { display: none !important; }
  body { background: #fff; color: #000; }
}
/* Feature pill mobile collapse (missing from main responsive section) */
@media (max-width: 640px) {
  .feature-pill { flex-direction: column; gap: 10px; }
  .feature-pill__icon { font-size: 1.2rem; margin-top: 0; }
  .feature-pills { gap: 12px; }
}

/* Homepage featured game grid — responsive */
.game-feature-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.game-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) {
  .game-feature-grid { grid-template-columns: 1fr; }
  .game-sub-grid { gap: 12px; }
}
@media (max-width: 400px) {
  .game-sub-grid { grid-template-columns: 1fr; }
}

/* Ensure game cards use portrait aspect ratio site-wide */
.game-card__art {
  aspect-ratio: 211 / 260;
  overflow: hidden;
}
.game-card__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Rel-scroll (game detail related games) - horizontal scroll on mobile */
.rel-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rel-scroll::-webkit-scrollbar { display: none; }

/* Game stat row responsive */
@media (max-width: 480px) {
  .game-stats-row { gap: 0; }
  .game-stat { padding: 16px 12px; }
  .game-stat__val { font-size: 1.4rem; }
}

/* Tile grid on smallest screens */
@media (max-width: 400px) {
  .tile-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
}
/* ============================================================
   BONUS PAGE — FULL MOBILE REDESIGN
   ============================================================ */

/* Outer layout: tiles left, claim box right */
.bonus-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* Bonus grid: 2 columns inside the left panel */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Bonus tile refinements */
.bonus-tile {
  display: flex;
  flex-direction: column;
}
.bonus-tile__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.bonus-tile__body > p {
  flex: 1;
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}
.bonus-tile__tag {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 6px;
}
.bonus-tile__sub {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-secondary);
  vertical-align: middle;
}
.bonus-tile__amt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold-accent);
  line-height: 1.1;
  margin-bottom: 10px;
}
.bonus-cta { margin-top: auto; }

/* Claim box sidebar */
.bonus-claim-box {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.bonus-claim-box__inner {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.bonus-claim-box__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.bonus-claim-box__note {
  font-size: .72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ---- Tablet: 900px ---- */
@media (max-width: 900px) {
  .bonus-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bonus-claim-box {
    position: static;
    order: -1; /* move claim box above tiles on tablet too */
  }
  .bonus-claim-box__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }
  .bonus-claim-box__title { grid-column: 1 / -1; margin-bottom: 0; }
  .ref-timeline { grid-column: 1 / 2; }
  .bonus-claim-box__inner > .btn { grid-column: 2 / 3; }
  .bonus-claim-box__note { grid-column: 1 / -1; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---- Mobile: 640px ---- */
@media (max-width: 640px) {
  .bonus-layout { gap: 20px; }

  /* Claim box goes full-width, single column */
  .bonus-claim-box__inner {
    display: block;
  }
  .bonus-claim-box__inner > .btn { display: block; width: 100%; }
  .bonus-claim-box { order: -1; }

  /* Tiles: single column on phone */
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Horizontal card layout for tiles on phone — icon+amount row */
  .bonus-tile {
    flex-direction: column;
  }
  .bonus-tile__head {
    padding: 14px 18px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .bonus-tile__tag {
    display: none; /* hide sub-label in head on mobile, saves space */
  }
  .bonus-tile__body {
    padding: 16px 18px;
  }
  .bonus-tile__amt {
    font-size: 1.6rem;
  }
  .bonus-tile__body > p { font-size: .84rem; }
  .bonus-cta { padding: 11px 16px; font-size: .88rem; }

  /* Wagering cards */
  .bonus-grid ~ .grid-3 { grid-template-columns: 1fr; }
}

/* ---- Small phones: 400px ---- */
@media (max-width: 400px) {
  .bonus-tile__amt { font-size: 1.4rem; }
  .bonus-tile__head { padding: 12px 14px; font-size: .92rem; }
  .bonus-tile__body { padding: 14px; }
  .bonus-claim-box__inner { padding: 18px 14px; }
}