/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  --bg:     #0a0b10;
  --bg2:    #10121a;
  --bg3:    #181b28;
  --card:   #1e2135;
  --gold:   #f5c518;
  --gold2:  #c9930a;
  --red:    #e63535;
  --green:  #22c55e;
  --blue:   #3b82f6;
  --purple: #a855f7;
  --text:   #ffffff;
  --text2:  #8a93b8;
  --border: #272b44;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Montserrat', sans-serif; min-height: 100vh; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold2); }

/* ===== BUTTONS ===== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: .3px;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,.4); }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 10px;
  display: inline-block;
  transition: all .2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--gold); color: #000; }

.btn-red {
  background: linear-gradient(135deg, #e63535, #b01f1f);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 10px;
  display: inline-block;
  transition: transform .15s, box-shadow .15s;
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,53,53,.4); }

/* ===== HEADER ===== */
.header {
  background: rgba(16,18,26,.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 12px;
}
.logo { flex-shrink: 0; }
.logo img { height: 44px; transition: opacity .2s; }
.logo:hover img { opacity: .85; }

.nav {
  display: flex;
  gap: 2px;
  flex: 1;
  padding: 0 12px;
}
.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  transition: all .2s;
  white-space: nowrap;
  position: relative;
}
.nav a:hover { color: var(--text); background: var(--bg3); }
.nav a.active { color: var(--gold); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.header-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; display: block; }

/* ===== HERO ===== */
.hero {
  background: var(--bg2) url('guest_banner.webp') center right / cover no-repeat;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,11,16,.97) 0%,
    rgba(10,11,16,.88) 40%,
    rgba(10,11,16,.55) 70%,
    rgba(10,11,16,.15) 100%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
/* On wide screens push content to the left */
@media (min-width: 900px) {
  .hero-inner {
    margin-left: 0;
    padding-left: 64px;
    max-width: 1280px;
  }
  .hero-content {
    max-width: 560px;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,53,53,.15);
  border: 1px solid rgba(230,53,53,.4);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-tag::before { content: '●'; font-size: 8px; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.hero-title .accent { color: var(--gold); }
.hero-title .accent2 { color: #fff; }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 460px;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-note {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 14px;
}
.hero-note a { color: var(--gold); }

/* ===== PROMO STRIP ===== */
.promo-strip {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.promo-strip::before,
.promo-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.promo-strip::before { left: 0; background: linear-gradient(to right, var(--bg3), transparent); }
.promo-strip::after  { right: 0; background: linear-gradient(to left, var(--bg3), transparent); }

.promo-track {
  display: flex;
  animation: scrollTrack 24s linear infinite;
  width: max-content;
}
.promo-track:hover { animation-play-state: paused; }

.promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s;
}
.promo-item:hover { background: rgba(255,255,255,.03); }
.promo-icon { font-size: 20px; }
.promo-text { font-size: 13px; font-weight: 600; color: var(--text2); }
.promo-text strong { color: var(--text); }

@keyframes scrollTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  color: var(--text2);
  font-weight: 600;
  text-align: center;
}

/* ===== SECTION ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title {
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .accent { color: var(--gold); }
.section-badge {
  background: var(--bg3);
  color: var(--text2);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.section-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.section-link:hover { gap: 8px; }
.section-link::after { content: '→'; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
}
.game-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid transparent;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.5);
  border-color: var(--gold);
}
.game-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.game-card:hover .game-card-img img { transform: scale(1.06); }

.game-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .5px;
  z-index: 2;
}
.badge-hot { background: var(--red); color: #fff; }
.badge-new { background: var(--green); color: #000; }
.badge-top { background: var(--gold); color: #000; }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.4) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  gap: 4px;
  z-index: 3;
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-name { font-size: 13px; font-weight: 700; }
.game-card-provider { font-size: 11px; color: var(--text2); margin-bottom: 8px; }
.btn-play {
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 0;
  border-radius: 7px;
  text-align: center;
  letter-spacing: .3px;
  transition: background .2s;
  display: block;
}
.btn-play:hover { background: #fff; }

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

/* ===== LIVE WINS ===== */
.wins-box {
  background: var(--bg2);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
.wins-box-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.live-dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,53,53,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(230,53,53,0); }
}
.wins-box-title { font-size: 15px; font-weight: 800; }
.wins-box-count {
  margin-left: auto;
  background: rgba(230,53,53,.15);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.wins-list {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 520px;
  overflow: hidden;
}
.win-item {
  background: var(--card);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  animation: winSlideIn .4s cubic-bezier(.22,.68,0,1.2);
  transition: border-color .2s;
}
.win-item:hover { border-color: rgba(245,197,24,.3); }
@keyframes winSlideIn {
  from { opacity: 0; transform: translateY(-12px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.win-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.win-info { flex: 1; min-width: 0; }
.win-player { font-size: 12px; font-weight: 700; }
.win-game {
  font-size: 11px;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.win-amount { font-size: 15px; font-weight: 900; color: var(--green); white-space: nowrap; }

/* ===== FEATURES ===== */
.features-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.bonus-card {
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: .08;
}

.bonus-card.gold {
  background: linear-gradient(135deg, #1f1700 0%, #2e2200 100%);
  border: 1px solid rgba(245,197,24,.4);
}
.bonus-card.gold::before { background: var(--gold); }

.bonus-card.red {
  background: linear-gradient(135deg, #1f0000 0%, #2e0a0a 100%);
  border: 1px solid rgba(230,53,53,.4);
}
.bonus-card.red::before { background: var(--red); }

.bonus-card.blue {
  background: linear-gradient(135deg, #001225 0%, #001a38 100%);
  border: 1px solid rgba(59,130,246,.4);
}
.bonus-card.blue::before { background: var(--blue); }

.bonus-card.purple {
  background: linear-gradient(135deg, #120020 0%, #1c0033 100%);
  border: 1px solid rgba(168,85,247,.4);
}
.bonus-card.purple::before { background: var(--purple); }

.bonus-card-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gold .bonus-card-tag   { color: var(--gold); }
.red .bonus-card-tag    { color: var(--red); }
.blue .bonus-card-tag   { color: #60a5fa; }
.purple .bonus-card-tag { color: #c084fc; }

.bonus-card-amount { font-size: 44px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.gold .bonus-card-amount   { color: var(--gold); }
.red .bonus-card-amount    { color: #ff7070; }
.blue .bonus-card-amount   { color: #93c5fd; }
.purple .bonus-card-amount { color: #e9d5ff; }

.bonus-card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.bonus-card-desc { font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 22px; }
.bonus-card-terms { font-size: 11px; color: var(--text2); margin-top: 12px; opacity: .7; }

.bonus-card .btn-claim {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .15s, box-shadow .15s;
}
.bonus-card .btn-claim:hover { transform: translateY(-2px); }
.gold .btn-claim   { background: var(--gold); color: #000; }
.red .btn-claim    { background: var(--red); color: #fff; }
.blue .btn-claim   { background: var(--blue); color: #fff; }
.purple .btn-claim { background: var(--purple); color: #fff; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(245,197,24,.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { font-size: 44px; font-weight: 900; margin-bottom: 10px; letter-spacing: -1px; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero p { font-size: 16px; color: var(--text2); max-width: 540px; margin: 0 auto 24px; line-height: 1.6; }

/* ===== TABS ===== */
.tabs-wrap { margin-bottom: 28px; }
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg3);
  padding: 4px;
  border-radius: 12px;
  width: fit-content;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 9px 20px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all .2s;
}
.tab-btn.active { background: var(--card); color: var(--gold); }
.tab-btn:hover:not(.active) { color: var(--text); }

/* ===== LIVE CASINO GRID ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.live-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
}
.live-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.live-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.live-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.live-card:hover .live-card-img img { transform: scale(1.05); }

.live-card-live {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-card-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
.live-card-players {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-card-body { padding: 14px 16px; }
.live-card-name { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.live-card-provider { font-size: 12px; color: var(--text2); }
.live-card-limits { font-size: 12px; color: var(--gold); margin-top: 10px; font-weight: 600; }
.live-card-action {
  display: block;
  margin: 12px 16px 14px;
  background: linear-gradient(135deg, #e63535, #b01f1f);
  color: #fff;
  text-align: center;
  padding: 9px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  transition: opacity .2s;
}
.live-card-action:hover { opacity: .85; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(245,197,24,.3); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.faq-q .arrow { transition: transform .25s; font-size: 20px; color: var(--text2); flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }
.faq-a p { font-size: 14px; color: var(--text2); line-height: 1.75; }

/* ===== SEO TEXT ===== */
.seo-section { background: var(--bg2); border-top: 1px solid var(--border); }
.seo-inner { max-width: 1280px; margin: 0 auto; padding: 48px 24px; }
.seo-inner h2 { font-size: 24px; font-weight: 900; color: var(--gold); margin-bottom: 16px; }
.seo-inner h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; margin-top: 28px; }
.seo-inner p { font-size: 14px; color: var(--text2); line-height: 1.85; margin-bottom: 12px; }
.seo-inner ol, .seo-inner ul { padding-left: 20px; margin-bottom: 14px; }
.seo-inner li { font-size: 14px; color: var(--text2); line-height: 1.85; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 44px 24px 24px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text2); line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--text2); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--text2); transition: color .2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text2); }
.footer-age {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ===== HERO BONUS LINE ===== */
.hero-bonus-line {
  color: #fff;
  font-size: .88em;
}

/* ===== INTERNAL LINKS NAV ===== */
.internal-links {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 32px;
}
.internal-links__title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text2);
  margin-bottom: 12px;
}
.internal-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.internal-links__list a {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.internal-links__list a:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SEO FAQ ===== */
.seo-faq { margin-top: 32px; }
.seo-faq__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 12px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--text2); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { opacity: .4; }
.breadcrumb__current { color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .wins-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--bg2);
    padding: 20px 24px;
    z-index: 99;
    gap: 4px;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .nav.mobile-open a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
  }
  .burger { display: flex; }
  .header-actions .btn-outline { display: none; }
  .hero-title { font-size: 38px; }
  .hero-inner { padding: 48px 20px !important; padding-left: 20px !important; }
  .page-hero h1 { font-size: 30px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
}
