/* =============================================
   BETSIXTY V3 — Full-width, no sidebar
   Dark theme: #0E1117 bg, #E2FF02 lime accent
   Inter + Bebas Neue fonts (local)
   ============================================= */

/* --- Local Fonts --- */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2 supports variations'),
       url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Tokens --- */
:root {
  --c-bg:          #0E1117;
  --c-bg2:         #13161E;
  --c-bg3:         #1A1E28;
  --c-card:        #181C26;
  --c-card-hover:  #1E2332;
  --c-lime:        #E2FF02;
  --c-green:       #3DDC84;
  --c-gold:        #FFB800;
  --c-red:         #FF4757;
  --c-white:       #FFFFFF;
  --c-muted:       #8892A4;
  --c-dim:         #4A5568;
  --c-border:      rgba(255,255,255,0.07);
  --c-border-lime: rgba(226,255,2,0.2);
  --c-border-card: rgba(255,255,255,0.06);
  --header-h:      60px;
  --max-w:         1280px;
  --radius-xs:     6px;
  --radius-sm:     10px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --font-display:  'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:     'Outfit', 'Arial', sans-serif;
  --tr:            0.2s ease;
  --shadow-card:   0 2px 12px rgba(0,0,0,0.5);
  --shadow-lime:   0 0 20px rgba(226,255,2,0.15);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-bg3); border-radius: 3px; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(14,17,23,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.6); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo { flex-shrink: 0; }
.site-logo img { height: 32px; width: auto; transition: opacity var(--tr); }
.site-logo a:hover img { opacity: 0.8; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  transition: all var(--tr);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--c-white); background: rgba(255,255,255,0.05); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--tr);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(14,17,23,0.99);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 20px 18px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity var(--tr), transform var(--tr);
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.mobile-nav ul a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  transition: all var(--tr);
}
.mobile-nav ul a:hover { color: var(--c-white); background: rgba(255,255,255,0.05); }
.mobile-nav-btns { display: flex; gap: 8px; }
.mobile-nav-btns .btn { flex: 1; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--radius-xs);
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--c-lime);
  color: #0a0d00;
  font-weight: 700;
}
.btn-primary:hover { background: #f0ff00; box-shadow: 0 0 16px rgba(226,255,2,0.4); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.btn-ghost {
  background: rgba(226,255,2,0.08);
  color: var(--c-lime);
  border: 1px solid var(--c-border-lime);
}
.btn-ghost:hover { background: rgba(226,255,2,0.15); }

.btn-lg { font-size: 14px; padding: 12px 24px; border-radius: var(--radius-sm); }
.btn-xl { font-size: 15px; padding: 14px 28px; border-radius: var(--radius-sm); }

/* =============================================
   HERO — full-width, two columns
   ============================================= */
.hero-section {
  padding-top: var(--header-h);
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

/* Noise texture overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(226,255,2,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(61,220,132,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0 52px;
  position: relative;
  z-index: 1;
}

/* Left */
.hero-left {}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(226,255,2,0.08);
  border: 1px solid var(--c-border-lime);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-lime);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--c-white);
  margin-bottom: 16px;
}
.hero-title span { color: var(--c-lime); display: block; }

.hero-desc {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

/* Bonus pill */
.hero-bonus {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--c-card);
  border: 1px solid var(--c-border-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 460px;
}
.hero-bonus-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--c-lime);
  letter-spacing: 1px;
  line-height: 1;
  flex-shrink: 0;
}
.hero-bonus-text { font-size: 13px; color: var(--c-muted); line-height: 1.5; }
.hero-bonus-text strong { display: block; color: var(--c-white); font-size: 14px; margin-bottom: 2px; }

.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-disclaimer {
  font-size: 11px;
  color: var(--c-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-disclaimer svg { width: 12px; height: 12px; color: var(--c-green); flex-shrink: 0; }

/* Right — banner + floating stats */
.hero-right {
  position: relative;
}

.hero-banner-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--shadow-lime);
}
.hero-banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating stat cards */
.hero-float {
  position: absolute;
  background: rgba(14,17,23,0.9);
  border: 1px solid var(--c-border-lime);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  backdrop-filter: blur(8px);
  animation: float-y 4s ease-in-out infinite;
}
.hero-float:nth-child(2) { animation-delay: -2s; }
.hero-float-val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--c-lime);
  line-height: 1;
  letter-spacing: 1px;
}
.hero-float-label { font-size: 10px; color: var(--c-muted); margin-top: 2px; }
.float-tl { top: -16px; left: -16px; }
.float-br { bottom: -16px; right: -16px; }

@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.stats-bar-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border-right: 1px solid var(--c-border);
  transition: background var(--tr);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(226,255,2,0.03); }
.stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--c-lime);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--c-muted); margin-top: 4px; }

/* =============================================
   SECTION COMMON
   ============================================= */
.section { padding: 64px 0; overflow-x: hidden; }
.section-sm { padding: 48px 0; overflow-x: hidden; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--c-white);
  letter-spacing: 2px;
  line-height: 1;
}
.section-title span { color: var(--c-lime); }

.section-sub {
  font-size: 14px;
  color: var(--c-muted);
  margin-top: 6px;
}

/* =============================================
   PROVIDERS — scrollable row
   ============================================= */
.providers-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.provider-tag {
  background: var(--c-card);
  border: 1px solid var(--c-border-card);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: all var(--tr);
  cursor: default;
}
.provider-tag:hover { color: var(--c-lime); border-color: var(--c-border-lime); }

/* =============================================
   GAMES GRID
   ============================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-card);
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.game-thumb {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.game-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-thumb img { transform: scale(1.07); }

.game-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 2;
}
.badge-hot { background: var(--c-red); color: #fff; }
.badge-new { background: var(--c-green); color: #0a1a0e; }
.badge-top { background: var(--c-gold); color: #1a0e00; }

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,17,23,0.95) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  transition: opacity var(--tr);
}
.game-card:hover .game-overlay { opacity: 1; }
.btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--c-lime);
  color: #0a0d00;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 9px;
  border-radius: var(--radius-xs);
  transition: background var(--tr);
}
.btn-play:hover { background: #f0ff00; }

.game-info { padding: 10px 12px 12px; }
.game-name {
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider { font-size: 11px; color: var(--c-dim); margin-top: 2px; }

/* =============================================
   BANNER
   ============================================= */
.banner-section { padding: 0 0 64px; }
.banner-inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  transition: box-shadow var(--tr);
}
.banner-inner:hover { box-shadow: 0 20px 60px rgba(226,255,2,0.12); }
.banner-inner img { width: 100%; height: auto; display: block; }

/* =============================================
   SEO + TOC two-column layout
   ============================================= */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}

/* TOC sidebar */
.toc-box {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--c-card);
  border: 1px solid var(--c-border-card);
  border-radius: var(--radius-md);
  padding: 20px;
}
.toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-dim);
  margin-bottom: 14px;
}
.toc-list { display: flex; flex-direction: column; gap: 4px; }
.toc-list a {
  font-size: 13px;
  color: var(--c-muted);
  padding: 6px 8px;
  border-radius: var(--radius-xs);
  border-left: 2px solid transparent;
  transition: all var(--tr);
  line-height: 1.4;
}
.toc-list a:hover,
.toc-list a.active {
  color: var(--c-lime);
  border-left-color: var(--c-lime);
  background: rgba(226,255,2,0.05);
  padding-left: 12px;
}

/* SEO content styles */
.seo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: 1.5px;
  color: var(--c-white);
  margin: 36px 0 12px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.seo-content h2:first-child { margin-top: 0; }

.seo-content h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 1px;
  color: var(--c-lime);
  margin: 24px 0 10px;
}

.seo-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 14px;
}
.seo-content strong { color: var(--c-white); font-weight: 700; }
.seo-content a { color: var(--c-green); text-decoration: underline; }
.seo-content a:hover { color: var(--c-lime); }

/* Tables */
.seo-content table,
.description-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.seo-content thead,
.description-section thead {
  background: rgba(226,255,2,0.06);
  border-bottom: 2px solid var(--c-lime);
}
.seo-content th,
.description-section th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-lime);
  padding: 13px 16px;
  text-align: left;
}
.seo-content tbody tr,
.description-section tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--tr);
}
.seo-content tbody tr:last-child,
.description-section tbody tr:last-child { border-bottom: none; }
.seo-content tbody tr:nth-child(even),
.description-section tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.seo-content tbody tr:hover,
.description-section tbody tr:hover { background: rgba(226,255,2,0.04); }
.seo-content td,
.description-section td {
  padding: 12px 16px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.5;
}
.seo-content td:first-child,
.description-section td:first-child { font-weight: 600; color: var(--c-white); }

@media (max-width: 680px) {
  .seo-content table,
  .description-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
  }
  .seo-content th, .seo-content td,
  .description-section th, .description-section td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .seo-content,
  .description-section {
    overflow-x: hidden;
    max-width: 100%;
  }

  .seo-content .bonus-cards,
  .description-section .bonus-cards {
    grid-template-columns: 1fr;
  }

  .faq-section {
    overflow-x: hidden;
  }

  .faq-list {
    max-width: 100%;
  }
}

/* Lists */
.seo-content ol,
.seo-content ul,
.description-section ol,
.description-section ul {
  padding-left: 1.5em;
  margin: 12px 0 16px;
  box-sizing: border-box;
  max-width: 100%;
}
.seo-content ol, .description-section ol { list-style: decimal; }
.seo-content ul, .description-section ul { list-style: disc; }
.seo-content ol li, .seo-content ul li,
.description-section ol li, .description-section ul li {
  padding-left: 0.3em;
  margin-bottom: 7px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}
.seo-content ol li::marker, .description-section ol li::marker { color: var(--c-lime); font-weight: 700; }
.seo-content ul li::marker, .description-section ul li::marker { color: var(--c-lime); }

/* Protect nav lists */
nav ul, nav ol, .header-nav ul, .mobile-nav ul,
.footer-links, .footer-links ul { list-style: none !important; padding-left: 0 !important; margin: 0 !important; }

/* Bonus cards inside seo-content */
.seo-content .bonus-cards,
.description-section .bonus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
  list-style: none !important;
  padding-left: 0 !important;
}
.seo-content .bonus-card,
.description-section .bonus-card {
  background: var(--c-card);
  border: 1px solid var(--c-border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--tr);
  list-style: none !important;
}
.seo-content .bonus-card:hover,
.description-section .bonus-card:hover { border-color: var(--c-border-lime); }
.seo-content .bonus-card-title,
.description-section .bonus-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--c-white);
  margin-bottom: 8px;
}
.seo-content .bonus-card-text,
.description-section .bonus-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 600px) {
  .seo-content .bonus-cards,
  .description-section .bonus-cards { grid-template-columns: 1fr; }
}

/* =============================================
   PAYMENT METHODS
   ============================================= */
.payments-section {
  padding: 40px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg2);
}
.payments-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  background: var(--c-card);
  border: 1px solid var(--c-border-card);
  border-radius: var(--radius-xs);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted);
  transition: all var(--tr);
}
.pay-badge:hover { border-color: var(--c-border-lime); color: var(--c-lime); }

/* =============================================
   FAQ
   ============================================= */
.faq-section { padding: 64px 0; }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 860px; }

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq-item:hover,
.faq-item.open { border-color: rgba(226,255,2,0.2); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  text-align: left;
  gap: 16px;
  transition: color var(--tr);
}
.faq-question:hover { color: var(--c-lime); }
/* h3 used as faq-question */
h3.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  text-align: left;
  gap: 16px;
  transition: color var(--tr);
  letter-spacing: normal;
}
h3.faq-question:hover { color: var(--c-lime); }

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(226,255,2,0.08);
  border: 1px solid rgba(226,255,2,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-lime);
  font-size: 16px;
  transition: all var(--tr);
}
.faq-item.open .faq-icon { background: rgba(226,255,2,0.15); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  border-top: 0 solid var(--c-border);
  padding: 0 20px;
}
.faq-answer p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; }
.faq-item.open .faq-answer {
  max-height: 400px;
  border-top-width: 1px;
  padding: 14px 20px 18px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #080A0F;
  border-top: 1px solid var(--c-border);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
}
.footer-logo { height: 28px; margin-bottom: 14px; }
.footer-about { font-size: 13px; color: var(--c-dim); line-height: 1.7; margin-bottom: 18px; max-width: 280px; }

.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-xs);
  background: var(--c-card);
  border: 1px solid var(--c-border-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--c-dim);
  cursor: pointer;
  transition: all var(--tr);
  user-select: none;
}
.social-btn:hover { background: rgba(226,255,2,0.08); border-color: var(--c-border-lime); color: var(--c-lime); transform: translateY(-2px); }

.footer-col-title { font-weight: 700; font-size: 13px; color: var(--c-white); margin-bottom: 14px; letter-spacing: 0.3px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--c-dim); transition: color var(--tr); }
.footer-links a:hover { color: var(--c-lime); }

.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom-left { display: flex; align-items: flex-start; gap: 10px; }
.age-badge {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(226,255,2,0.08);
  border: 1.5px solid rgba(226,255,2,0.3);
  color: var(--c-lime);
  font-weight: 900;
  font-size: 10px;
  margin-top: 2px;
}
.footer-disclaimer { font-size: 11px; color: var(--c-dim); line-height: 1.65; max-width: 580px; }
.footer-copy { font-size: 11px; color: var(--c-dim); white-space: nowrap; align-self: flex-end; }

/* =============================================
   FADE IN
   ============================================= */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.1s; }
.fd2 { transition-delay: 0.2s; }
.fd3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE — ≤ 1100px
   ============================================= */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .toc-box { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =============================================
   RESPONSIVE — ≤ 900px
   ============================================= */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }

  .hero-inner { grid-template-columns: 1fr; padding: 36px 0 40px; gap: 32px; }
  .hero-right { display: none; }
  .hero-title { font-size: 58px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   RESPONSIVE — ≤ 680px
   ============================================= */
@media (max-width: 680px) {
  .hero-title { font-size: 46px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .hero-bonus { flex-direction: column; text-align: center; gap: 8px; }

  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid var(--c-border); }

  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .section { padding: 40px 0; }
  .faq-section { padding: 40px 0; }
  .banner-section { padding: 0 0 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { align-self: flex-start; }
}

@media (max-width: 420px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .container { padding: 0 16px; }
  .hero-title { font-size: 38px; }
}