/* ============================================================
   ROKDA7 — Red & Black Neon Design System
   Unique gaming-affiliate UI. Self-hosted. Vanilla.
   ============================================================ */

/* ---------- 1. RESET & CUSTOM PROPERTIES ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette — red & black neon */
  --bg-primary:    #0a0506;
  --bg-deep:       #050203;
  --bg-card:       #15090c;
  --bg-elevated:   #1e0d11;
  --bg-glass:      rgba(20, 8, 11, 0.72);

  --red-primary:   #ff1e3c;
  --red-hot:       #ff4d63;
  --red-deep:      #c40f28;
  --red-glow:      rgba(255, 30, 60, 0.55);

  --accent-gold:   #ffd700;
  --accent-amber:  #ffb02e;

  --text-primary:  #ffffff;
  --text-secondary:#f6cdd3;
  --text-muted:    #8a5560;
  --text-faint:    #5c3a41;

  --danger:        #ff3b55;
  --success:       #36e27a;

  --border-soft:   rgba(255, 30, 60, 0.18);
  --border-mid:    rgba(255, 30, 60, 0.35);

  /* Typography */
  --font-display: 'Rajdhani', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  /* Radii */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;

  /* Effects */
  --glow-red:  0 0 22px rgba(255, 30, 60, 0.45);
  --glow-soft: 0 0 14px rgba(255, 30, 60, 0.25);
  --glow-gold: 0 0 22px rgba(255, 215, 0, 0.4);
  --shadow-card: 0 18px 50px -22px rgba(0,0,0,0.9);

  --container: 1240px;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  /* layered ambient red glow background */
  background-image:
    radial-gradient(900px 500px at 85% -5%, rgba(255, 30, 60, 0.10), transparent 60%),
    radial-gradient(700px 500px at 0% 30%, rgba(196, 15, 40, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-primary) 40%);
  background-attachment: fixed;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--red-primary); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--red-deep); border-radius: 10px; border: 2px solid var(--bg-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--red-primary); }

/* ---------- 2. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-secondary); }

.text-neon { color: var(--red-hot); text-shadow: 0 0 18px var(--red-glow); }
.text-gold { color: var(--accent-gold); text-shadow: var(--glow-gold); }
.mono { font-family: var(--font-display); letter-spacing: 0.08em; }

/* ---------- 3. LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); }
.section { padding: var(--sp-9) 0; position: relative; }
.section--tight { padding: var(--sp-7) 0; }
.grid { display: grid; gap: var(--sp-5); }
.flex { display: flex; }
.between { justify-content: space-between; align-items: center; }
.center { align-items: center; justify-content: center; }
main { display: block; }

/* angled section divider used on alternating sections */
.section--angled {
  background: linear-gradient(180deg, transparent, rgba(255,30,60,0.04) 50%, transparent);
}
.section--angled::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
  opacity: 0.4;
}

/* ---------- 4. AFFILIATE BAR ---------- */
.affiliate-bar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.affiliate-bar .container { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); padding-top: 7px; padding-bottom: 7px; text-align: center; flex-wrap: wrap; }
.affiliate-bar strong { color: var(--text-secondary); font-weight: 600; }
.affiliate-bar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); display: inline-block; }

/* ---------- 5. HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.site-header.scrolled { background: rgba(8,3,4,0.92); box-shadow: 0 8px 30px -10px rgba(0,0,0,0.8); border-color: var(--border-mid); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.04em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--red-primary), var(--red-deep));
  box-shadow: var(--glow-red); position: relative;
  font-size: 1.1rem; color: #fff; font-weight: 700;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}
.brand b { color: var(--red-hot); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 8px 12px; border-radius: var(--r-sm); color: var(--text-secondary);
  position: relative; transition: color .2s, background .2s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--red-primary); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease); box-shadow: 0 0 8px var(--red-glow);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: #fff; }

.header-cta { display: flex; align-items: center; gap: var(--sp-3); }
.hamburger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--border-mid); flex-direction: column; gap: 5px; align-items: center; justify-content: center; background: var(--bg-card); }
.hamburger span { width: 20px; height: 2px; background: var(--red-hot); border-radius: 2px; transition: .3s; }

/* ---------- 6. NAV OVERLAY (mobile) ---------- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(5,2,3,0.97); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; padding: var(--sp-6) var(--sp-5);
  transform: translateX(100%); transition: transform .4s var(--ease);
  overflow-y: auto;
}
.nav-overlay.open { transform: translateX(0); }
.nav-overlay-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-6); }
.nav-close { width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--border-mid); color: var(--red-hot); font-size: 1.6rem; background: var(--bg-card); }
.nav-overlay nav { display: flex; flex-direction: column; gap: 2px; }
.nav-overlay nav a {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; text-transform: uppercase;
  padding: 14px 8px; border-bottom: 1px solid var(--border-soft); color: var(--text-secondary);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-overlay nav a:hover, .nav-overlay nav a.active { color: var(--red-hot); }
.nav-overlay nav a::before { content: "›"; color: var(--red-primary); opacity: 0; transition: .2s; }
.nav-overlay nav a:hover::before { opacity: 1; }
.nav-overlay .btn { margin-top: var(--sp-5); }

/* ---------- 7. STICKY DOWNLOAD BAR ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: var(--bg-glass); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: 10px var(--sp-5);
  transform: translateY(120%); transition: transform .4s var(--ease);
  box-shadow: 0 -10px 30px -12px rgba(0,0,0,0.8);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .sb-info { display: flex; align-items: center; gap: var(--sp-3); min-width: 0; }
.sticky-bar .sb-info strong { font-family: var(--font-display); font-size: 1.1rem; }
.sticky-bar .sb-info span { font-size: 0.78rem; color: var(--text-muted); display: block; }
.sticky-bar .sb-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(140deg, var(--red-primary), var(--red-deep)); display: grid; place-items: center; box-shadow: var(--glow-soft); flex-shrink: 0; }

/* ---------- 8. AGE GATE ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(3,1,2,0.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: var(--sp-5);
}
.age-gate[hidden] { display: none; }
.age-card {
  max-width: 460px; width: 100%; text-align: center;
  background: linear-gradient(165deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border-mid); border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6); box-shadow: 0 0 60px -10px var(--red-glow);
}
.age-card .age-badge { width: 84px; height: 84px; margin: 0 auto var(--sp-4); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; background: var(--bg-deep); border: 2px solid var(--red-primary); color: var(--red-hot); box-shadow: var(--glow-red); }
.age-card h2 { margin-bottom: var(--sp-3); }
.age-card p { font-size: 0.92rem; margin-bottom: var(--sp-5); }
.age-actions { display: flex; gap: var(--sp-3); }
.age-actions .btn { flex: 1; }
.age-fineprint { margin-top: var(--sp-5); font-size: 0.74rem; color: var(--text-faint); }

/* ---------- 9. EXIT POPUP ---------- */
.exit-popup {
  position: fixed; inset: 0; z-index: 480;
  background: rgba(3,1,2,0.85); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: var(--sp-5);
}
.exit-popup.show { display: flex; animation: fadeIn .3s ease; }
.exit-card {
  position: relative; max-width: 480px; width: 100%; text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255,30,60,0.18), var(--bg-card) 60%);
  border: 1px solid var(--red-primary); border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6) var(--sp-7); box-shadow: 0 0 70px -8px var(--red-glow);
}
.exit-card .exit-close { position: absolute; top: 14px; right: 16px; font-size: 1.6rem; color: var(--text-muted); width: 36px; height: 36px; }
.exit-card .exit-tag { display: inline-block; font-family: var(--font-display); letter-spacing: 0.12em; color: var(--accent-gold); font-size: 0.8rem; margin-bottom: var(--sp-3); }
.exit-card h2 { font-size: 2.4rem; margin-bottom: var(--sp-3); }
.exit-card .exit-amount { font-family: var(--font-display); font-size: 3.2rem; color: var(--red-hot); text-shadow: var(--glow-red); line-height: 1; margin: var(--sp-3) 0; }
.exit-card p { margin-bottom: var(--sp-5); }

/* ---------- 10. ALERT STRIP ---------- */
.alert-strip {
  background: linear-gradient(90deg, var(--red-deep), var(--red-primary));
  color: #fff; font-size: 0.86rem; overflow: hidden;
  transition: height .35s var(--ease), opacity .3s, padding .35s;
}
.alert-strip .container { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); padding-top: 9px; padding-bottom: 9px; text-align: center; flex-wrap: wrap; }
.alert-strip a { font-weight: 700; text-decoration: underline; }
.alert-strip .alert-close { margin-left: var(--sp-3); width: 26px; height: 26px; border-radius: 6px; background: rgba(0,0,0,0.25); color: #fff; font-size: 1rem; line-height: 1; }
.alert-strip.dismissed { height: 0 !important; opacity: 0; padding: 0; }
.alert-strip .blink { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-gold); box-shadow: var(--glow-gold); }

/* ---------- 11. 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.06em;
  font-size: 0.95rem; padding: 13px 26px; border-radius: var(--r-pill);
  transition: transform .2s var(--ease), box-shadow .25s, background .25s, color .2s;
  white-space: nowrap; position: relative; border: 1px solid transparent;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-green { /* primary = red despite legacy class name not used; we use btn-red */ }
.btn-red {
  background: linear-gradient(135deg, var(--red-primary), var(--red-deep));
  color: #fff; box-shadow: var(--glow-red);
}
.btn-red:hover { box-shadow: 0 0 34px var(--red-glow), 0 8px 20px -6px rgba(0,0,0,0.6); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  color: #1a0c00; box-shadow: var(--glow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(255,215,0,0.55); }
.btn-outline {
  background: rgba(255,30,60,0.05); color: var(--red-hot);
  border: 1px solid var(--red-primary);
}
.btn-outline:hover { background: rgba(255,30,60,0.14); box-shadow: var(--glow-soft); }
.btn-ghost { background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border-soft); }
.btn-ghost:hover { border-color: var(--red-primary); color: #fff; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* ---------- 12. SECTION HEADER ---------- */
.sec-head { max-width: 720px; margin: 0 auto var(--sp-7); text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.8rem; color: var(--red-hot);
  padding: 6px 16px; border-radius: var(--r-pill);
  background: rgba(255,30,60,0.08); border: 1px solid var(--border-mid);
  margin-bottom: var(--sp-4);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red-primary); box-shadow: var(--glow-soft); }
.sec-head h2 { margin-bottom: var(--sp-3); }
.sec-head p { font-size: 1.02rem; color: var(--text-muted); }

/* ---------- 13. TICKER BAR ---------- */
.ticker {
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  background: var(--bg-deep); overflow: hidden; padding: var(--sp-4) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 var(--sp-6);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-secondary); font-size: 1.05rem; white-space: nowrap;
}
.ticker-item .pm-dot { width: 9px; height: 9px; border-radius: 3px; background: var(--red-primary); box-shadow: var(--glow-soft); transform: rotate(45deg); }

/* ---------- 14. HERO ---------- */
.hero { position: relative; padding: var(--sp-8) 0 var(--sp-9); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-7); align-items: center; }
.hero-eyebrow { margin-bottom: var(--sp-4); }
.hero h1 { margin-bottom: var(--sp-4); }
.hero h1 .hl { color: var(--red-hot); text-shadow: var(--glow-red); position: relative; }
.hero-sub { font-size: 1.15rem; color: var(--text-secondary); max-width: 520px; margin-bottom: var(--sp-6); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.trust-badges { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.trust-badge { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--text-muted); }
.trust-badge .tb-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--bg-card); border: 1px solid var(--border-soft); color: var(--red-hot); }
.trust-badge strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1rem; }


/* ---------- 15. GAME CARDS ---------- */
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.game-card {
  position: relative; display: block; background: var(--bg-card);
  border: 1px solid var(--border-soft); border-radius: var(--r-md);
  overflow: hidden; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--red-primary); box-shadow: var(--glow-soft), var(--shadow-card); }
.game-thumb {
  aspect-ratio: 4/3; display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(255,30,60,0.18), var(--bg-deep) 70%);
  font-size: 3rem;
}
.game-thumb .gt-glyph { filter: drop-shadow(0 4px 14px rgba(255,30,60,0.5)); transition: transform .3s; }
.game-card:hover .gt-glyph { transform: scale(1.12) rotate(-4deg); }
.game-badge {
  position: absolute; top: 9px; left: 9px; font-family: var(--font-display); font-weight: 700;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: var(--r-pill);
}
.game-badge.hot { background: var(--red-primary); color: #fff; box-shadow: var(--glow-soft); }
.game-badge.new { background: var(--success); color: #04140a; }
.game-badge.live { background: var(--accent-gold); color: #1a0c00; }
.game-rtp { position: absolute; top: 9px; right: 9px; font-family: var(--font-display); font-size: 0.66rem; padding: 3px 8px; border-radius: var(--r-pill); background: rgba(0,0,0,0.55); color: var(--success); border: 1px solid rgba(54,226,122,0.3); }
.game-info { padding: 12px 14px 14px; }
.game-info h3 { font-size: 1.02rem; margin-bottom: 2px; }
.game-info .gc-cat { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.game-overlay {
  position: absolute; inset: 0; background: rgba(8,3,4,0.82); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  opacity: 0; transition: opacity .25s; padding: var(--sp-4);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-overlay .btn { pointer-events: none; }

/* ---------- 16. FILTER TABS ---------- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: var(--sp-6); }
.filter-tab {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.85rem; padding: 9px 18px; border-radius: var(--r-pill);
  background: var(--bg-card); border: 1px solid var(--border-soft); color: var(--text-secondary);
  transition: .2s;
}
.filter-tab:hover { border-color: var(--red-primary); color: #fff; }
.filter-tab.active { background: linear-gradient(135deg, var(--red-primary), var(--red-deep)); color: #fff; border-color: transparent; box-shadow: var(--glow-soft); }

/* ---------- 17. DOWNLOAD STEPS ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.step-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: var(--sp-6); transition: .25s;
}
.step-card:hover { border-color: var(--border-mid); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--red-primary); line-height: 1; margin-bottom: var(--sp-3);
  opacity: 0.85;
}
.step-card h3 { margin-bottom: var(--sp-2); }
.step-card p { font-size: 0.92rem; }
.step-card .step-ico { position: absolute; top: var(--sp-5); right: var(--sp-5); font-size: 1.6rem; opacity: 0.5; }

/* countdown */
.countdown-wrap { margin-top: var(--sp-6); text-align: center; }
.countdown-label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-size: 0.85rem; margin-bottom: var(--sp-3); }
.countdown { display: inline-flex; gap: var(--sp-3); }
.cd-unit { background: var(--bg-card); border: 1px solid var(--border-mid); border-radius: var(--r-md); padding: 12px 16px; min-width: 72px; text-align: center; box-shadow: var(--glow-soft); }
.cd-unit b { font-family: var(--font-display); font-size: 2rem; color: var(--red-hot); display: block; line-height: 1; }
.cd-unit span { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

/* ---------- 18. SCREENSHOTS CAROUSEL ---------- */
.carousel { position: relative; max-width: 1000px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; border-radius: var(--r-lg); cursor: grab; }
.carousel-viewport.dragging { cursor: grabbing; }
.carousel-track { display: flex; transition: transform .5s var(--ease); will-change: transform; }
.carousel-slide { min-width: 25%; padding: 8px; }
.shot {
  aspect-ratio: 9/16; border-radius: var(--r-md); border: 1px solid var(--border-soft);
  background: linear-gradient(165deg, var(--bg-elevated), var(--bg-deep));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center; padding: var(--sp-5); position: relative; overflow: hidden;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%; background: var(--bg-glass);
  border: 1px solid var(--border-mid); color: var(--red-hot); font-size: 1.4rem;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); transition: .2s;
}
.carousel-btn:hover { background: var(--red-primary); color: #fff; }
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: var(--sp-5); }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--text-faint); transition: .2s; cursor: pointer; }
.carousel-dot.active { background: var(--red-primary); width: 26px; border-radius: var(--r-pill); box-shadow: var(--glow-soft); }

/* ---------- 19. STATS ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.stat-card {
  text-align: center; padding: var(--sp-6) var(--sp-4); border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--bg-card), var(--bg-deep));
  border: 1px solid var(--border-soft); position: relative; overflow: hidden;
}
.stat-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red-primary), transparent); }
.stat-card .stat-num { font-family: var(--font-display); font-weight: 700; font-size: 2.8rem; color: var(--red-hot); text-shadow: var(--glow-soft); line-height: 1; }
.stat-card .stat-num .suffix { color: var(--accent-gold); }
.stat-card .stat-label { font-size: 0.86rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }

/* ---------- 20. FEATURES ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.feature-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: var(--sp-6); overflow: hidden; transition: .25s;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(120deg, transparent, var(--red-primary), transparent);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card:hover::before { opacity: 1; animation: borderScan 2s linear infinite; }
.feature-ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: var(--sp-4);
  background: linear-gradient(140deg, rgba(255,30,60,0.18), rgba(255,30,60,0.04));
  border: 1px solid var(--border-mid); color: var(--red-hot);
}
.feature-card h3 { margin-bottom: var(--sp-2); font-size: 1.25rem; }
.feature-card p { font-size: 0.92rem; }

/* ---------- 21. BONUS CARDS ---------- */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); align-items: stretch; }
.bonus-card {
  display: flex; flex-direction: column; background: var(--bg-card);
  border: 1px solid var(--border-soft); border-radius: var(--r-lg); padding: var(--sp-6);
  position: relative; transition: .25s;
}
.bonus-card.featured {
  border-color: var(--red-primary); box-shadow: var(--glow-soft);
  background: radial-gradient(circle at 50% 0%, rgba(255,30,60,0.14), var(--bg-card) 60%);
}
.bonus-card:hover { transform: translateY(-5px); border-color: var(--border-mid); }
.bonus-ribbon { position: absolute; top: 14px; right: -2px; background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber)); color: #1a0c00; font-family: var(--font-display); font-weight: 700; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 14px; border-radius: var(--r-pill) 0 0 var(--r-pill); }
.bonus-tag { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-size: 0.78rem; margin-bottom: var(--sp-3); }
.bonus-amount { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--red-hot); text-shadow: var(--glow-soft); line-height: 1; margin-bottom: var(--sp-2); }
.bonus-amount small { font-size: 1.1rem; color: var(--text-secondary); }
.bonus-card h3 { margin-bottom: var(--sp-3); }
.bonus-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--sp-5); flex: 1; }
.bonus-list li { display: flex; gap: 9px; font-size: 0.9rem; color: var(--text-secondary); }
.bonus-list li::before { content: "✓"; color: var(--success); font-weight: 700; }

/* ---------- 22. REFERRAL ---------- */
.referral-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: var(--sp-7); align-items: center; }
.ref-steps { display: flex; flex-direction: column; gap: var(--sp-4); }
.ref-step { display: flex; gap: var(--sp-4); align-items: flex-start; }
.ref-step .rs-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; background: var(--bg-card); border: 1px solid var(--red-primary); color: var(--red-hot); box-shadow: var(--glow-soft); }
.ref-step h3 { margin-bottom: 3px; }
.ref-step p { font-size: 0.9rem; }
.calc-card { background: linear-gradient(165deg, var(--bg-elevated), var(--bg-card)); border: 1px solid var(--border-mid); border-radius: var(--r-xl); padding: var(--sp-6); box-shadow: var(--shadow-card); }
.calc-card h3 { text-align: center; margin-bottom: var(--sp-2); }
.calc-card .calc-sub { text-align: center; font-size: 0.84rem; color: var(--text-muted); margin-bottom: var(--sp-5); }
.calc-row { margin-bottom: var(--sp-5); }
.calc-row label { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--text-secondary); margin-bottom: 8px; }
.calc-row label b { color: var(--red-hot); font-family: var(--font-display); font-size: 1.1rem; }
.calc-slider { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 3px; background: var(--bg-deep); outline: none; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--red-primary); box-shadow: var(--glow-red); cursor: pointer; border: 2px solid #fff; }
.calc-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--red-primary); cursor: pointer; border: 2px solid #fff; }
.calc-result { text-align: center; padding: var(--sp-5); border-radius: var(--r-lg); background: var(--bg-deep); border: 1px solid var(--border-soft); }
.calc-result .cr-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.calc-result .cr-amount { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--accent-gold); text-shadow: var(--glow-gold); line-height: 1.1; }
.calc-breakdown { font-size: 0.76rem; color: var(--text-muted); margin-top: 6px; }

/* ---------- 23. LEADERBOARD ---------- */
.leaderboard { max-width: 880px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-soft); }
.lb-table { width: 100%; border-collapse: collapse; }
.lb-table th { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; color: var(--text-muted); text-align: left; padding: 14px var(--sp-5); background: var(--bg-deep); }
.lb-table td { padding: 14px var(--sp-5); border-top: 1px solid var(--border-soft); font-size: 0.92rem; }
.lb-table tbody tr { background: var(--bg-card); transition: .2s; }
.lb-table tbody tr:hover { background: var(--bg-elevated); }
.lb-rank { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; width: 60px; }
.lb-rank.r1 { color: var(--accent-gold); } .lb-rank.r2 { color: #cfd3d8; } .lb-rank.r3 { color: #e0883c; }
.lb-player { display: flex; align-items: center; gap: 10px; }
.lb-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(140deg, var(--red-primary), var(--red-deep)); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.lb-amount { font-family: var(--font-display); font-weight: 700; color: var(--success); }
.lb-game { color: var(--text-muted); }
tr.lb-top1 { background: rgba(255,215,0,0.06) !important; }

/* ---------- 24. FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-search { position: relative; margin-bottom: var(--sp-5); }
.faq-search input { width: 100%; padding: 14px 18px 14px 46px; border-radius: var(--r-pill); background: var(--bg-card); border: 1px solid var(--border-soft); color: #fff; font-size: 0.95rem; }
.faq-search input:focus { outline: none; border-color: var(--red-primary); box-shadow: var(--glow-soft); }
.faq-search .fs-ico { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--border-mid); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); padding: 18px var(--sp-5); font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--text-primary); text-transform: none; }
.faq-q .faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; border: 1px solid var(--border-mid); color: var(--red-hot); transition: .3s; font-size: 1.1rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red-primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 var(--sp-5) 18px; color: var(--text-secondary); font-size: 0.94rem; }
.faq-empty { text-align: center; color: var(--text-muted); padding: var(--sp-6); display: none; }

/* ---------- 25. BLOG GRID ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.blog-card { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-lg); overflow: hidden; transition: .25s; }
.blog-card:hover { transform: translateY(-5px); border-color: var(--red-primary); box-shadow: var(--glow-soft); }
.blog-thumb { aspect-ratio: 16/9; display: grid; place-items: center; font-size: 2.6rem; background: radial-gradient(circle at 50% 30%, rgba(255,30,60,0.16), var(--bg-deep)); position: relative; }
.blog-cat { position: absolute; top: 12px; left: 12px; font-family: var(--font-display); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: var(--r-pill); background: var(--red-primary); color: #fff; }
.blog-body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.blog-meta { font-size: 0.74rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-body h3 { font-size: 1.2rem; margin-bottom: 8px; text-transform: none; line-height: 1.2; }
.blog-body p { font-size: 0.88rem; flex: 1; margin-bottom: var(--sp-4); }
.blog-readmore { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.84rem; color: var(--red-hot); display: inline-flex; align-items: center; gap: 6px; }
.blog-card:hover .blog-readmore { gap: 12px; }

/* featured blog */
.blog-featured { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-6); background: var(--bg-card); border: 1px solid var(--border-mid); border-radius: var(--r-xl); overflow: hidden; margin-bottom: var(--sp-7); }
.blog-featured .bf-thumb { min-height: 320px; display: grid; place-items: center; font-size: 5rem; background: radial-gradient(circle at 50% 40%, rgba(255,30,60,0.2), var(--bg-deep)); }
.blog-featured .bf-body { padding: var(--sp-7); display: flex; flex-direction: column; justify-content: center; }
.blog-featured h2 { text-transform: none; margin: var(--sp-3) 0; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: var(--sp-6); }

/* ---------- 26. CTA BANNER ---------- */
.cta-banner { position: relative; border-radius: var(--r-xl); padding: var(--sp-9) var(--sp-6); text-align: center; overflow: hidden; border: 1px solid var(--border-mid); background: radial-gradient(circle at 50% 120%, rgba(255,30,60,0.25), var(--bg-card) 60%); }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% -20%, rgba(255,215,0,0.1), transparent 50%); }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: var(--sp-3); position: relative; }
.cta-banner p { max-width: 560px; margin: 0 auto var(--sp-6); position: relative; font-size: 1.05rem; }
.cta-banner .btn { position: relative; }
.cta-amount-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: var(--accent-gold); border: 1px solid var(--accent-gold); padding: 6px 16px; border-radius: var(--r-pill); margin-bottom: var(--sp-4); position: relative; }

/* ---------- 27. FOOTER ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--border-soft); margin-bottom: 0; padding-bottom: 72px; }
.footer-disclaimers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); padding: var(--sp-7) 0; border-bottom: 1px solid var(--border-soft); }
.disc-card { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: var(--sp-5); }
.disc-card .dc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.92rem; }
.disc-card .dc-ico { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,30,60,0.1); border: 1px solid var(--border-mid); color: var(--red-hot); flex-shrink: 0; }
.disc-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-6); padding: var(--sp-7) 0; }
.footer-brand .brand { margin-bottom: var(--sp-3); }
.footer-brand p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: var(--sp-4); max-width: 320px; }
.footer-col h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.92rem; color: var(--text-secondary); margin-bottom: var(--sp-4); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.86rem; color: var(--text-muted); transition: .2s; }
.footer-col a:hover { color: var(--red-hot); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border-soft); padding: var(--sp-5) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-faint); }
.footer-bottom .fb-badges { display: flex; gap: 10px; align-items: center; }
.fb-badge { font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border-mid); color: var(--text-muted); }
.fb-badge.age { color: var(--danger); border-color: var(--danger); }
.footer-restricted { font-size: 0.76rem; color: var(--text-muted); padding: var(--sp-4) 0; text-align: center; border-top: 1px solid var(--border-soft); }
.footer-restricted strong { color: var(--text-secondary); }

/* ---------- 28. GAME DETAIL PAGE ---------- */
.gp-hero { padding: var(--sp-8) 0 var(--sp-7); }
.gp-hero-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--sp-7); align-items: center; }
.gp-poster { aspect-ratio: 1; border-radius: var(--r-xl); display: grid; place-items: center; font-size: 6rem; background: radial-gradient(circle at 50% 30%, rgba(255,30,60,0.25), var(--bg-deep)); border: 1px solid var(--border-mid); box-shadow: var(--glow-soft); }
.gp-hero h1 { margin: var(--sp-3) 0; }
.gp-meta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.gp-meta-item { display: flex; flex-direction: column; padding: 10px 18px; border-radius: var(--r-md); background: var(--bg-card); border: 1px solid var(--border-soft); }
.gp-meta-item b { font-family: var(--font-display); font-size: 1.3rem; color: var(--red-hot); }
.gp-meta-item span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.gp-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-4); margin: var(--sp-7) 0; }
.tab-nav { display: flex; gap: 6px; border-bottom: 1px solid var(--border-soft); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.tab-btn { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem; padding: 12px 20px; color: var(--text-muted); border-bottom: 2px solid transparent; transition: .2s; }
.tab-btn:hover { color: #fff; }
.tab-btn.active { color: var(--red-hot); border-bottom-color: var(--red-primary); }
.tab-panel { display: none; animation: fadeIn .3s; }
.tab-panel.active { display: block; }
.tab-panel h3 { margin: var(--sp-4) 0 var(--sp-3); }
.tab-panel p, .tab-panel li { color: var(--text-secondary); margin-bottom: 10px; }
.tab-panel ul { padding-left: 0; }
.tab-panel ul li { display: flex; gap: 10px; }
.tab-panel ul li::before { content: "▸"; color: var(--red-primary); }

/* ---------- 29. DOWNLOAD PAGE ---------- */
.version-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; padding: 6px 16px; border-radius: var(--r-pill); background: rgba(54,226,122,0.1); border: 1px solid rgba(54,226,122,0.3); color: var(--success); font-size: 0.84rem; }
.req-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-4); max-width: 720px; margin: 0 auto; }
.req-item { display: flex; gap: var(--sp-4); align-items: center; padding: var(--sp-4) var(--sp-5); background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-md); }
.req-item .ri-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem; background: rgba(255,30,60,0.08); border: 1px solid var(--border-mid); color: var(--red-hot); flex-shrink: 0; }
.req-item b { display: block; font-family: var(--font-display); } .req-item span { font-size: 0.82rem; color: var(--text-muted); }
.version-table { width: 100%; border-collapse: collapse; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border-soft); }
.version-table th { background: var(--bg-deep); text-align: left; padding: 12px var(--sp-5); font-family: var(--font-display); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--text-muted); }
.version-table td { padding: 12px var(--sp-5); border-top: 1px solid var(--border-soft); font-size: 0.88rem; }
.version-table tbody tr { background: var(--bg-card); }
.tag-current { font-family: var(--font-display); font-size: 0.7rem; padding: 2px 9px; border-radius: var(--r-pill); background: var(--success); color: #04140a; }

/* ---------- 30. STATIC / LEGAL PAGES ---------- */
.page-hero { padding: var(--sp-8) 0 var(--sp-6); text-align: center; border-bottom: 1px solid var(--border-soft); position: relative; }
.page-hero .eyebrow { margin-bottom: var(--sp-4); }
.page-hero p { max-width: 640px; margin: var(--sp-3) auto 0; color: var(--text-muted); }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--text-muted); margin-bottom: var(--sp-4); }
.breadcrumb a:hover { color: var(--red-hot); } .breadcrumb span { color: var(--text-faint); }
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: var(--sp-7) 0 var(--sp-3); color: var(--text-primary); }
.prose h3 { font-size: 1.2rem; margin: var(--sp-5) 0 var(--sp-2); text-transform: none; color: var(--red-hot); }
.prose p { margin-bottom: var(--sp-4); color: var(--text-secondary); }
.prose ul { padding-left: var(--sp-5); margin-bottom: var(--sp-4); list-style: none; }
.prose ul li { position: relative; padding-left: var(--sp-4); margin-bottom: 8px; color: var(--text-secondary); }
.prose ul li::before { content: "▸"; position: absolute; left: 0; color: var(--red-primary); }
.prose a { color: var(--red-hot); text-decoration: underline; }
.prose strong { color: #fff; }
.toc { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: var(--sp-5); margin-bottom: var(--sp-6); }
.toc h2, .toc .toc-title { margin-bottom: var(--sp-3); } .toc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc a { color: var(--text-secondary); font-size: 0.9rem; } .toc a:hover { color: var(--red-hot); }
.note-box { background: rgba(255,30,60,0.06); border: 1px solid var(--border-mid); border-left: 3px solid var(--red-primary); border-radius: var(--r-sm); padding: var(--sp-4) var(--sp-5); margin: var(--sp-5) 0; }
.note-box.warn { background: rgba(255,59,85,0.08); border-left-color: var(--danger); }

/* about / values */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); }
.value-card { padding: var(--sp-6); background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-lg); text-align: center; }
.value-card .v-ico { font-size: 2.2rem; margin-bottom: var(--sp-3); }

/* ---------- 31. 404 ---------- */
.error-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--sp-7); }
.error-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(6rem, 22vw, 16rem); line-height: 0.9; color: var(--red-hot); text-shadow: 0 0 40px var(--red-glow); letter-spacing: 0.02em; }
.error-page h2 { margin: var(--sp-3) 0; } .error-page p { max-width: 440px; margin: 0 auto var(--sp-6); color: var(--text-muted); }

/* ---------- 32. CONTACT FORM ---------- */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--sp-7); align-items: start; }
.contact-info-card { padding: var(--sp-6); background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-lg); margin-bottom: var(--sp-4); display: flex; gap: var(--sp-4); align-items: center; }
.contact-info-card .ci-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; background: rgba(255,30,60,0.08); border: 1px solid var(--border-mid); color: var(--red-hot); flex-shrink: 0; }
.contact-info-card b { font-family: var(--font-display); display: block; } .contact-info-card span { font-size: 0.86rem; color: var(--text-muted); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-lg); padding: var(--sp-6); }
.form-row { margin-bottom: var(--sp-5); }
.form-row label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }
.form-control { width: 100%; padding: 13px 16px; border-radius: var(--r-sm); background: var(--bg-deep); border: 1px solid var(--border-soft); color: #fff; font-size: 0.94rem; transition: .2s; }
.form-control:focus { outline: none; border-color: var(--red-primary); box-shadow: var(--glow-soft); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row.invalid .form-control { border-color: var(--danger); }
.form-error { color: var(--danger); font-size: 0.78rem; margin-top: 6px; display: none; }
.form-row.invalid .form-error { display: block; }
.form-success { display: none; text-align: center; padding: var(--sp-6); background: rgba(54,226,122,0.08); border: 1px solid rgba(54,226,122,0.3); border-radius: var(--r-md); }
.form-success.show { display: block; animation: slideInUp .4s; }
.form-success .fs-check { width: 60px; height: 60px; margin: 0 auto var(--sp-3); border-radius: 50%; background: var(--success); color: #04140a; display: grid; place-items: center; font-size: 1.8rem; }

/* ---------- 33. SITEMAP ---------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.sitemap-col h3 { font-size: 1.1rem; margin-bottom: var(--sp-3); color: var(--red-hot); padding-bottom: 8px; border-bottom: 1px solid var(--border-soft); }
.sitemap-col ul { display: flex; flex-direction: column; gap: 8px; }
.sitemap-col a { color: var(--text-secondary); font-size: 0.9rem; } .sitemap-col a:hover { color: var(--red-hot); padding-left: 4px; }

/* ---------- 34. UTILITIES ---------- */
.hidden, [hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--red-primary); color: #fff; padding: 10px 18px; border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 600; }
.skip-link:focus { left: 8px; }
.text-center { text-align: center; } .text-left { text-align: left; }
.mt-0{margin-top:0}.mt-4{margin-top:var(--sp-5)}.mt-6{margin-top:var(--sp-7)}
.mb-0{margin-bottom:0}.mb-4{margin-bottom:var(--sp-5)}.mb-6{margin-bottom:var(--sp-7)}
.maxw-720 { max-width: 720px; margin-left: auto; margin-right: auto; }
.view-all-wrap { text-align: center; margin-top: var(--sp-7); }
.divider { height: 1px; background: var(--border-soft); margin: var(--sp-6) 0; }

:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 3px; border-radius: 4px; }

.load-more-wrap { text-align: center; margin-top: var(--sp-7); }
.games-count { text-align: center; color: var(--text-muted); font-size: 0.86rem; margin-bottom: var(--sp-5); }
.games-count b { color: var(--red-hot); font-family: var(--font-display); }

/* ---------- 35. RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .referral-grid, .contact-grid, .gp-hero-grid, .blog-featured { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
  .header-cta .btn:not(.btn-icon-only) { display: none; }
}
@media (max-width: 960px) {
  .features-grid, .bonus-grid, .blog-grid, .values-grid, .footer-disclaimers, .sitemap-grid, .req-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .gp-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: var(--sp-8) 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { min-width: 50%; }
  .footer-cols, .footer-disclaimers, .features-grid, .bonus-grid, .blog-grid, .values-grid, .sitemap-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-bar .sb-info span { display: none; }
  .gp-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .container { padding: 0 var(--sp-4); }
  .carousel-slide { min-width: 70%; }
  .carousel-btn { display: none; }
  .hero-ctas .btn { flex: 1; }
  .req-grid { grid-template-columns: 1fr; }
  .lb-game, .lb-table th:nth-child(4), .lb-table td:nth-child(4) { display: none; }
  .cd-unit { min-width: 60px; padding: 10px; }
}
@media (max-width: 480px) {
  .stats-grid, .gp-stats { grid-template-columns: 1fr 1fr; }
  .game-grid { grid-template-columns: 1fr 1fr; }
  .carousel-slide { min-width: 85%; }
  .trust-badges { gap: var(--sp-4); }
}
@media (max-width: 360px) {
  .game-grid { grid-template-columns: 1fr; }
  .bonus-amount { font-size: 2.4rem; }
}

/* ============================================================
   REDESIGN v2 — Premium hero scene + game cards
   ============================================================ */

/* ---------- HERO (redesigned) ---------- */
.hero { padding: 56px 0 104px; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -160px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255,30,60,0.16), transparent 62%);
  filter: blur(10px); pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { grid-template-columns: 1.06fr 0.94fr; gap: 40px; }

.hero-eyebrow { background: linear-gradient(90deg, rgba(255,30,60,0.16), rgba(255,30,60,0.04)); }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.8rem); line-height: 0.98; letter-spacing: -0.01em; }
.hero h1 .hl {
  background: linear-gradient(100deg, var(--red-hot), var(--accent-gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: none; display: inline-block;
}

.hero-proof { display: flex; align-items: center; gap: 14px; margin: 4px 0 26px; }
.hero-proof .avatars { display: flex; }
.hero-proof .avatars span {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--bg-primary); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; color: #fff;
  background: linear-gradient(140deg, var(--red-primary), var(--red-deep));
}
.hero-proof .avatars span:first-child { margin-left: 0; }
.hero-proof .avatars span:nth-child(2){ background: linear-gradient(140deg,#ff7a2f,#c4380f);}
.hero-proof .avatars span:nth-child(3){ background: linear-gradient(140deg,#ffd700,#c79b00); color:#1a0c00;}
.hero-proof .avatars span:nth-child(4){ background: linear-gradient(140deg,#8a5560,#3a2026);}
.hero-proof .hp-text strong { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.hero-proof .hp-text span { font-size: 0.8rem; color: var(--accent-gold); letter-spacing: 0.04em; }

/* hero stage */
.hero-stage { position: relative; min-height: 600px; display: grid; place-items: center; perspective: 1500px; }
.stage-glow {
  position: absolute; width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,30,60,0.40), rgba(255,215,0,0.06) 45%, transparent 68%);
  filter: blur(14px); animation: glowMove 9s ease-in-out infinite; z-index: 0;
}
.stage-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.stage-ring.ring-a { width: 430px; height: 430px; border: 1px dashed rgba(255,30,60,0.22); animation: spinSlow 48s linear infinite; }
.stage-ring.ring-b { width: 320px; height: 320px; border: 1px solid rgba(255,215,0,0.12); animation: spinSlow 36s linear infinite reverse; }

/* device */
.device {
  position: relative; z-index: 2; width: clamp(230px, 64vw, 300px); height: auto;
  transform-style: preserve-3d; animation: deviceFloat 7s ease-in-out infinite;
}
.device-frame {
  width: 100%; height: auto; border-radius: 48px; padding: 13px;
  background: linear-gradient(165deg, #2a1218, #0b0506 62%);
  border: 1px solid rgba(255,90,110,0.35);
  box-shadow: 0 50px 90px -34px #000, 0 0 60px -14px var(--red-glow), inset 0 0 0 2px rgba(255,255,255,0.04);
  position: relative;
}
.device-frame::after { /* side button */
  content: ""; position: absolute; right: -3px; top: 150px; width: 3px; height: 64px; border-radius: 3px;
  background: linear-gradient(var(--red-deep), var(--red-primary));
}
.device-notch { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 116px; height: 26px; background: #050203; border-radius: 0 0 16px 16px; z-index: 5; }
.device-screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden; position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(255,30,60,0.18), #07060a 62%);
  border: 1px solid rgba(255,30,60,0.18);
  padding: 44px 16px 18px; display: flex; flex-direction: column; gap: 12px;
}
.app-top { display: flex; align-items: center; justify-content: space-between; }
.app-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.04em; }
.app-brand b { color: var(--red-hot); }
.app-wallet { text-align: right; }
.app-wallet span { display: block; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }
.app-wallet b { font-family: var(--font-display); font-size: 1.1rem; color: var(--accent-gold); text-shadow: var(--glow-gold); }

/* crash card inside phone */
.crash-card {
  background: linear-gradient(165deg, rgba(255,30,60,0.10), rgba(8,4,6,0.6));
  border: 1px solid var(--border-mid); border-radius: 20px; padding: 14px;
  box-shadow: inset 0 0 24px -10px var(--red-glow);
}
.crash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.crash-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.1em; color: var(--danger); }
.crash-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--danger); box-shadow: 0 0 8px var(--danger); animation: blink 1.2s infinite; }
.crash-game { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-display); letter-spacing: 0.06em; }
.crash-graph { position: relative; height: 132px; }
.crash-graph svg { width: 100%; height: 100%; display: block; }
.crash-area { fill: url(#crashFill); opacity: 0.5; }
.crash-line { fill: none; stroke: url(#crashStroke); stroke-width: 3.5; stroke-linecap: round; stroke-dasharray: 360; animation: crashDraw 3.4s ease-in-out infinite; filter: drop-shadow(0 0 6px var(--red-glow)); }
.crash-dot { fill: #fff; animation: crashDot 1.2s ease-in-out infinite; }
.crash-mult { position: absolute; top: 8px; left: 0; right: 0; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: #fff; text-shadow: 0 0 22px var(--red-glow); line-height: 1; }
.crash-mult span { color: var(--red-hot); font-size: 1.6rem; }
.crash-actions { margin-top: 10px; }
.crash-btn { display: block; text-align: center; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; padding: 11px; border-radius: 13px; background: linear-gradient(135deg, var(--success), #1fae5c); color: #04140a; box-shadow: 0 0 18px -4px var(--success); }

.app-games { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: auto; }
.app-games .ag-tile { aspect-ratio: 1; border-radius: 12px; display: grid; place-items: center; font-size: 1.15rem; background: var(--bg-card); border: 1px solid var(--border-soft); }

/* floating cards around device */
.float-card {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px;
  background: rgba(16,7,10,0.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--border-mid); border-radius: 16px; padding: 11px 15px 11px 11px;
  box-shadow: 0 20px 44px -18px #000, var(--glow-soft);
}
.float-card b { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; color: var(--text-primary); display: block; line-height: 1.2; }
.float-card .fc-amt { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--success); }
.float-card .fc-amt.gold { color: var(--accent-gold); }
.float-card .fc-ava { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; background: linear-gradient(140deg, var(--red-primary), var(--red-deep)); flex-shrink: 0; }
.float-card .fc-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-size: 1.2rem; background: rgba(255,215,0,0.12); border: 1px solid rgba(255,215,0,0.3); flex-shrink: 0; }
.float-card.win { top: 6%; left: -4%; animation: floatY 5.5s ease-in-out infinite; }
.float-card.bonus { bottom: 9%; right: -6%; animation: floatY2 6.5s ease-in-out infinite; }

.float-pill {
  position: absolute; z-index: 4; top: 44%; right: -7%;
  display: flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber)); color: #1a0c00;
  border-radius: var(--r-pill); padding: 8px 15px; font-family: var(--font-display); font-weight: 700;
  box-shadow: 0 12px 30px -10px rgba(255,215,0,0.5); animation: floatY3 4.5s ease-in-out infinite;
}
.float-pill b { font-size: 1.2rem; }
.float-pill span { font-weight: 600; font-size: 0.66rem; opacity: 0.85; border-left: 1px solid rgba(0,0,0,0.25); padding-left: 7px; }

.coin { position: absolute; z-index: 1; font-size: 1.7rem; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5)); }
.coin.c1 { top: 16%; right: 4%; animation: coinSpin 5s ease-in-out infinite; }
.coin.c2 { bottom: 22%; left: 2%; animation: coinSpin 6s ease-in-out infinite 0.6s; }
.coin.c3 { top: 60%; left: 10%; font-size: 1.2rem; animation: coinSpin 7s ease-in-out infinite 1.2s; }

/* ---------- GAME CARDS (redesigned, applies site-wide) ---------- */
.game-card {
  background: linear-gradient(170deg, var(--bg-elevated), var(--bg-card));
  border-radius: 18px;
}
.game-card::before { /* neon ring on hover */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, var(--red-hot), transparent 40%, transparent 60%, var(--accent-gold));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s; z-index: 3; pointer-events: none;
}
.game-card:hover::before { opacity: 1; }
.game-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -20px #000, 0 0 30px -8px var(--red-glow); }

.game-thumb { aspect-ratio: 1 / 1; overflow: hidden; }
.game-thumb::after { /* sheen sweep */
  content: ""; position: absolute; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: translateX(-150%) skewX(-18deg); pointer-events: none;
}
.game-card:hover .game-thumb::after { animation: sheen 0.9s ease; }
.game-thumb .gt-glyph { font-size: 3.2rem; transition: transform .35s var(--ease); }
.game-card:hover .gt-glyph { transform: scale(1.18) translateY(-4px); }

.game-card[data-category="crash"]  .game-thumb { background: radial-gradient(circle at 50% 34%, rgba(255,86,52,0.32), #1a0a08 72%); }
.game-card[data-category="cards"]  .game-thumb { background: radial-gradient(circle at 50% 34%, rgba(255,30,60,0.34), #1a0810 72%); }
.game-card[data-category="live"]   .game-thumb { background: radial-gradient(circle at 50% 34%, rgba(255,196,40,0.26), #170f06 72%); }
.game-card[data-category="slots"]  .game-thumb { background: radial-gradient(circle at 50% 34%, rgba(214,40,120,0.26), #170711 72%); }
.game-card[data-category="lottery"].game-thumb,
.game-card[data-category="lottery"] .game-thumb { background: radial-gradient(circle at 50% 34%, rgba(120,80,255,0.24), #0f0a1a 72%); }
.game-card[data-category="sports"] .game-thumb { background: radial-gradient(circle at 50% 34%, rgba(54,226,122,0.22), #07140d 72%); }

.game-info { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.game-info .gc-meta { min-width: 0; }
.game-info h3 { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-play-ico {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg-deep); border: 1px solid var(--border-mid); color: var(--red-hot);
  font-size: 0.8rem; transition: .25s;
}
.game-card:hover .game-play-ico { background: var(--red-primary); color: #fff; box-shadow: var(--glow-soft); transform: scale(1.1); }
.game-overlay { background: linear-gradient(0deg, rgba(8,3,4,0.92), rgba(8,3,4,0.45)); }

/* ---------- GAMES PAGE: stat strip ---------- */
.games-hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
.ghs-chip {
  display: flex; flex-direction: column; align-items: center; min-width: 116px;
  padding: 14px 20px; border-radius: var(--r-md);
  background: var(--bg-card); border: 1px solid var(--border-soft);
}
.ghs-chip b { font-family: var(--font-display); font-size: 1.7rem; color: var(--red-hot); line-height: 1; }
.ghs-chip span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 5px; }

/* responsive for redesigned hero (device width via clamp, height via aspect-ratio) */
@media (max-width: 1024px) {
  .hero-stage { min-height: 0; }
  .device { transform: rotateY(-8deg) rotateX(3deg); }
}
@media (max-width: 768px) {
  .hero { padding: 28px 0 64px; }
  .hero-stage { margin-top: 6px; }
  .device { animation: floatPhone 7s ease-in-out infinite; transform: none; }
  .float-card.win { left: 0; top: 2%; }
  .float-card.bonus { right: 0; bottom: 4%; }
  .float-pill { right: 0; }
  .coin.c1 { right: 0; } .coin.c2 { left: 0; }
}
/* Clean phone hero: drop decorative floats that overlap the device, centre the copy */
@media (max-width: 640px) {
  .hero { padding: 18px 0 52px; }
  .hero-stage { margin-top: 20px; }
  .float-card, .float-pill, .coin, .stage-ring { display: none; }
  .stage-glow { width: 78%; max-width: 340px; aspect-ratio: 1; height: auto; }
  .device { width: clamp(220px, 68vw, 280px); }
  .hero-grid { gap: var(--sp-5); }
  .hero-copy { text-align: center; }
  .hero-eyebrow, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .trust-badges, .hero-proof { justify-content: center; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
}

/* ============================================================
   BRAND LOGO IMAGE + HERO DEVICE IMAGE
   ============================================================ */
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand-logo { height: 38px; width: auto; display: block; object-fit: contain; }
.site-header .brand-logo { height: 34px; }
.nav-overlay .brand-logo { height: 34px; }
.footer-brand .brand-logo { height: 46px; margin-bottom: 6px; }

@media (max-width: 768px) {
  .site-header .brand-logo { height: 32px; }
}
@media (max-width: 640px) {
  .site-header .brand-logo { height: 28px; }
  .nav-overlay .brand-logo { height: 30px; }
  .footer-brand .brand-logo { height: 40px; }
}
@media (max-width: 360px) {
  .site-header .brand-logo { height: 25px; }
}

/* hero phone-mockup image */
/* screen matches the hero image's native ratio (840x1873) so it fits with no crop/stretch */
.device-screen.has-img { padding: 0; display: block; height: auto; aspect-ratio: 840 / 1873; }
.device-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; border-radius: 36px;
}

/* ============================================================
   REAL IMAGES — game art, blog, screenshots
   ============================================================ */

/* ----- Game card art (211x260, portrait 4:5) ----- */
.game-thumb { aspect-ratio: 211 / 260; padding: 0; }
.game-thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform .4s var(--ease);
}
.game-card:hover .game-thumb img { transform: scale(1.07); }
.game-thumb .gt-glyph { display: none; }
/* keep category tint only as a subtle backdrop behind transparent art */
.game-card .game-thumb { background: var(--bg-deep); }

/* ----- Game detail poster ----- */
.gp-poster { aspect-ratio: 211 / 260; padding: 0; overflow: hidden; font-size: 0; }
.gp-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ----- Blog images (1536x1024, 3:2) ----- */
.blog-thumb { aspect-ratio: 3 / 2; padding: 0; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .4s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb .blog-cat { z-index: 2; }

.bf-thumb { padding: 0; overflow: hidden; min-height: 300px; }
.bf-thumb img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; object-position: center; display: block; }

.post-figure { margin: var(--sp-5) 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-soft); }
.post-figure img { width: 100%; height: auto; display: block; aspect-ratio: 3 / 2; object-fit: cover; }

/* ----- Screenshots (phone, ~0.448) ----- */
.shot.shot-img { padding: 0; overflow: hidden; border: 1px solid var(--border-mid); aspect-ratio: 1080 / 2412; background: var(--bg-deep); box-shadow: 0 18px 40px -20px #000; }
.shot.shot-img::before { content: none; display: none; }
.shot.shot-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.carousel-slide { padding: 10px; }

/* ============================================================
   RICH CONTENT COMPONENTS (expanded pages)
   ============================================================ */
.lead { font-size: 1.12rem; line-height: 1.75; color: var(--text-secondary); max-width: 860px; }
.section--narrow .container { max-width: 920px; }

/* info / highlight cards grid */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
.info-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-lg);
  padding: var(--sp-6); transition: border-color .25s, transform .25s;
}
.info-card:hover { border-color: var(--border-mid); transform: translateY(-4px); }
.info-card .ic-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: var(--sp-4); background: linear-gradient(140deg, rgba(255,30,60,0.18), rgba(255,30,60,0.04)); border: 1px solid var(--border-mid); color: var(--red-hot); }
.info-card h3 { font-size: 1.12rem; margin-bottom: var(--sp-2); text-transform: none; }
.ref-step h3 { text-transform: none; }
.info-card p { font-size: 0.92rem; color: var(--text-muted); }
@media (max-width: 768px) { .info-grid, .info-grid.three { grid-template-columns: 1fr; } }

/* checklist */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin: var(--sp-5) 0; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-secondary); font-size: 0.95rem; }
.checklist li::before { content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(54,226,122,0.14); color: var(--success); display: grid; place-items: center; font-size: 0.78rem; font-weight: 700; margin-top: 1px; }
@media (max-width: 640px) { .checklist { grid-template-columns: 1fr; } }

/* stat row band */
.mini-stats { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }
.mini-stat { text-align: center; padding: var(--sp-4) var(--sp-5); border-radius: var(--r-md); background: var(--bg-card); border: 1px solid var(--border-soft); min-width: 150px; flex: 1; }
.mini-stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--red-hot); line-height: 1; }
.mini-stat span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; display: block; }

/* payment chips row */
.pay-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pay-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: var(--r-pill); background: var(--bg-card); border: 1px solid var(--border-soft); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.03em; color: var(--text-secondary); }
.pay-chip::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--red-primary); transform: rotate(45deg); box-shadow: var(--glow-soft); }

/* SEO / long content footer block */
.seo-content { background: var(--bg-deep); border-top: 1px solid var(--border-soft); }
.seo-content .prose h2 { font-size: 1.4rem; }
.seo-content .prose h3 { font-size: 1.1rem; }
.seo-content .prose p, .seo-content .prose li { color: var(--text-muted); font-size: 0.92rem; }
.kw-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-4); }
.kw-links a { font-size: 0.82rem; padding: 6px 14px; border-radius: var(--r-pill); background: var(--bg-card); border: 1px solid var(--border-soft); color: var(--text-secondary); text-decoration: none; transition: .2s; }
.kw-links a:hover { border-color: var(--red-primary); color: var(--red-hot); }

/* category description blocks (games page) */
.cat-block { display: grid; grid-template-columns: 70px 1fr; gap: var(--sp-4); align-items: start; padding: var(--sp-5); background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--r-lg); }
.cat-block .cb-ico { width: 70px; height: 70px; border-radius: 18px; display: grid; place-items: center; font-size: 2rem; background: linear-gradient(140deg, rgba(255,30,60,0.18), rgba(255,30,60,0.03)); border: 1px solid var(--border-mid); }
.cat-block h3 { margin-bottom: 6px; }
.cat-block p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
.cat-block .cb-link { font-family: var(--font-display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--red-hot); margin-top: 10px; display: inline-block; }
@media (max-width: 640px) { .cat-block { grid-template-columns: 1fr; } .cat-block .cb-ico { width: 56px; height: 56px; font-size: 1.6rem; } }

/* spec table zebra striping + mobile horizontal scroll */
.version-table tbody tr:nth-child(even) { background: var(--bg-elevated); }
@media (max-width: 600px) {
  .prose .version-table { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .leaderboard { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
