/* ===== VARIABLES ===== */
:root {
  --bg-base:       #0b0b18;
  --bg-surface:    #12122b;
  --bg-card:       #1a1a38;
  --bg-card-hover: #22224a;
  --border:        rgba(255,255,255,.08);
  --border-gold:   rgba(245,197,24,.3);
  --gold:          #f5c518;
  --gold-dark:     #c9a010;
  --gold-glow:     rgba(245,197,24,.22);
  --red:           #e83a3a;
  --text-primary:  #eaeaf2;
  --text-muted:    #7878a0;
  --text-dim:      #555575;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --shadow-card:   0 4px 24px rgba(0,0,0,.45);
  --transition:    .22s ease;
  --header-h:      68px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
main { display: block; }
table { border-collapse: collapse; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1.2; font-weight: 800; }
h2 { font-size: clamp(1.3rem, 3.2vw, 2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: .85rem; font-weight: 700; }
p  { color: var(--text-primary); }

.text-muted  { color: var(--text-muted); }
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.28);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* sections */
.section        { padding: 72px 0; }
.section--sm    { padding: 40px 0; }
.section--alt   {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--top   { border-top: 1px solid var(--border); }
.section--no-pt { padding-top: 0; }

.section__head { text-align: center; margin-bottom: 48px; }
.section__head p {
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 580px;
  margin-inline: auto;
}

/* centered narrow content */
.content-narrow { max-width: 780px; margin-inline: auto; }
.content-mid    { max-width: 860px; margin-inline: auto; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11,11,24,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { height: 40px; width: auto; }

/* ===== SITE NAV ===== */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav__link {
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--text-primary);
  background: rgba(255,255,255,.07);
}
.site-nav__link[aria-current="page"] { color: var(--gold); }

.header-cta { flex-shrink: 0; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.07); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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); }

/* mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(11,11,24,.97);
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .site-nav__link {
  font-size: 1.05rem;
  padding: 12px 16px;
  display: block;
  border-radius: var(--radius-md);
}
.mobile-nav .button { width: 100%; margin-top: 8px; }

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .9rem;
  font-family: inherit;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.button--primary {
  background: linear-gradient(135deg, var(--gold), #d4a010);
  color: #0b0b18;
  box-shadow: 0 4px 18px var(--gold-glow);
}
.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
  background: linear-gradient(135deg, #ffe040, var(--gold));
}
.button--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.button--outline:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
}
.button--lg  { padding: 15px 32px; font-size: 1rem; }
.button--sm  { padding: 8px 18px; font-size: .82rem; }
.button--full { width: 100%; }

.age-note { font-size: .72rem; font-weight: 500; opacity: .75; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/background.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(11,11,24,.92) 38%, rgba(11,11,24,.45) 100%),
    linear-gradient(to top, rgba(11,11,24,1) 0%, transparent 45%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 64px 0 88px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.13);
  border: 1px solid rgba(245,197,24,.38);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.75); }
}
.hero h1            { margin-bottom: 16px; }
.hero h1 em         { font-style: normal; color: var(--gold); }
.hero__sub          { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; }
.hero__actions      { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__stats        { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero__stat strong  { display: block; font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.hero__stat span    { font-size: .8rem; color: var(--text-muted); }

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
}
.wins-ticker__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wins-ticker__label {
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-right: 12px;
  border-right: 1px solid var(--border);
}
.wins-ticker__msg {
  font-size: .83rem;
  color: var(--text-muted);
  transition: opacity .4s ease;
}
.wins-ticker__msg strong { color: var(--text-primary); }

/* ===== FEATURES STRIP ===== */
.features { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,197,24,.08);
  border-radius: var(--radius-sm);
}
.feature-text strong { display: block; font-size: .9rem; font-weight: 600; }
.feature-text span   { font-size: .78rem; color: var(--text-muted); }

/* ===== CARDS ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color var(--transition);
}
.info-card:hover { border-color: var(--border-gold); }
.info-card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.info-card h3    { margin-bottom: 10px; }
.info-card p     { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }

/* ===== GAME GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-gold);
}
.game-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.game-card__body  { padding: 10px 12px 12px; }
.game-card__name  { font-size: .85rem; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card__tag   { font-size: .72rem; color: var(--text-muted); }
.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,24,.76);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card__overlay { opacity: 1; }

/* ===== BONUS CARD ===== */
.bonus-card {
  background: linear-gradient(135deg, #1e1a40, #2a1e50);
  border: 1px solid rgba(245,197,24,.22);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.bonus-card__badge { font-size: 2.8rem; flex-shrink: 0; }
.bonus-card__body  { flex: 1; min-width: 220px; }
.bonus-card h3     { font-size: 1.25rem; color: var(--gold); margin-bottom: 10px; }
.bonus-card p      { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }
.bonus-card p + p  { margin-top: 8px; }

/* ===== NOTICE BOX ===== */
.notice-box {
  background: rgba(245,197,24,.07);
  border: 1px solid rgba(245,197,24,.22);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.notice-box strong { color: var(--gold); }

/* ===== WAGERING TABLE ===== */
.wagering-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.wagering-table th {
  background: var(--bg-card);
  padding: 11px 16px;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.wagering-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.5;
}
.wagering-table tr:last-child td  { border-bottom: none; }
.wagering-table tr:hover td       { background: rgba(255,255,255,.025); }
.wagering-table td:first-child    { color: var(--text-primary); font-weight: 500; }

.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  padding: 24px;
}
.table-wrap h3 { margin-bottom: 16px; }

/* ===== LIVE BANNER ===== */
.live-banner {
  position: relative;
  background: linear-gradient(135deg, #0e1a35, #1a0e35);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: var(--radius-lg);
  padding: 44px;
  overflow: hidden;
  margin-bottom: 40px;
}
.live-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,.1) 0%, transparent 70%);
  pointer-events: none;
}
.live-banner__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,58,58,.14);
  border: 1px solid rgba(232,58,58,.38);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: .78rem;
  font-weight: 700;
  color: #e83a3a;
  margin-bottom: 18px;
}
.live-banner__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e83a3a;
  animation: pulse 1.5s infinite;
}
.live-banner h2 { margin-bottom: 14px; font-size: 1.75rem; }
.live-banner p  { color: var(--text-muted); max-width: 500px; margin-bottom: 24px; }

/* live game cards */
.live-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.live-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.live-game-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.live-game-card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.live-game-card h3    { font-size: 1rem; margin-bottom: 8px; }
.live-game-card p     { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== GRID VARIANTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-gold); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  gap: 12px;
  transition: color var(--transition);
  font-size: .95rem;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
}
.faq-question:hover          { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding var(--transition);
  padding: 0 22px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.72;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 22px 22px;
}
.faq-answer p + p { margin-top: 10px; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  color: var(--text-dim);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumbs a              { transition: color var(--transition); }
.breadcrumbs a:hover        { color: var(--gold); }
.breadcrumbs__sep           { color: var(--text-dim); }
.breadcrumbs [aria-current] { color: var(--text-muted); }

/* ===== PAGE HERO (inner) ===== */
.page-hero {
  position: relative;
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(245,197,24,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1          { margin-bottom: 12px; }
.page-hero__sub        { color: var(--text-muted); max-width: 580px; margin-top: 8px; }

/* ===== INTERNAL LINKS ===== */
.internal-links {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.internal-links__title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.internal-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.internal-links__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.internal-links__item:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: rgba(245,197,24,.06);
}

/* ===== RESPONSIBLE NOTE ===== */
.responsible-note {
  background: rgba(232,58,58,.06);
  border: 1px solid rgba(232,58,58,.18);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.responsible-note strong { color: #e87070; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #16163a 0%, #0e0e28 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 64px 0;
}
.cta-section h2 { margin-bottom: 14px; }
.cta-section p  { color: var(--text-muted); max-width: 520px; margin-inline: auto; margin-bottom: 32px; }
.cta-section .responsible-note { max-width: 680px; margin-inline: auto; text-align: left; }

/* ===== SECTION TEXT BLOCKS ===== */
.text-block { max-width: 780px; }
.text-block + .text-block { margin-top: 48px; }
.text-block h2 { margin-bottom: 16px; }
.text-block p  { color: var(--text-muted); font-size: .95rem; line-height: 1.75; }
.text-block p + p { margin-top: 12px; }

/* content sections with sidebar h2 layout */
.content-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.content-section:last-of-type { border-bottom: none; }
.content-section__label h2   { font-size: 1.25rem; margin-bottom: 8px; }
.content-section__label span  { font-size: .8rem; color: var(--text-dim); }
.content-section__body p      { color: var(--text-muted); font-size: .95rem; line-height: 1.75; }
.content-section__body p + p  { margin-top: 12px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-brand p   { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }
.footer-col h4 {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .79rem;
  color: var(--text-dim);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--text-dim);
  font-size: .7rem;
  font-weight: 800;
  color: var(--text-dim);
  flex-shrink: 0;
}

/* ===== 404 ===== */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - var(--header-h));
  padding: 60px 20px;
}
.error-page__code {
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 60px var(--gold-glow);
  margin-bottom: 16px;
}
.error-page h1  { font-size: 1.6rem; margin-bottom: 12px; }
.error-page p   { color: var(--text-muted); max-width: 440px; margin-bottom: 32px; }
.error-links    { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ===== SCROLL-REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== UTILS ===== */
.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-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-20 { gap: 20px; }
.bonus-list { display: flex; flex-direction: column; gap: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-section { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .site-nav  { display: none; }
  .header-cta { display: none; }
  .hamburger  { display: flex; }
  .hero       { min-height: 480px; }
  .hero__stats { gap: 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .live-banner { padding: 28px 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}
@media (max-width: 520px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .info-grid { grid-template-columns: 1fr; }
}
