/* ============================================================
   365in — style.css  | Premium Dark-Green Design System
   India's #1 Gaming Affiliate Platform
   ------------------------------------------------------------
   01 Reset + Variables      14 Game Cards
   02 Typography             15 Filter Tabs
   03 Layout System          16 How It Works
   04 Affiliate Bar          17 Screenshots Carousel
   05 Header                 18 Features Grid
   06 Mobile Nav             19 Bonus Cards
   07 Sticky Bottom Bar      20 Referral Section
   08 Button System          21 Leaderboard
   09 Section Pattern        22 Blog Grid
   10 Ticker                 23 FAQ
   11 Hero                   24 CTA Banner
   12 Phone Mockup           25 Footer
   13 Trust Stats            26-39 Pages + Utilities + Responsive
   ============================================================ */

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

:root {
  --bg-base:        #080E0A;
  --bg-surface:     #0D1710;
  --bg-elevated:    #132218;
  --green-primary:  #00C853;
  --green-deep:     #00A847;
  --green-glow:     #39FF6A;
  --green-muted:    #1A3D28;
  --gold-accent:    #FFD700;
  --gold-soft:      #FFC107;
  --text-primary:   #FFFFFF;
  --text-secondary: #B2DFBC;
  --text-muted:     #5A8A6A;
  --border-subtle:  #1E3A28;
  --danger:         #FF3D57;

  --gradient-hero:  linear-gradient(135deg, #080E0A 0%, #0F2018 50%, #080E0A 100%);
  --gradient-green: linear-gradient(135deg, #00C853, #00A847);
  --gradient-gold:  linear-gradient(135deg, #FFD700, #FFC107);
  --glass-bg:       rgba(13, 23, 16, 0.75);
  --glass-border:   rgba(0, 200, 83, 0.18);

  --font-display: "Rajdhani", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  --header-h: 80px;
  --container: 1280px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(0, 200, 83, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body.menu-open { overflow: hidden; }

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

::selection { background: var(--green-primary); color: #04140A; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--green-muted); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-deep); }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  background: var(--green-primary); color: #04140A; padding: 12px 20px;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--green-glow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== 02. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: 0.5px; }
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.4vw, 24px); }
h4 { font-size: 18px; }
p  { font-size: 16px; color: var(--text-secondary); }

.text-grad-green {
  background: var(--gradient-green);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-grad-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-grad-mix {
  background: linear-gradient(120deg, var(--green-glow), var(--gold-accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 0 40px rgba(57, 255, 106, 0.25);
}

/* ===== 03. LAYOUT SYSTEM ===== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.grid { display: grid; gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

main { display: block; }

/* ===== 04. AFFILIATE BAR ===== */
.affiliate-bar {
  background: var(--green-muted);
  color: var(--text-secondary);
  font-size: 12.5px; text-align: center;
  padding: 8px 40px 8px 16px; position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.affiliate-bar.hidden { display: none; }
.affiliate-bar span { font-weight: 500; }
.affiliate-bar .ab-close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 16px; line-height: 1;
  transition: background 0.2s;
}
.affiliate-bar .ab-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ===== 05. HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8, 14, 10, 0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 200, 83, 0.15);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(8, 14, 10, 0.92);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.logo {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  letter-spacing: 1px; display: inline-flex; align-items: center; gap: 6px;
}
.logo .logo-mark {
  background: var(--gradient-green);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo .logo-in { color: var(--gold-accent); }
.logo:hover { filter: brightness(1.1); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 14.5px; font-weight: 500; color: var(--text-secondary);
  padding: 8px 13px; border-radius: 8px; position: relative; transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px;
  background: var(--green-primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease); border-radius: 2px;
}
.main-nav a:hover { color: var(--text-primary); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--green-glow); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--glass-border); background: var(--glass-bg);
}
.hamburger span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 06. MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(8, 14, 10, 0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; padding: 80px 24px 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
body.menu-open .mobile-nav { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
  color: var(--text-secondary); padding: 10px 16px;
  opacity: 0; transform: translateY(20px); transition: opacity 0.4s, transform 0.4s, color 0.2s;
}
body.menu-open .mobile-nav a { opacity: 1; transform: translateY(0); }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--green-glow); }
.mobile-nav a:nth-child(1)  { transition-delay: 0.05s; }
.mobile-nav a:nth-child(2)  { transition-delay: 0.10s; }
.mobile-nav a:nth-child(3)  { transition-delay: 0.15s; }
.mobile-nav a:nth-child(4)  { transition-delay: 0.20s; }
.mobile-nav a:nth-child(5)  { transition-delay: 0.25s; }
.mobile-nav a:nth-child(6)  { transition-delay: 0.30s; }
.mobile-nav a:nth-child(7)  { transition-delay: 0.35s; }
.mobile-nav a:nth-child(8)  { transition-delay: 0.40s; }
.mobile-nav a:nth-child(9)  { transition-delay: 0.45s; }
.mobile-nav a:nth-child(10) { transition-delay: 0.50s; }
.mobile-nav .mobile-cta { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== 07. STICKY BOTTOM BAR (mobile) ===== */
.sticky-bottom {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(8, 14, 10, 0.9); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--glass-border);
  transform: translateY(120%); transition: transform 0.4s var(--ease);
}
.sticky-bottom.show { transform: translateY(0); }
.sticky-bottom .btn { flex: 1; padding: 13px 10px; font-size: 13px; }

/* ===== 08. BUTTON SYSTEM ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.7px;
  padding: 13px 26px; border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease), box-shadow 0.3s, background 0.3s, color 0.2s;
  border: 1px solid transparent; white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn:active { transform: scale(0.97); }

.btn-green {
  background: var(--gradient-green); color: #04140A;
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
}
.btn-green:hover { box-shadow: 0 0 30px rgba(0, 200, 83, 0.7), 0 0 60px rgba(0,200,83,0.3); transform: translateY(-2px); }

.btn-gold {
  background: var(--gradient-gold); color: #2A1E00;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}
.btn-gold:hover { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--green-glow);
  border: 1px solid var(--glass-border);
}
.btn-outline:hover { background: rgba(0, 200, 83, 0.1); border-color: var(--green-primary); box-shadow: var(--shadow-glow); }

.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text-secondary); border: 1px solid var(--border-subtle); }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.08); }

.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-sm { padding: 11px 20px; font-size: 13px; min-height: 40px; }
.btn-full { width: 100%; }

/* ===== 09. SECTION PATTERN ===== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head.left { text-align: left; margin-inline: 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 2px; color: var(--green-glow);
  padding: 6px 16px; border-radius: var(--radius-pill);
  background: rgba(0, 200, 83, 0.08); border: 1px solid var(--glass-border);
  margin-bottom: 18px;
}
.section-title { margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 17px; }

/* ===== 10. TICKER ===== */
.ticker-strip { background: var(--bg-surface); border-block: 1px solid var(--border-subtle); padding: 16px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 14px; width: max-content; animation: ticker 28s linear infinite; }
.ticker-strip:hover .ticker-track { animation-play-state: paused; }
.ticker-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill); padding: 10px 22px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--text-secondary); white-space: nowrap;
}
.ticker-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-primary); }

/* ===== 11. HERO ===== */
.hero { position: relative; background: var(--gradient-hero); overflow: hidden; padding: clamp(40px, 6vw, 80px) 0 clamp(50px, 7vw, 90px); }
.hero::before {
  content: ""; position: absolute; top: -10%; right: -5%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,83,0.14) 0%, transparent 65%);
  animation: glowDrift 9s ease-in-out infinite; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -20%; left: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill); padding: 8px 18px;
  font-size: 13.5px; font-weight: 500; color: var(--text-secondary);
  backdrop-filter: blur(10px); margin-bottom: 26px;
}
.hero-eyebrow .live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green-glow);
  animation: pulseDot 2s infinite;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .line-white { color: var(--text-primary); display: block; }
.hero h1 .line-grad {
  display: block;
  background: linear-gradient(110deg, var(--green-glow) 10%, var(--gold-accent) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 50px rgba(57, 255, 106, 0.3);
}
.hero-sub { font-size: 18px; color: var(--text-secondary); max-width: 540px; margin-bottom: 32px; }

/* Hero bonus card */
.hero-bonus {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 24px; backdrop-filter: blur(20px);
  max-width: 460px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
  margin-bottom: 28px; width: 100%;
}
.hero-bonus::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold);
}
.hero-bonus .hb-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 600; }
.hero-bonus .hb-amount { font-family: var(--font-display); font-weight: 700; font-size: 52px; line-height: 1; margin: 4px 0; }
.hero-bonus .hb-sub { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 16px; }
.hero-bonus .hb-progress { height: 8px; background: var(--green-muted); border-radius: 10px; overflow: hidden; margin-bottom: 18px; }
.hero-bonus .hb-progress span { display: block; height: 100%; width: 72%; background: var(--gradient-green); border-radius: 10px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill); padding: 7px 14px;
}

/* ===== 12. HERO VISUAL ===== */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 600px; }
.phone-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.14) 0%, transparent 70%);
  pointer-events: none; animation: glowDrift 8s ease-in-out infinite;
}
.ring {
  position: absolute; top: 50%; left: 50%; border: 1px solid rgba(0,200,83,0.22);
  border-radius: 50%; pointer-events: none;
}
.ring-1 { width: 380px; height: 380px; animation: expandRing 3.6s ease-out infinite; }
.ring-2 { width: 380px; height: 380px; animation: expandRing 3.6s ease-out infinite 1.8s; }

.phone {
  position: relative; z-index: 3; width: 290px; height: 580px;
  background: linear-gradient(160deg, #14271B, #0A140E);
  border: 2px solid rgba(0,200,83,0.4); border-radius: 42px;
  padding: 14px; box-shadow: 0 0 50px rgba(0,200,83,0.25), inset 0 0 30px rgba(0,0,0,0.6);
  animation: floatPhone 6s ease-in-out infinite;
}
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px; background: #04140A; border-radius: 10px; z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%; background: var(--bg-base);
  border-radius: 30px; overflow: hidden; display: flex; flex-direction: column;
  padding: 26px 14px 14px;
}
.ps-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ps-top .ps-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.ps-top .ps-bal { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--green-glow); background: rgba(0,200,83,0.1); padding: 4px 10px; border-radius: 20px; }

.ps-ticker { overflow: hidden; margin-bottom: 14px; }
.ps-ticker-track { display: flex; gap: 8px; width: max-content; animation: ticker 12s linear infinite; }
.ps-game-pill {
  display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600;
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  border-radius: 20px; padding: 6px 11px; white-space: nowrap; color: var(--text-secondary);
}

.ps-feature {
  flex: 1; background: linear-gradient(160deg, #0F2417, #0A1810);
  border: 1px solid var(--glass-border); border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; margin-bottom: 12px;
}
.ps-feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0,200,83,0.15), transparent 60%);
}
.ps-feature .pf-tag { position: relative; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 2px; color: var(--text-muted); }
.ps-feature .pf-mult {
  position: relative; font-family: var(--font-display); font-weight: 700; font-size: 46px;
  color: var(--green-glow); text-shadow: 0 0 20px rgba(57,255,106,0.5); transition: color 0.2s;
}
.ps-feature .pf-mult.crashed { color: var(--danger); text-shadow: 0 0 20px rgba(255,61,87,0.6); }
.ps-feature .pf-plane { position: relative; font-size: 22px; margin-top: 4px; }

.ps-actions { display: flex; gap: 8px; }
.ps-actions .ps-btn { flex: 1; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 12px; padding: 11px 8px; border-radius: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.ps-actions .ps-btn.green { background: var(--gradient-green); color: #04140A; }
.ps-actions .ps-btn.outline { border: 1px solid var(--glass-border); color: var(--green-glow); }

/* Floating glass stat cards */
.float-bubble {
  position: absolute; z-index: 5; display: flex; flex-direction: column; gap: 2px;
  background: rgba(13, 23, 16, 0.78); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 11px 16px; min-width: 92px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.03) inset;
  font-family: var(--font-display); font-weight: 600;
  animation: floatBubble 5s ease-in-out infinite;
}
.float-bubble .fb-num { font-size: 20px; color: var(--green-glow); line-height: 1; }
.float-bubble .fb-label { font-size: 11px; color: var(--text-secondary); font-family: var(--font-body); font-weight: 500; letter-spacing: 0.3px; }
.fb-tl { top: 4%; left: -4%; }
.fb-tr { top: 12%; right: -6%; animation-delay: 1.2s; }
.fb-bl { bottom: 16%; left: -6%; animation-delay: 2.1s; }
.fb-br { bottom: 5%; right: -4%; animation-delay: 0.6s; }
@media (max-width: 1024px) { .fb-tl, .fb-bl { left: 0; } .fb-tr, .fb-br { right: 0; } }
@media (max-width: 420px) {
  .hero-visual { min-height: 540px; }
  .float-bubble { min-width: 78px; padding: 8px 12px; }
  .float-bubble .fb-num { font-size: 16px; }
}

/* ===== 13. TRUST STATS BAR ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 30px 22px; text-align: center;
  backdrop-filter: blur(14px); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--green-primary); box-shadow: var(--shadow-glow); }
.stat-card .stat-num { font-family: var(--font-display); font-weight: 700; font-size: 44px; line-height: 1; color: var(--green-glow); }
.stat-card .stat-label { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }
.stat-card .stat-icon { font-size: 26px; margin-bottom: 10px; }

/* ===== 14. GAME CARDS ===== */
.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.game-card {
  position: relative; background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--green-primary); box-shadow: 0 14px 36px rgba(0,0,0,0.5), var(--shadow-glow); }
.game-card-thumb {
  position: relative; aspect-ratio: 16/11; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 46px; color: rgba(255,255,255,0.92);
  text-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.game-card-thumb .gt-emoji { font-size: 52px; }
/* category gradients */
.cat-crash   { background: linear-gradient(145deg, #00C853, #054d22); }
.cat-cards   { background: linear-gradient(145deg, #C8102E, #3a0a13); }
.cat-live    { background: linear-gradient(145deg, #7B2FF7, #1e0a3a); }
.cat-slots   { background: linear-gradient(145deg, #FFD700, #6b5800); color:#2a2200 !important; }
.cat-fishing { background: linear-gradient(145deg, #00B8D4, #04323a); }
.cat-lottery { background: linear-gradient(145deg, #FF6D00, #4a2000); }
.cat-sports  { background: linear-gradient(145deg, #2979FF, #0a2350); }

.game-card-body { padding: 14px 16px 16px; position: relative; }
.game-badge {
  position: absolute; top: -12px; left: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 1px;
  padding: 4px 10px; border-radius: var(--radius-pill); text-transform: uppercase;
}
.badge-HOT  { background: var(--danger); color: #fff; box-shadow: 0 0 14px rgba(255,61,87,0.5); }
.badge-NEW  { background: var(--gradient-green); color: #04140A; box-shadow: 0 0 14px rgba(0,200,83,0.4); }
.badge-LIVE { background: var(--gold-accent); color: #2a2200; box-shadow: 0 0 14px rgba(255,215,0,0.4); }
.game-name { font-size: 18px; margin-bottom: 4px; color: var(--text-primary); }
.game-rtp { font-size: 13px; color: var(--text-muted); font-family: var(--font-display); font-weight: 600; }

.game-card-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; height: 64px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none; /* let card-link receive clicks; only button is interactive */
  background: linear-gradient(0deg, rgba(8,14,10,0.96), rgba(8,14,10,0));
}
.game-card-overlay .btn { pointer-events: auto; }
.game-card:hover .game-card-overlay, .game-card:focus-within .game-card-overlay { opacity: 1; }

/* ===== 15. FILTER TABS ===== */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter-tab {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: var(--radius-pill); min-height: 44px;
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  color: var(--text-secondary); transition: all 0.25s; text-transform: uppercase; letter-spacing: 0.5px;
}
.filter-tab:hover { color: #fff; border-color: var(--green-primary); }
.filter-tab.active { background: var(--gradient-green); color: #04140A; border-color: transparent; box-shadow: var(--shadow-glow); }

.game-card.is-hidden { display: none; }

/* ===== 16. HOW IT WORKS ===== */
.steps-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  position: relative; overflow: hidden; backdrop-filter: blur(14px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.step-card .step-bg-num {
  position: absolute; top: -20px; right: 6px; font-family: var(--font-display); font-weight: 700;
  font-size: 130px; line-height: 1; color: rgba(0,200,83,0.06); pointer-events: none;
}
.step-card .step-icon { font-size: 44px; margin-bottom: 16px; position: relative; }
.step-card h3 { margin-bottom: 10px; position: relative; }
.step-card p { font-size: 14.5px; position: relative; }
.step-connector { display: none; }

.countdown-wrap {
  margin-top: 44px; text-align: center; background: var(--bg-surface);
  border: 1px solid var(--glass-border); border-radius: var(--radius-md);
  padding: 24px; max-width: 540px; margin-inline: auto;
}
.countdown-wrap .cd-label { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.countdown { display: flex; gap: 12px; justify-content: center; }
.cd-unit { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 12px 16px; min-width: 70px; }
.cd-unit .cd-num { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: var(--gold-accent); line-height: 1; }
.cd-unit .cd-name { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 4px; }

/* ===== 17. SCREENSHOTS CAROUSEL ===== */
.carousel { position: relative; max-width: 1000px; margin-inline: auto; overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; transition: transform 0.5s var(--ease); cursor: grab; }
.carousel-track:active { cursor: grabbing; }
.carousel-slide { min-width: 25%; padding: 12px; }
.shot {
  aspect-ratio: 9/16; max-height: 420px; margin-inline: auto; width: 100%;
  background: linear-gradient(160deg, #14271B, #0A140E);
  border: 2px solid rgba(0,200,83,0.3); border-radius: 28px; padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.shot .shot-bar { height: 30px; background: var(--bg-elevated); border-radius: 10px; display: flex; align-items: center; padding: 0 12px; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.shot .shot-hero { flex: 1; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 22px; text-align: center; color: #fff; padding: 12px; }
.shot .shot-rows { display: flex; flex-direction: column; gap: 6px; }
.shot .shot-rows span { height: 22px; background: var(--bg-elevated); border-radius: 8px; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; background: var(--glass-bg);
  border: 1px solid var(--glass-border); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--green-glow);
}
.carousel-btn:hover { background: rgba(0,200,83,0.15); }
.carousel-btn.prev { left: 8px; } .carousel-btn.next { right: 8px; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-subtle); transition: all 0.25s; }
.carousel-dot.active { background: var(--green-primary); width: 26px; border-radius: 6px; }

/* ===== 18. FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  position: relative; background: var(--bg-surface); border-radius: var(--radius-md);
  padding: 32px 26px; overflow: hidden; border: 1px solid var(--border-subtle);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: var(--radius-md);
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s; animation: borderScan 3s linear infinite;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.feature-card:hover::before { opacity: 1; }
.feature-card .feat-icon {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; background: rgba(0,200,83,0.1); border: 1px solid var(--glass-border); margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; }

/* ===== 19. BONUS CARDS ===== */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.bonus-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative;
}
.bonus-card:hover { transform: translateY(-6px); border-color: var(--green-primary); box-shadow: var(--shadow-glow); }
.bonus-card.featured { border-color: var(--gold-accent); box-shadow: 0 0 30px rgba(255,215,0,0.18); transform: scale(1.03); }
.bonus-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.bonus-popular { position: absolute; top: 16px; right: 16px; z-index: 3; background: var(--gradient-gold); color: #2a2200; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 1px; padding: 5px 12px; border-radius: var(--radius-pill); text-transform: uppercase; }
.bonus-head { padding: 28px 26px 22px; background: linear-gradient(160deg, rgba(0,200,83,0.12), transparent); border-bottom: 1px solid var(--border-subtle); }
.bonus-card.featured .bonus-head { background: linear-gradient(160deg, rgba(255,215,0,0.12), transparent); }
.bonus-head .bonus-type { font-family: var(--font-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); }
.bonus-head .bonus-amount { font-family: var(--font-display); font-weight: 700; font-size: 46px; line-height: 1; margin-top: 6px; }
.bonus-body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.bonus-body ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.bonus-body li { display: flex; gap: 10px; font-size: 14px; color: var(--text-secondary); align-items: flex-start; }
.bonus-body li::before { content: "✓"; color: var(--green-glow); font-weight: 700; flex-shrink: 0; }
.bonus-body .btn { margin-top: auto; }

/* ===== 20. REFERRAL SECTION ===== */
.refer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.refer-steps { display: flex; flex-direction: column; gap: 18px; }
.refer-step { display: flex; gap: 16px; align-items: flex-start; }
.refer-step .rs-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px;
  background: rgba(0,200,83,0.1); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--green-glow);
}
.refer-step h4 { font-size: 18px; margin-bottom: 4px; }
.refer-step p { font-size: 14px; }

.calc-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 34px; backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}
.calc-card h3 { margin-bottom: 6px; }
.calc-card .calc-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 26px; }
.calc-field { margin-bottom: 24px; }
.calc-field label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 500; margin-bottom: 12px; }
.calc-field label b { font-family: var(--font-display); font-size: 20px; color: var(--green-glow); }
.calc-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 10px; background: var(--green-muted); outline: none; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--gradient-green); cursor: pointer; box-shadow: 0 0 12px rgba(0,200,83,0.6); border: 2px solid #fff; }
.calc-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--green-primary); cursor: pointer; border: 2px solid #fff; }
.calc-result { text-align: center; background: var(--bg-base); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; }
.calc-result .cr-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.calc-result .cr-amount { font-family: var(--font-display); font-weight: 700; font-size: 54px; line-height: 1; margin-top: 4px; }
.calc-milestones { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.milestone-badge { font-family: var(--font-display); font-weight: 600; font-size: 12px; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--bg-elevated); border: 1px solid var(--border-subtle); color: var(--text-muted); transition: all 0.3s; }
.milestone-badge.hit { background: var(--gradient-gold); color: #2a2200; border-color: transparent; box-shadow: 0 0 14px rgba(255,215,0,0.4); }

/* ===== 21. LEADERBOARD ===== */
.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: end; margin-bottom: 32px; }
.podium-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; position: relative; overflow: hidden;
}
.podium-card .pc-rank { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: 1px; }
.podium-card .pc-avatar { width: 64px; height: 64px; border-radius: 50%; margin: 14px auto 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #04140A; }
.podium-card .pc-name { font-weight: 600; font-size: 15px; }
.podium-card .pc-prize { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin-top: 8px; }
.podium-1 { order: 2; transform: translateY(-16px); border-color: var(--gold-accent); box-shadow: 0 0 30px rgba(255,215,0,0.2); }
.podium-1 .pc-avatar { background: var(--gradient-gold); } .podium-1 .pc-rank, .podium-1 .pc-prize { color: var(--gold-accent); }
.podium-2 { order: 1; } .podium-2 .pc-avatar { background: linear-gradient(135deg,#C0C0C0,#808080); } .podium-2 .pc-prize { color: #d8d8d8; }
.podium-3 { order: 3; } .podium-3 .pc-avatar { background: linear-gradient(135deg,#CD7F32,#8a5320); } .podium-3 .pc-prize { color: #e0a060; }
.podium-card::after { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent); animation: sweepShine 4s linear infinite; }

.lb-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; }
.lb-table th { text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); padding: 14px 18px; border-bottom: 1px solid var(--border-subtle); }
.lb-table td { padding: 14px 18px; font-size: 14px; border-bottom: 1px solid rgba(30,58,40,0.5); color: var(--text-secondary); }
.lb-table tr:last-child td { border-bottom: none; }
.lb-table tr:hover td { background: rgba(0,200,83,0.04); }
.lb-table .lb-rank { font-family: var(--font-display); font-weight: 700; color: var(--green-glow); }
.lb-table .lb-prize { font-family: var(--font-display); font-weight: 700; color: var(--gold-accent); }

/* ===== 22. BLOG GRID ===== */
.blog-feature-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.blog-side { display: flex; flex-direction: column; gap: 24px; }
.blog-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--green-primary); box-shadow: var(--shadow-glow); }
.blog-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.blog-card.large .blog-thumb { aspect-ratio: 16/10; }
.blog-side .blog-card { flex-direction: row; }
.blog-side .blog-thumb { aspect-ratio: 1; width: 130px; flex-shrink: 0; font-size: 36px; }
.blog-body { padding: 20px 22px; flex: 1; }
.blog-pill { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--green-glow); background: rgba(0,200,83,0.1); border: 1px solid var(--glass-border); padding: 4px 11px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.blog-body h3 { font-size: 20px; margin-bottom: 8px; line-height: 1.25; }
.blog-card.large .blog-body h3 { font-size: 26px; }
.blog-side .blog-body h3 { font-size: 16px; }
.blog-body p { font-size: 14px; margin-bottom: 14px; }
.blog-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--text-muted); }

/* ===== 23. FAQ ===== */
.faq-search { max-width: 560px; margin: 0 auto 32px; position: relative; }
.faq-search input, .input {
  width: 100%; background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill); padding: 14px 22px; color: #fff; font-size: 15px; transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-search input:focus, .input:focus { border-color: var(--green-primary); box-shadow: var(--shadow-glow); outline: none; }
.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.25s; }
.faq-item.active { border-color: var(--green-primary); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: #fff; }
.faq-q .faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(0,200,83,0.1); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--green-glow); font-size: 18px; transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; font-size: 14.5px; color: var(--text-secondary); }
.faq-item.no-match { display: none; }
.faq-group-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 36px 0 16px; color: var(--green-glow); }
.no-results { text-align: center; color: var(--text-muted); padding: 30px; display: none; }
.no-results.show { display: block; }

/* ===== 24. CTA BANNER ===== */
.cta-banner { position: relative; overflow: hidden; background: var(--bg-surface); border-block: 1px solid var(--border-subtle); }
.cta-banner::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 900px; background: radial-gradient(circle, rgba(0,200,83,0.18) 0%, transparent 60%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin-inline: auto; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { font-size: 18px; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-float { position: absolute; font-family: var(--font-display); font-weight: 700; opacity: 0.5; pointer-events: none; }
.cta-float.f1 { top: 16%; left: 8%; font-size: 30px; animation: floatBubble 6s ease-in-out infinite; }
.cta-float.f2 { bottom: 18%; right: 10%; font-size: 38px; animation: floatBubble 7s ease-in-out infinite 1s; }

/* ===== 25. FOOTER ===== */
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--border-subtle); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid var(--border-subtle); }
.footer-col h4 { font-family: var(--font-display); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--green-glow); }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; margin-bottom: 18px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; background: var(--bg-elevated); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all 0.25s; }
.footer-social a:hover { background: rgba(0,200,83,0.12); border-color: var(--green-primary); color: var(--green-glow); transform: translateY(-3px); }
.footer-disclaimers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 32px 0; }
.disclaimer-card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 20px 22px; }
.disclaimer-card h5 { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--gold-soft); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.disclaimer-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
.footer-bottom { text-align: center; padding: 24px 0 32px; font-size: 13px; color: var(--text-muted); }
.footer-bottom .restricted { margin-top: 8px; color: var(--danger); font-size: 12.5px; }
.footer-bottom .age-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--danger); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 12px; padding: 3px 10px; border-radius: var(--radius-pill); margin-bottom: 8px; }

/* ===== 26. PAGE HERO (interior pages) ===== */
.page-hero { position: relative; background: var(--gradient-hero); overflow: hidden; padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 6vw, 70px); text-align: center; }
.page-hero::before { content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(circle, rgba(0,200,83,0.1) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; max-width: 600px; margin-inline: auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--green-glow); }

/* ===== 27. DOWNLOAD / REQUIREMENTS ===== */
.req-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.req-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 28px; text-align: center; }
.req-card .req-icon { font-size: 36px; margin-bottom: 12px; }
.req-card h4 { margin-bottom: 6px; }
.req-card p { font-size: 14px; }
.version-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; }
.version-table th, .version-table td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid rgba(30,58,40,0.5); }
.version-table th { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; color: var(--text-muted); }
.version-table td { color: var(--text-secondary); }

/* ===== 28/29. GAME DETAIL ===== */
.game-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.game-stats-bar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 32px; }
.gs-item { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.gs-item .gs-val { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--green-glow); }
.gs-item .gs-key { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.tab-nav { display: flex; gap: 6px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 26px; flex-wrap: wrap; }
.tab-btn { font-family: var(--font-display); font-weight: 600; font-size: 15px; padding: 12px 18px; color: var(--text-muted); position: relative; transition: color 0.2s; }
.tab-btn::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--green-primary); transform: scaleX(0); transition: transform 0.25s; }
.tab-btn:hover { color: #fff; } .tab-btn.active { color: var(--green-glow); } .tab-btn.active::after { transform: scaleX(1); }
.tab-panel { display: none; animation: fadeIn 0.4s ease; }
.tab-panel.active { display: block; }
.tab-panel h3 { margin: 20px 0 12px; } .tab-panel p { margin-bottom: 14px; } .tab-panel ul { margin: 0 0 16px 0; display: flex; flex-direction: column; gap: 10px; }
.tab-panel ul li { display: flex; gap: 10px; font-size: 15px; color: var(--text-secondary); } .tab-panel ul li::before { content: "▸"; color: var(--green-glow); }
.detail-sidebar { position: sticky; top: calc(var(--header-h) + 20px); background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(14px); }
.detail-sidebar h3 { margin-bottom: 16px; }

/* ===== 33. ABOUT / VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 28px; transition: transform 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.value-card .v-icon { font-size: 34px; margin-bottom: 14px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: 14px; }

/* ===== 34. CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card .ci-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(0,200,83,0.1); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-card h4 { margin-bottom: 4px; } .contact-card p { font-size: 14px; }
.form-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 34px; backdrop-filter: blur(14px); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg-base); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 13px 16px; color: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-primary); box-shadow: var(--shadow-glow); outline: none; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group .field-error { color: var(--danger); font-size: 12.5px; margin-top: 6px; display: none; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: var(--danger); }
.form-group.invalid .field-error { display: block; }
.form-success { text-align: center; padding: 30px; }
.form-success .fs-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--gradient-green); display: flex; align-items: center; justify-content: center; font-size: 34px; margin: 0 auto 18px; color: #04140A; }
.map-placeholder { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface)); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--text-muted); margin-top: 24px; }

/* ===== 36. STATIC / LEGAL PAGES ===== */
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }
.legal-toc { position: sticky; top: calc(var(--header-h) + 20px); background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 22px; }
.legal-toc h4 { margin-bottom: 14px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.legal-toc ul { display: flex; flex-direction: column; gap: 9px; }
.legal-toc a { font-size: 14px; color: var(--text-secondary); transition: color 0.2s; }
.legal-toc a:hover { color: var(--green-glow); }
.legal-content h2 { font-size: 26px; margin: 36px 0 14px; color: var(--green-glow); scroll-margin-top: 90px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 19px; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; font-size: 15px; line-height: 1.75; }
.legal-content ul { margin: 0 0 16px 22px; list-style: disc; }
.legal-content ul li { margin-bottom: 8px; color: var(--text-secondary); }
.legal-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

/* ===== 37. 404 ===== */
.error-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.error-page::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,200,83,0.1), transparent 65%); animation: glowDrift 8s ease-in-out infinite; }
.error-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(100px, 22vw, 220px); line-height: 1; color: var(--green-glow); text-shadow: 0 0 40px rgba(57,255,106,0.5); position: relative; animation: neonFlicker 4s infinite; }
.error-page h2 { position: relative; margin-bottom: 12px; }
.error-page p { position: relative; margin-bottom: 28px; }
.error-links { position: relative; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== 38. SITEMAP ===== */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.sitemap-col h3 { font-size: 18px; color: var(--green-glow); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border-subtle); }
.sitemap-col ul { display: flex; flex-direction: column; gap: 12px; }
.sitemap-col li a { font-weight: 500; font-size: 15px; transition: color 0.2s; }
.sitemap-col li a:hover { color: var(--green-glow); }
.sitemap-col li span { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

/* ===== Misc: tier cards, newsletter, video, self-assessment ===== */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.tier-card.bronze { border-color: #cd7f32; } .tier-card.silver { border-color: #c0c0c0; } .tier-card.gold { border-color: var(--gold-accent); box-shadow: 0 0 24px rgba(255,215,0,0.15); }
.tier-card .tier-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.tier-card .tier-amt { font-family: var(--font-display); font-weight: 700; font-size: 38px; margin: 10px 0; color: var(--green-glow); }
.newsletter-card { background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(255,215,0,0.05)); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 22px auto 0; }
.newsletter-form input { flex: 1; }
.video-box { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface)); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.video-box .play-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--gradient-green); display: flex; align-items: center; justify-content: center; font-size: 26px; color: #04140A; box-shadow: 0 0 30px rgba(0,200,83,0.5); animation: glowPulse 3s infinite; }
.assess-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 28px; max-width: 680px; margin-inline: auto; }
.assess-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border-subtle); }
.assess-q:last-of-type { border-bottom: none; }
.assess-q p { font-size: 15px; color: var(--text-primary); margin: 0; }
.assess-q .assess-opts { display: flex; gap: 8px; flex-shrink: 0; }
.assess-opts button { padding: 6px 16px; border-radius: var(--radius-pill); border: 1px solid var(--border-subtle); font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text-secondary); transition: all 0.2s; }
.assess-opts button.sel-yes { background: var(--danger); color: #fff; border-color: transparent; }
.assess-opts button.sel-no { background: var(--gradient-green); color: #04140A; border-color: transparent; }
.assess-result { margin-top: 22px; padding: 20px; border-radius: var(--radius-md); background: var(--bg-elevated); text-align: center; display: none; }
.assess-result.show { display: block; }

.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 16px; font-size: 14px; color: var(--text-secondary); }
.checklist li::before { content: "⚠"; color: var(--gold-soft); flex-shrink: 0; }

.info-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 26px; margin-top: 24px; }
.info-card h3 { margin-bottom: 12px; color: var(--green-glow); }

.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin: 32px 0 14px; color: var(--green-glow); scroll-margin-top: 90px; }
.prose h3 { margin: 24px 0 10px; }
.prose p { margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.prose ul { margin: 0 0 18px 22px; list-style: disc; }
.prose ul li { margin-bottom: 8px; color: var(--text-secondary); }
.prose img, .prose .prose-figure { border-radius: var(--radius-md); margin: 24px 0; }
.author-card { display: flex; gap: 14px; align-items: center; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 18px 22px; margin: 24px 0; }
.author-card .auth-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gradient-green); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #04140A; flex-shrink: 0; }
.share-row { display: flex; gap: 10px; margin: 24px 0; }
.share-row a { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-elevated); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.share-row a:hover { background: rgba(0,200,83,0.12); border-color: var(--green-primary); }
.inline-cta { background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(255,215,0,0.06)); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 30px; text-align: center; margin: 30px 0; }
.inline-cta h3 { margin-bottom: 10px; }
.inline-cta p { margin-bottom: 18px; }

/* ===== 39. UTILITIES ===== */
.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; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.bg-surface { background: var(--bg-surface); }
.load-more-wrap { text-align: center; margin-top: 40px; }
.center-cta { text-align: center; margin-top: 40px; }
.divider-wave { display: block; width: 100%; height: 60px; }

/* ===== 40. RESPONSIVE ===== */
@media (max-width: 1200px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn:first-child { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 480px; order: -1; }
  .features-grid, .values-grid, .req-grid, .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .game-detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .refer-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .steps-flow, .bonus-grid, .tier-grid { grid-template-columns: 1fr; }
  .bonus-card.featured { transform: none; }
  .bonus-card.featured:hover { transform: translateY(-6px); }
  .game-stats-bar { grid-template-columns: repeat(3, 1fr); }
  .blog-feature-grid { grid-template-columns: 1fr; }
  .carousel-slide { min-width: 33.333%; }
}
@media (max-width: 768px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-disclaimers { grid-template-columns: 1fr; }
  .sticky-bottom { display: flex; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .carousel-slide { min-width: 50%; }
  .checklist { grid-template-columns: 1fr; }
  .blog-side .blog-card { flex-direction: column; }
  .blog-side .blog-thumb { width: 100%; aspect-ratio: 16/9; }
  .hero-bonus .hb-amount { font-size: 44px; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 640px) {
  .container { padding-inline: 18px; }
  .features-grid, .values-grid, .req-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .podium { grid-template-columns: 1fr; }
  .podium-1 { order: 0; transform: none; }
  .podium-2, .podium-3 { order: 0; }
  .filter-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .game-stats-bar { grid-template-columns: 1fr; }
  .carousel-slide { min-width: 75%; }
  .lb-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 13px; }
  .lb-table th, .lb-table td { padding: 10px; white-space: nowrap; }
  .hero h1 { font-size: 40px; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .header-cta .btn { padding: 10px 16px; font-size: 13px; }
  .logo { font-size: 24px; }
  .cd-unit { min-width: 56px; padding: 10px; }
  .cd-unit .cd-num { font-size: 26px; }
  .hero-bonus { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .game-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .version-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 360px) {
  .container { padding-inline: 14px; }
  .phone { width: 250px; height: 510px; }
  .hero-figure { max-width: 300px; }
  .hero h1 { font-size: 34px; }
  .game-stats-bar { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   41. UPLOADED ASSET INTEGRATION (logo, hero, games, shots, blog)
   ============================================================ */

/* --- Logo image --- */
.logo { line-height: 0; display: inline-flex; align-items: center; }
.logo-img { height: 58px; width: auto; max-width: 160px; display: block; object-fit: contain; transition: filter 0.3s, transform 0.3s; }
.site-header .logo-img { filter: drop-shadow(0 0 14px rgba(0, 200, 83, 0.45)) drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.site-header .logo:hover .logo-img { transform: scale(1.04); filter: drop-shadow(0 0 22px rgba(0, 200, 83, 0.65)) drop-shadow(0 2px 8px rgba(0,0,0,0.45)); }
.footer-brand .logo-img { height: 68px; margin-bottom: 16px; }
.mobile-nav .logo-img { height: 72px; margin-bottom: 10px; filter: drop-shadow(0 0 16px rgba(0, 200, 83, 0.45)); }
@media (max-width: 1024px) { .site-header .logo-img { height: 52px; } }
@media (max-width: 480px) { .site-header .logo-img { height: 46px; max-width: 130px; } .footer-brand .logo-img { height: 60px; } }

/* --- Game card with real image --- */
.game-card-link { display: block; color: inherit; }
.game-card .game-card-thumb { padding: 0; overflow: hidden; background: var(--bg-elevated); aspect-ratio: 16/11; }
.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s var(--ease); }
.game-card:hover .game-card-thumb img { transform: scale(1.07); }

/* --- Hero image figure (focal point) — sleek phone-style showcase --- */
.hero-figure {
  position: relative; z-index: 3;
  width: clamp(250px, 30vw, 304px);
  border-radius: 34px; padding: 9px; overflow: hidden;
  background: linear-gradient(165deg, rgba(0, 200, 83, 0.28), rgba(13, 23, 16, 0.55));
  border: 1px solid rgba(0, 200, 83, 0.35);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55), 0 0 64px rgba(0, 200, 83, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  animation: floatSoft 6s ease-in-out infinite;
}
.hero-figure img { width: 100%; height: auto; display: block; border-radius: 26px; }
.hero-figure::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 5px; background: rgba(8, 14, 10, 0.6); border-radius: 10px; z-index: 4;
}
.hero-figure-badge {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: rgba(8, 14, 10, 0.72); border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill); padding: 7px 15px; backdrop-filter: blur(12px);
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--green-glow);
}
.hero-figure-badge .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-glow); animation: pulseDot 2s infinite; }

/* --- Screenshot images in carousel (design unchanged, image-fitted) --- */
.shot-frame {
  aspect-ratio: 9/19.5; max-height: 480px; margin-inline: auto; width: 100%;
  background: linear-gradient(160deg, #14271B, #0A140E);
  border: 2px solid rgba(0, 200, 83, 0.32); border-radius: 30px; padding: 8px;
  box-shadow: var(--shadow-soft); overflow: hidden; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.shot-frame:hover { transform: translateY(-6px); box-shadow: 0 0 36px rgba(0,200,83,0.3), var(--shadow-soft); }
.shot-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; display: block; }
@media (max-width: 640px) { .shot-frame { max-height: 520px; } }

/* --- Blog images --- */
.blog-thumb { overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.post-hero-figure { width: 100%; max-width: 880px; margin: 0 auto 28px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-subtle); }
.post-hero-figure img { width: 100%; height: auto; display: block; }
.prose-figure { margin: 26px 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-subtle); }
.prose-figure img { width: 100%; height: auto; display: block; }
