/* ==========================================================================
   365in — "Emerald Vault" Design System
   Premium gaming affiliate platform · style.css
   --------------------------------------------------------------------------
   1.  Reset & Custom Properties
   2.  Typography
   3.  Layout Utilities
   4.  Announcement Bar
   5.  Header / Glassmorphism
   6.  Mobile Nav Overlay
   7.  Sticky Download Bar
   8.  Exit Popup
   9.  Button System
   10. Section Pattern
   11. Trust Ticker
   12. Hero / Vault
   13. Game Cards
   14. Filter Tabs
   15. How It Works
   16. Screenshots Carousel
   17. Stats Section
   18. Feature Cards
   19. Bonus Cards
   20. Referral Section
   21. Leaderboard Table
   22. FAQ Accordion
   23. Blog Grid
   24. CTA Banner
   25. Footer
   26. Game Detail Pages
   27. Download Page
   28. Blog Post Pages
   29. Static Pages
   30. Contact Form
   31. Sitemap Page
   32. 404 Page
   33. Utilities
   34. Responsive Breakpoints
   ========================================================================== */

/* ==========================================================================
   1. RESET & CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Surfaces */
  --bg-deep:         #0A0F0A;
  --bg-primary:      #0F1A12;
  --bg-card:         #142018;
  --bg-elevated:     #1A2B20;
  --bg-glass:        rgba(20, 32, 24, 0.7);

  /* Greens — Primary brand */
  --green-deep:      #1B5E32;
  --green-primary:   #2ECC71;
  --green-bright:    #44FF88;
  --green-soft:      #A8F0C6;

  /* Gold — Premium accent */
  --gold-primary:    #F5C842;
  --gold-soft:       #FFE59D;

  /* Neutrals */
  --text-primary:    #FFFFFF;
  --text-secondary:  #B8D4C0;
  --text-muted:      #5A7A62;
  --border-subtle:   #1E3327;
  --border-active:   #2ECC71;

  /* Functional */
  --danger:          #FF4757;
  --info:            #3498DB;

  /* Shadows & Glows */
  --glow-green:        0 0 20px rgba(46, 204, 113, 0.15);
  --glow-green-strong: 0 0 40px rgba(46, 204, 113, 0.3);
  --glow-gold:         0 0 20px rgba(245, 200, 66, 0.15);
  --shadow-card:       0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-elevated:   0 8px 40px rgba(0, 0, 0, 0.6);

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container:    1200px;
  --radius-card:  16px;
  --radius-btn:   12px;
  --header-h:     72px;
  --section-pad:  100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(60% 50% at 80% 0%, rgba(46, 204, 113, 0.06), transparent 70%),
    radial-gradient(50% 40% at 0% 60%, rgba(46, 204, 113, 0.04), transparent 70%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

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; }

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

::selection { background: var(--green-primary); color: var(--bg-deep); }

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

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { color: var(--text-secondary); }

small, .caption { font-size: 0.85rem; color: var(--text-muted); }

.mono { font-family: var(--font-mono); font-weight: 500; }

.text-green { color: var(--green-primary); }
.text-gold  { color: var(--gold-primary); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

strong { color: var(--text-primary); font-weight: 600; }

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container-wide { max-width: 1440px; }
.container-narrow { max-width: 820px; }

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.wrap { flex-wrap: wrap; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--green-primary);
  color: var(--bg-deep);
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
  font-family: var(--font-display);
}
.skip-link:focus { left: 0; }

main { display: block; }

/* ==========================================================================
   4. ANNOUNCEMENT BAR
   ========================================================================== */
.announce-bar {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, var(--green-deep), #0F2A19);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.announce-bar.hidden { display: none; }
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px 48px 9px 16px;
  font-size: 0.85rem;
  color: var(--green-soft);
  position: relative;
}
.announce-msg { font-weight: 500; }
.announce-msg .mono { color: var(--gold-soft); }
.announce-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--green-primary);
  color: var(--bg-deep);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.announce-cta:hover { background: var(--green-bright); }
.announce-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--green-soft);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
}
.announce-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ==========================================================================
   5. HEADER / GLASSMORPHISM
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--bg-glass);
  border-bottom: 1px solid rgba(46, 204, 113, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 15, 10, 0.92);
  border-bottom-color: rgba(46, 204, 113, 0.22);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
}
/* Uploaded brand logo image */
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 8px;
  transition: filter 0.25s ease, transform 0.25s ease;
}
.logo:hover .logo-img { filter: brightness(1.12); transform: translateY(-1px); }
.footer-brand .logo-img { height: 46px; }
.mobile-nav-head .logo-img { height: 34px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--text-primary); }
.main-nav a.active { color: var(--green-primary); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 12px; }

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

/* ==========================================================================
   6. MOBILE NAV OVERLAY
   ========================================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg-deep);
  background-image: radial-gradient(60% 50% at 50% 0%, rgba(46,204,113,0.08), transparent 70%);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-nav-close {
  font-size: 1.6rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 14px 8px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  opacity: 0;
  transform: translateX(20px);
}
.mobile-nav.open .mobile-nav-links a { animation: mnavIn 0.4s ease forwards; }
.mobile-nav.open .mobile-nav-links a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { animation-delay: 0.10s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { animation-delay: 0.20s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { animation-delay: 0.25s; }
.mobile-nav.open .mobile-nav-links a:nth-child(6) { animation-delay: 0.30s; }
.mobile-nav.open .mobile-nav-links a:nth-child(7) { animation-delay: 0.35s; }
.mobile-nav.open .mobile-nav-links a:nth-child(8) { animation-delay: 0.40s; }
.mobile-nav.open .mobile-nav-links a:nth-child(9) { animation-delay: 0.45s; }
.mobile-nav.open .mobile-nav-links a:nth-child(10) { animation-delay: 0.50s; }
.mobile-nav-links a.active { color: var(--green-primary); }
.mobile-nav-footer { margin-top: 24px; }
@keyframes mnavIn { to { opacity: 1; transform: translateX(0); } }

/* ==========================================================================
   7. STICKY DOWNLOAD BAR
   ========================================================================== */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  background: linear-gradient(90deg, var(--green-deep), var(--green-primary));
  border-top: 1px solid var(--green-bright);
  box-shadow: 0 -6px 30px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar.dismissed { display: none; }
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.sticky-bar-text { font-family: var(--font-display); font-weight: 700; color: var(--bg-deep); }
.sticky-bar-text span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.8rem; color: rgba(10,15,10,0.75); }
.sticky-bar-actions { display: flex; align-items: center; gap: 10px; }
.sticky-bar .btn-dark {
  background: var(--bg-deep);
  color: var(--green-bright);
  padding: 10px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.sticky-bar .btn-dark:hover { background: #000; }
.sticky-bar-close {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--bg-deep);
  font-size: 1.2rem;
}
.sticky-bar-close:hover { background: rgba(0,0,0,0.15); }

/* ==========================================================================
   8. EXIT POPUP
   ========================================================================== */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 8, 5, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.exit-popup.show { display: flex; animation: fadeIn 0.3s ease; }
.exit-card {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevated), var(--glow-green-strong);
  padding: 40px 32px;
  text-align: center;
  animation: slideInUp 0.4s ease;
}
.exit-card .exit-emoji { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.exit-card h3 { margin-bottom: 10px; }
.exit-card .exit-amount { font-family: var(--font-mono); color: var(--gold-primary); font-size: 1.6rem; }
.exit-card p { margin-bottom: 24px; }
.exit-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--text-muted);
}
.exit-close:hover { background: var(--bg-elevated); color: #fff; }

/* ==========================================================================
   9. BUTTON SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green-primary);
  color: var(--bg-deep);
}
.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: var(--glow-green-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
}
.btn-outline:hover {
  background: rgba(46,204,113,0.1);
  color: var(--green-bright);
  border-color: var(--green-bright);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), #FFB800);
  color: var(--bg-deep);
}
.btn-gold:hover {
  box-shadow: var(--glow-gold), 0 0 32px rgba(245,200,66,0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-ghost:hover { border-color: var(--green-primary); color: var(--green-primary); background: rgba(46,204,113,0.06); }

.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-full-width { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-primary);
}
.link-arrow:hover { color: var(--green-bright); gap: 10px; }

/* ==========================================================================
   10. SECTION PATTERN
   ========================================================================== */
.section { padding-block: var(--section-pad); position: relative; }
.section-sm { padding-block: 64px; }
.section-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 0%, rgba(46,204,113,0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

.section-head { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 56px; }
.section-head.left { text-align: left; margin-inline: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-primary);
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.section-head h2 { margin-bottom: 14px; }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; }

/* ==========================================================================
   11. TRUST TICKER
   ========================================================================== */
.trust-ticker {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.trust-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
}
.ticker-item::after { content: "◆"; color: var(--green-deep); font-size: 0.6rem; }

/* ==========================================================================
   12. HERO / VAULT
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 78% 45%, rgba(46,204,113,0.12), transparent 70%),
    radial-gradient(40% 40% at 10% 80%, rgba(27,94,50,0.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-soft);
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.25);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 8px var(--green-bright); }
.hero h1 { margin-bottom: 20px; }
.hero h1 .hero-amount {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--green-bright);
  text-shadow: 0 0 30px rgba(68,255,136,0.4);
  display: inline-block;
}
.hero-sub { font-size: 1.15rem; max-width: 500px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-trust-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.hero-trust-badge .ic { font-size: 1.05rem; }

/* Vault visual */
.vault-showcase {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.vault-ring {
  position: absolute;
  border-radius: 50%;
  inset: 0;
}
.vault-ring--outer {
  border: 2px dashed rgba(46,204,113,0.35);
  animation: vaultRotate 30s linear infinite;
}
.vault-ring--inner {
  inset: 12%;
  border: 1.5px solid rgba(46,204,113,0.18);
  box-shadow: inset 0 0 60px rgba(46,204,113,0.08);
  animation: vaultRotate 20s linear infinite reverse;
}
.vault-ring--inner::before,
.vault-ring--inner::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 12px var(--green-bright);
}
.vault-ring--inner::before { top: -5px; left: 50%; transform: translateX(-50%); }
.vault-ring--inner::after { bottom: -5px; left: 50%; transform: translateX(-50%); background: var(--gold-primary); box-shadow: 0 0 12px var(--gold-primary); }
.vault-core {
  position: relative;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, var(--bg-elevated), var(--bg-deep));
  border: 1px solid var(--border-active);
  box-shadow: var(--glow-green), inset 0 0 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
}
.vault-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.vault-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1.4rem;
  animation: floatSoft 4s ease-in-out infinite;
}
.vault-tile span { font-family: var(--font-body); font-size: 0.62rem; color: var(--text-secondary); font-weight: 600; }
.vault-tile:nth-child(1) { animation-delay: 0s; }
.vault-tile:nth-child(2) { animation-delay: 0.5s; }
.vault-tile:nth-child(3) { animation-delay: 1s; }
.vault-tile:nth-child(4) { animation-delay: 1.5s; }
.vault-bonus { text-align: center; }
.vault-bonus-amount {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--gold-primary);
  animation: glowPulse 3s ease-in-out infinite;
  border-radius: 8px;
  padding: 2px 8px;
}
.vault-bonus-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.vault-counter {
  margin-top: 28px;
  text-align: center;
}
.vault-counter .vc-amount { font-family: var(--font-mono); font-size: 1.3rem; color: var(--green-bright); }
.vault-counter .vc-label { font-size: 0.78rem; color: var(--text-muted); }

/* ==========================================================================
   HERO SHOWCASE — uploaded hero image (premium phone presentation)
   ========================================================================== */
.hero-showcase {
  position: relative;
  width: min(360px, 100%);
  margin-inline: auto;
  display: grid;
  place-items: center;
  padding: 18px 0;
}
.hs-glow {
  position: absolute;
  inset: -8% -4%;
  background:
    radial-gradient(circle at 50% 42%, rgba(46,204,113,0.30), transparent 62%),
    radial-gradient(circle at 70% 80%, rgba(27,94,50,0.28), transparent 65%);
  filter: blur(18px);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
}
.hs-ring {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hs-ring--outer {
  width: 118%; aspect-ratio: 1;
  border: 1.5px dashed rgba(46,204,113,0.28);
  animation: vaultRotate 34s linear infinite;
}
.hs-ring--inner {
  width: 96%; aspect-ratio: 1;
  border: 1px solid rgba(46,204,113,0.16);
  box-shadow: inset 0 0 60px rgba(46,204,113,0.08);
  animation: vaultRotate 24s linear infinite reverse;
}
.hs-phone {
  position: relative;
  z-index: 2;
  width: min(290px, 78%);
  aspect-ratio: 863 / 1823;
  border-radius: 30px;
  overflow: hidden;
  padding: 7px;
  background: linear-gradient(150deg, rgba(46,204,113,0.30), rgba(20,28,22,0.65) 45%, rgba(10,15,10,0.85));
  border: 1px solid rgba(46,204,113,0.30);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    0 0 60px rgba(46,204,113,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: floatSoft 6s ease-in-out infinite;
}
.hs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 24px;
  user-select: none;
}
/* Floating glassmorphism info cards */
.hs-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 14px;
  background: rgba(18, 26, 20, 0.55);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(46,204,113,0.28);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
  animation: floatSoft 5s ease-in-out infinite;
}
.hs-float-text { display: flex; flex-direction: column; line-height: 1.15; }
.hs-float-text strong { font-family: var(--font-mono); font-size: 0.98rem; color: var(--text-primary); }
.hs-float-text span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.7px; color: var(--text-muted); }
.hs-float-ic { font-size: 1.3rem; }
.hs-float--bonus {
  top: 12%; left: -6%;
  animation-delay: 0.4s;
}
.hs-float--bonus .hs-float-text strong { color: var(--gold-primary); }
.hs-float--win {
  bottom: 16%; right: -8%;
  animation-delay: 1.1s;
}
.hs-float--win .hs-float-text strong { color: var(--green-bright); }
.hs-float--secure {
  bottom: 4%; left: -2%;
  animation-delay: 1.8s;
}
.hs-float-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green-bright);
  animation: glowPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .hs-phone { width: min(250px, 72%); }
  .hs-float { padding: 9px 12px; }
  .hs-float-ic { font-size: 1.1rem; }
  .hs-float--bonus { left: -2%; }
  .hs-float--win { right: -2%; }
}

/* ==========================================================================
   13. GAME CARDS
   ========================================================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.game-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--glow-green);
  transform: translateY(-4px);
}
.game-card.is-hidden { display: none; }
.game-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 40%, rgba(46,204,113,0.12), transparent 70%),
    linear-gradient(135deg, var(--bg-elevated), var(--bg-deep));
  border-bottom: 1px solid var(--border-subtle);
}
/* Whole thumbnail is a link to the game detail page */
a.game-thumb { display: grid; }
.feat-large-visual { text-decoration: none; }
.game-thumb svg { width: 46px; height: 46px; opacity: 0.85; }
.game-thumb .game-emoji { font-size: 2.4rem; }
.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,15,10,0.78);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.game-card:hover .game-overlay,
.game-card:focus-within .game-overlay { opacity: 1; }
.game-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.game-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 6px;
}
.game-badge.hot { background: var(--danger); color: #fff; }
.game-badge.new { background: var(--green-primary); color: var(--bg-deep); }
.game-badge.live { background: var(--info); color: #fff; }
.game-info { padding: 14px 16px; }
.game-name { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; margin-bottom: 6px; }
.game-meta { display: flex; align-items: center; justify-content: space-between; }
.game-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.game-rtp { font-family: var(--font-mono); font-size: 0.75rem; color: var(--green-soft); }
.game-name a { color: inherit; text-decoration: none; }
.game-name a:hover { color: var(--green-primary); }

/* Game thumbnail actual image */
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.game-card:hover .game-thumb img { transform: scale(1.06); }

/* No-image placeholder for detail page */
.game-detail-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(46,204,113,0.1) 0%, var(--bg-elevated) 50%, var(--bg-deep) 100%);
  border: 1px solid rgba(46,204,113,0.22);
  box-shadow: var(--shadow-elevated), 0 0 40px rgba(46,204,113,0.12);
  margin: 0 auto;
}
.game-detail-placeholder .gdp-icon { font-size: 3.5rem; line-height: 1; }
.game-detail-placeholder .gdp-name { font-size: 0.9rem; font-weight: 700; color: var(--green-primary); text-align: center; padding: 0 16px; }

/* ==========================================================================
   GAME DETAIL PAGE
   ========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 12px 0 4px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-primary); }
.breadcrumb-sep { color: var(--border-subtle); }
.game-detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: start;
}
.game-detail-img {
  text-align: center;
  position: sticky;
  top: 100px;
}
.game-detail-img img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevated), 0 0 50px rgba(46,204,113,0.18);
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(46,204,113,0.2);
}
.game-stats-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}
.stat-chip {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 84px;
  text-align: center;
}
.stat-chip span {
  font-size: 0.62rem;
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
}
.stat-chip strong {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--green-primary);
}
.game-detail-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 26px;
}

/* Featured spotlight layout (homepage) */
.featured-spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.feat-large {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.feat-large:hover { border-color: var(--green-primary); box-shadow: var(--glow-green); }
.feat-large-visual {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  font-size: 4rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(46,204,113,0.18), transparent 70%),
    linear-gradient(135deg, var(--bg-elevated), var(--bg-deep));
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.feat-large-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.feat-rtp {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(46,204,113,0.3);
  color: var(--green-bright);
  padding: 5px 12px;
  border-radius: 8px;
}
.feat-large-body h3 { margin-bottom: 8px; }
.feat-large-body p { font-size: 0.95rem; flex: 1; margin-bottom: 18px; }
.feat-small-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ==========================================================================
   14. FILTER TABS
   ========================================================================== */
.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  margin-bottom: 36px;
}
.filter-tabs::-webkit-scrollbar { height: 4px; }
.filter-tab {
  position: relative;
  flex: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.filter-tab:hover { color: var(--text-primary); border-color: var(--green-deep); }
.filter-tab.active {
  background: var(--green-primary);
  color: var(--bg-deep);
  border-color: var(--green-primary);
}

.games-search {
  position: relative;
  max-width: 480px;
  margin-bottom: 24px;
}
.games-search input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.games-search input:focus { outline: none; border-color: var(--green-primary); box-shadow: var(--glow-green); }
.games-search input::placeholder { color: var(--text-muted); }
.games-search .search-ic {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.no-results {
  display: none;
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
}
.no-results.show { display: block; }
.load-more-wrap { text-align: center; margin-top: 44px; }

/* ==========================================================================
   15. HOW IT WORKS
   ========================================================================== */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps-flow.steps-4 { grid-template-columns: repeat(4, 1fr); }
.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { border-color: var(--green-primary); box-shadow: var(--glow-green); }
.step-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.2);
  color: var(--green-primary);
}
.step-icon svg { width: 30px; height: 30px; }
.step-num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: rgba(46, 204, 113, 0.30);
  font-weight: 500;
}
.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: 0.92rem; }
.step-connector {
  position: absolute;
  top: 56px;
  height: 2px;
  background-image: linear-gradient(90deg, var(--green-deep) 50%, transparent 50%);
  background-size: 12px 2px;
  z-index: 0;
}
.countdown-wrap {
  margin-top: 48px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px;
  max-width: 520px;
  margin-inline: auto;
}
.countdown-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.countdown-unit {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 64px;
}
.countdown-unit .cd-num { font-family: var(--font-mono); font-size: 1.7rem; color: var(--gold-primary); display: block; line-height: 1; }
.countdown-unit .cd-unit { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 6px; display: block; }

/* ==========================================================================
   16. SCREENSHOTS CAROUSEL
   ========================================================================== */
.carousel {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
}
.carousel-viewport { overflow: hidden; border-radius: var(--radius-card); }
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  cursor: grab;
}
.carousel-track.dragging { cursor: grabbing; transition: none; }
.carousel-slide {
  flex: 0 0 100%;
  padding: 40px 16px;
  display: grid;
  place-items: center;
}
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.phone-frame {
  width: 280px;
  aspect-ratio: 9 / 19;
  background: var(--bg-deep);
  border: 2.5px solid rgba(46, 204, 113, 0.22);
  border-radius: 36px;
  padding: 5px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 72px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(46, 204, 113, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.phone-frame:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(46, 204, 113, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 30px;
  display: block;
  user-select: none;
  pointer-events: none;
}
.slide-label {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  z-index: 3;
  transition: all 0.2s ease;
}
.carousel-btn:hover { background: var(--green-primary); color: var(--bg-deep); border-color: var(--green-primary); }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-subtle);
  transition: all 0.2s ease;
}
.carousel-dot.active { background: var(--green-primary); width: 28px; border-radius: 6px; }

/* ==========================================================================
   17. STATS SECTION
   ========================================================================== */
.stats-strip {
  background: var(--bg-primary);
  border-block: 1px solid var(--border-subtle);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-col { text-align: center; padding: 16px; }
.stat-ic {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(46,204,113,0.08);
  color: var(--green-primary);
}
.stat-ic svg { width: 26px; height: 26px; }
.stat-num { font-family: var(--font-mono); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; color: var(--text-primary); line-height: 1; }
.stat-num .suffix { color: var(--green-primary); }
.stat-desc { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 10px; }

/* ==========================================================================
   18. FEATURE CARDS
   ========================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.feature-card:hover { border-color: var(--green-primary); box-shadow: var(--glow-green); transform: translateY(-4px); }
.feature-ic {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.2);
  color: var(--green-primary);
  margin-bottom: 20px;
}
.feature-ic svg { width: 28px; height: 28px; }
.feature-card h4 { margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; }

/* ==========================================================================
   19. BONUS CARDS
   ========================================================================== */
.bonus-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; align-items: stretch; }
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.bonus-card:hover { border-color: var(--green-primary); box-shadow: var(--glow-green); }
.bonus-card.featured {
  background: linear-gradient(160deg, rgba(245,200,66,0.08), var(--bg-card));
  border-color: rgba(245,200,66,0.4);
}
.bonus-card.featured:hover { box-shadow: var(--glow-gold); }
.bonus-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(46,204,113,0.1);
  color: var(--green-primary);
  margin-bottom: 18px;
}
.bonus-card.featured .bonus-tag { background: rgba(245,200,66,0.15); color: var(--gold-primary); }
.bonus-amount { font-family: var(--font-mono); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 500; color: var(--text-primary); line-height: 1; margin-bottom: 6px; }
.bonus-card.featured .bonus-amount { color: var(--gold-primary); }
.bonus-card h4 { margin-bottom: 8px; }
.bonus-card p { font-size: 0.92rem; flex: 1; margin-bottom: 22px; }
.bonus-terms { font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; }

/* ==========================================================================
   20. REFERRAL SECTION
   ========================================================================== */
.referral-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 19px; top: 40px; bottom: 0;
  width: 2px;
  background: var(--border-subtle);
}
.timeline-item:last-child::before { display: none; }
.timeline-num {
  position: absolute;
  left: 0; top: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(46,204,113,0.1);
  border: 1px solid var(--green-primary);
  color: var(--green-primary);
  font-family: var(--font-mono);
  font-weight: 500;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 0.92rem; }

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--glow-green);
}
.calc-card h4 { margin-bottom: 24px; }
.calc-row { margin-bottom: 24px; }
.calc-label { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 12px; }
.calc-label .calc-value { font-family: var(--font-mono); color: var(--green-bright); font-size: 1.1rem; }
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-elevated);
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-primary);
  border: 3px solid var(--bg-deep);
  box-shadow: var(--glow-green);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-primary);
  border: 3px solid var(--bg-deep);
  cursor: pointer;
}
.calc-output {
  text-align: center;
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.calc-output .co-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.calc-output .co-amount { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 500; color: var(--gold-primary); line-height: 1; }
.calc-breakdown { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; }

/* ==========================================================================
   21. LEADERBOARD TABLE
   ========================================================================== */
.lb-table-wrap { overflow-x: auto; border-radius: var(--radius-card); border: 1px solid var(--border-subtle); }
.lb-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.lb-table th {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 16px 20px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}
.lb-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}
.lb-table tbody tr { transition: background 0.2s ease; background: var(--bg-card); }
.lb-table tbody tr:hover { background: var(--bg-elevated); }
.lb-table tbody tr:last-child td { border-bottom: none; }
.lb-rank { font-family: var(--font-mono); font-weight: 500; }
.lb-rank-badge {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg-deep);
}
.lb-rank-badge.gold { background: linear-gradient(135deg, var(--gold-primary), #FFB800); }
.lb-rank-badge.silver { background: linear-gradient(135deg, #D8E0E4, #A9B4BB); }
.lb-rank-badge.bronze { background: linear-gradient(135deg, #D89B6A, #B06E3E); }
.lb-amount { font-family: var(--font-mono); color: var(--green-bright); font-weight: 500; }
.lb-player { font-weight: 600; }

/* Top 3 showcase */
.lb-podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.podium-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  position: relative;
}
.podium-card.first { border-color: rgba(245,200,66,0.5); box-shadow: var(--glow-gold); transform: translateY(-12px); }
.podium-card.second { border-color: rgba(216,224,228,0.3); }
.podium-card.third { border-color: rgba(216,155,106,0.3); }
.podium-crown { font-size: 2rem; margin-bottom: 8px; }
.podium-rank { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); }
.podium-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin: 8px 0; }
.podium-game { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 12px; }
.podium-amount { font-family: var(--font-mono); font-size: 1.5rem; color: var(--green-bright); }

/* ==========================================================================
   22. FAQ ACCORDION
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.open { border-color: var(--green-primary); }
.faq-item.is-hidden { display: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-primary);
}
.faq-q .faq-icon {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--green-primary);
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.2s ease;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--green-primary); color: var(--bg-deep); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 24px 22px; color: var(--text-secondary); font-size: 0.95rem; }
.faq-a-inner a { color: var(--green-primary); }
.faq-a-inner a:hover { color: var(--green-bright); }

.faq-search { position: relative; max-width: 520px; margin: 0 auto 40px; }
.faq-search input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
}
.faq-search input:focus { outline: none; border-color: var(--green-primary); box-shadow: var(--glow-green); }
.faq-search .search-ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.faq-group-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--green-soft); margin: 36px 0 16px; }
.faq-group:first-child .faq-group-title { margin-top: 0; }

/* ==========================================================================
   23. BLOG GRID
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover { border-color: var(--green-primary); box-shadow: var(--glow-green); transform: translateY(-4px); }
.blog-card.is-hidden { display: none; }
.blog-thumb {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(46,204,113,0.14), transparent 70%),
    linear-gradient(135deg, var(--bg-elevated), var(--bg-deep));
  font-size: 2.4rem;
  border-bottom: 1px solid var(--border-subtle);
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-pill {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-primary);
  background: rgba(46,204,113,0.1);
  padding: 4px 10px;
  border-radius: 16px;
  margin-bottom: 14px;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a:hover { color: var(--green-primary); }
.blog-excerpt {
  font-size: 0.9rem;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-foot { display: flex; align-items: center; justify-content: space-between; }
.blog-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 12px; }

/* Featured blog */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 40px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-featured:hover { border-color: var(--green-primary); box-shadow: var(--glow-green); }
.blog-featured-thumb {
  display: grid;
  place-items: center;
  min-height: 320px;
  height: 100%;
  overflow: hidden;
  font-size: 4rem;
  background:
    radial-gradient(circle at 40% 40%, rgba(46,204,113,0.16), transparent 70%),
    linear-gradient(135deg, var(--bg-elevated), var(--bg-deep));
}
.blog-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-featured-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { margin-bottom: 14px; }

/* ==========================================================================
   24. CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  text-align: center;
  padding-block: 96px;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 50% 50%, rgba(46,204,113,0.14), transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta-banner h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.cta-banner p { font-size: 1.15rem; margin-bottom: 32px; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }

/* ==========================================================================
   25. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding-top: 72px;
  margin-bottom: 0;
}
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border-subtle); }
.footer-brand .logo { font-size: 1.6rem; margin-bottom: 14px; display: inline-flex; }
.footer-tagline { font-family: var(--font-display); font-weight: 600; color: var(--green-soft); margin-bottom: 12px; }
.footer-desc { font-size: 0.9rem; max-width: 320px; }
.footer-col h5 { font-family: var(--font-display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: var(--text-secondary); }
.footer-col a:hover { color: var(--green-primary); }
.affiliate-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green-soft);
  background: rgba(46,204,113,0.06);
  border: 1px solid rgba(46,204,113,0.18);
  padding: 5px 12px;
  border-radius: 16px;
  margin-top: 16px;
}
.footer-pay { display: flex; flex-wrap: wrap; gap: 12px; padding: 28px 0; border-bottom: 1px solid var(--border-subtle); }
.footer-pay-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-right: 8px; align-self: center; }
.pay-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.footer-disclaimer {
  padding: 28px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-disclaimer strong { color: var(--text-secondary); }
.footer-disclaimer .danger-states { color: var(--danger); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 0 32px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--green-primary); }

/* ==========================================================================
   26. GAME DETAIL PAGES
   ========================================================================== */
.page-hero {
  position: relative;
  padding-block: 72px 56px;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 70% 0%, rgba(46,204,113,0.1), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--green-primary); }
.breadcrumb .sep { color: var(--border-subtle); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .page-lead { font-size: 1.1rem; max-width: 640px; }

.game-detail-head { display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: start; }
.game-detail-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  display: grid;
  place-items: center;
  font-size: 4rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(46,204,113,0.16), transparent 70%),
    linear-gradient(135deg, var(--bg-elevated), var(--bg-deep));
  border: 1px solid var(--border-active);
  box-shadow: var(--glow-green);
}
.game-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-primary);
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.stat-box .sb-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.stat-box .sb-value { font-family: var(--font-mono); font-size: 1.15rem; color: var(--green-bright); }

.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 28px; overflow-x: auto; }
.tab-btn {
  flex: none;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--green-primary); border-bottom-color: var(--green-primary); }
.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }
.tab-panel h3 { margin-bottom: 14px; }
.tab-panel p { margin-bottom: 16px; }
.tab-panel ul.bullets { margin: 0 0 16px; padding-left: 4px; }
.tab-panel ul.bullets li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--text-secondary); }
.tab-panel ul.bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--green-primary); font-weight: 700; }

/* ==========================================================================
   27. DOWNLOAD PAGE
   ========================================================================== */
.dl-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 8px; }
.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 10px;
  color: var(--green-soft);
}
.req-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.req-card .req-ic { font-size: 1.8rem; margin-bottom: 10px; }
.req-card .req-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; }
.req-card .req-value { font-family: var(--font-mono); color: var(--text-primary); font-size: 1.05rem; }
.version-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border-subtle); border-radius: var(--radius-card); overflow: hidden; }
.version-table th, .version-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border-subtle); font-size: 0.9rem; }
.version-table th { background: var(--bg-primary); font-family: var(--font-display); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.version-table td { background: var(--bg-card); }
.version-table tr:last-child td { border-bottom: none; }
.version-table .v-num { font-family: var(--font-mono); color: var(--green-bright); }

/* ==========================================================================
   28. BLOG POST PAGES
   ========================================================================== */
.article {
  max-width: 760px;
  margin-inline: auto;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.article-meta .pill { color: var(--green-primary); background: rgba(46,204,113,0.1); padding: 3px 12px; border-radius: 16px; font-weight: 600; }
.article-hero-img {
  aspect-ratio: 16 / 9;
  max-height: 440px;
  border-radius: var(--radius-card);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 3.4rem;
  margin-bottom: 36px;
  background:
    radial-gradient(circle at 40% 30%, rgba(46,204,113,0.16), transparent 70%),
    linear-gradient(135deg, var(--bg-elevated), var(--bg-deep));
  border: 1px solid var(--border-subtle);
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.article-body { font-size: 1.05rem; line-height: 1.8; }
.article-body h2 { font-size: 1.7rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.3rem; margin: 30px 0 12px; color: var(--green-soft); }
.article-body p { margin-bottom: 20px; color: var(--text-secondary); }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 4px; }
.article-body ul li, .article-body ol li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--text-secondary); }
.article-body ul li::before { content: "▸"; position: absolute; left: 4px; color: var(--green-primary); }
.article-body ol { counter-reset: ol; }
.article-body ol li { counter-increment: ol; }
.article-body ol li::before { content: counter(ol); position: absolute; left: 0; color: var(--green-primary); font-family: var(--font-mono); font-weight: 600; }
.article-body a { color: var(--green-primary); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--green-bright); }
/* Restore correct button colours/styles when buttons appear inside article body */
.article-body a.btn { text-decoration: none; }
.article-body a.btn-primary { color: var(--bg-deep); }
.article-body a.btn-primary:hover { color: var(--bg-deep); }
.article-body a.btn-gold { color: var(--bg-deep); }
.article-body a.btn-gold:hover { color: var(--bg-deep); }
.article-body a.btn-ghost { color: var(--text-primary); }
.article-body a.btn-outline { color: var(--green-primary); }
.article-body blockquote {
  border-left: 3px solid var(--green-primary);
  padding: 14px 24px;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: 0 12px 12px 0;
  color: var(--text-secondary);
  font-style: italic;
}
.article-body strong { color: var(--text-primary); }
.callout {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.callout .callout-title { font-family: var(--font-display); font-weight: 700; color: var(--gold-soft); margin-bottom: 6px; }
.related-posts { margin-top: 64px; }
.related-posts h3 { margin-bottom: 24px; }

/* ==========================================================================
   29. STATIC PAGES (terms, privacy, about, responsible gaming)
   ========================================================================== */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 10px; color: var(--green-soft); }
.prose p { margin-bottom: 18px; color: var(--text-secondary); line-height: 1.8; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text-secondary); }
.prose ul li::before { content: "▸"; position: absolute; left: 4px; color: var(--green-primary); }
.prose ol { counter-reset: pol; }
.prose ol li { counter-increment: pol; position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--text-secondary); }
.prose ol li::before { content: counter(pol)"."; position: absolute; left: 0; color: var(--green-primary); font-family: var(--font-mono); }
.prose a { color: var(--green-primary); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text-primary); }
.legal-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; font-style: italic; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { border-color: var(--green-primary); box-shadow: var(--glow-green); }
.value-card .value-ic { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-stat {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px 20px;
}
.about-stat .as-num { font-family: var(--font-mono); font-size: 2rem; color: var(--green-bright); line-height: 1; }
.about-stat .as-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 10px; }

/* Responsible gaming self-assessment */
.assess-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.assess-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 18px 22px;
}
.assess-item .assess-q { flex: 1; color: var(--text-secondary); }
.assess-check {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--border-active);
  flex: none;
}
.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.resource-card h4 { margin-bottom: 6px; }
.resource-card .res-num { font-family: var(--font-mono); color: var(--green-bright); }
.warning-banner {
  background: rgba(255,71,87,0.06);
  border: 1px solid rgba(255,71,87,0.25);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin: 32px 0;
  color: var(--text-secondary);
}
.warning-banner strong { color: var(--danger); }

/* ==========================================================================
   30. CONTACT FORM
   ========================================================================== */
.contact-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px;
}
.contact-info-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-subtle); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ci-ic {
  width: 44px; height: 44px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(46,204,113,0.08);
  color: var(--green-primary);
  font-size: 1.2rem;
}
.contact-info-item .ci-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.contact-info-item .ci-value { font-weight: 600; color: var(--text-primary); }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }
.form-group label .req { color: var(--danger); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus { outline: none; border-color: var(--green-primary); box-shadow: var(--glow-green); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235A7A62' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group.error .form-control { border-color: var(--danger); }
.form-error { display: none; color: var(--danger); font-size: 0.8rem; margin-top: 6px; }
.form-group.error .form-error { display: block; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(46,204,113,0.08);
  border: 1px solid var(--green-primary);
  border-radius: 12px;
  padding: 18px 22px;
  color: var(--green-soft);
  margin-bottom: 22px;
}
.form-success.show { display: flex; }
.form-success .fs-ic { font-size: 1.4rem; }

/* ==========================================================================
   31. SITEMAP PAGE
   ========================================================================== */
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.sitemap-col h4 { font-family: var(--font-display); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--green-primary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border-subtle); }
.sitemap-col ul { display: flex; flex-direction: column; gap: 10px; }
.sitemap-col a { font-size: 0.92rem; color: var(--text-secondary); }
.sitemap-col a:hover { color: var(--green-primary); padding-left: 4px; }

/* ==========================================================================
   32. 404 PAGE
   ========================================================================== */
.error-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
}
.error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 50% at 50% 40%, rgba(46,204,113,0.1), transparent 70%);
  pointer-events: none;
}
.error-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 22vw, 14rem);
  line-height: 1;
  color: var(--green-primary);
  text-shadow: 0 0 60px rgba(46,204,113,0.5);
  position: relative;
}
.error-page h1 { margin: 12px 0 14px; position: relative; }
.error-page p { max-width: 460px; margin-bottom: 32px; position: relative; }
.error-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ==========================================================================
   33. UTILITIES
   ========================================================================== */
.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;
}
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 8px; } .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-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.maxw-640 { max-width: 640px; }
.center-block { margin-inline: auto; }
.divider { height: 1px; background: var(--border-subtle); border: none; margin-block: 40px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ==========================================================================
   34. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { max-width: 100%; text-align: center; margin-inline: auto; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .vault-showcase { width: min(380px, 100%); }
  .referral-split { grid-template-columns: 1fr; gap: 36px; }
  .contact-split { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-thumb { min-height: 200px; }
  .game-detail-head { grid-template-columns: 1fr; }
  .game-detail-visual { max-width: 260px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: 1fr; }
  .lb-podium { grid-template-columns: 1fr; gap: 16px; }
  .podium-card.first { transform: none; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-spotlight { grid-template-columns: 1fr; }
  .steps-flow, .steps-flow.steps-4 { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .featured-spotlight .feat-small-grid { grid-template-columns: repeat(2, 1fr); }
  .game-detail-layout { grid-template-columns: 1fr; gap: 28px; }
  .game-detail-img { position: static; }
  .game-detail-img img { max-width: 200px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-ctas { flex-wrap: wrap; }
  .article-body h2 { font-size: 1.45rem; }
  .article-body h3 { font-size: 1.15rem; }
  .faq-q { font-size: 0.95rem; padding: 16px 18px; }
  .calc-card { padding: 24px 20px; }
}
@media (max-width: 640px) {
  .container { padding-inline: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .feat-small-grid { grid-template-columns: 1fr; }
  .announce-msg { font-size: 0.75rem; }
  .header-actions .btn { padding: 9px 14px; font-size: 0.78rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.92rem; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions .btn { width: 100%; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .section-header { margin-bottom: 32px; }
  .section-header .section-title { font-size: 1.7rem; }
  .bonus-amount { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .game-detail-desc { font-size: 0.96rem; }
  .stat-chip { padding: 6px 10px; }
  .game-stats-bar { gap: 8px; }
  .sticky-bar { padding-block: 10px; }
  .sticky-bar-text { font-size: 0.82rem; }
  table { font-size: 0.85rem; }
  .dl-badges { gap: 8px; }
  .contact-info-card { padding: 20px; }
  .form-control { padding: 11px 14px; }
  .podium-card { padding: 22px 16px; }
  .blog-card h3 { font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats-grid { grid-template-columns: 1fr; }
  .game-info { padding: 10px 12px; }
  .game-name { font-size: 0.85rem; }
  .countdown-unit { min-width: 54px; padding: 10px; }
  .countdown-unit .cd-num { font-size: 1.4rem; }
  .hero-trust { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .phone-frame { width: 220px; }
  .announce-inner { gap: 10px; padding-right: 40px; }
  .faq-q { padding: 14px 16px; gap: 12px; }
  .lb-podium { grid-template-columns: 1fr; }
  .calc-output .co-amount { font-size: 1.8rem; }
  .article-hero-img { aspect-ratio: 16/10; }
}
@media (max-width: 360px) {
  .games-grid { grid-template-columns: 1fr; }
  .vault-showcase { width: 280px; }
  .header-actions .btn { display: none; }
  .container { padding-inline: 12px; }
  .hero-ctas .btn { font-size: 0.88rem; }
  .step-card { padding: 22px 18px; }
}
