/* === BANDASGAMES CASINO — GLOBAL STYLES === */
:root {
  --bg:        #07071a;
  --bg2:       #0d0d28;
  --bg3:       #131338;
  --card:      #181840;
  --card2:     #1e1e4a;
  --border:    #2a2a58;
  --gold:      #f5c518;
  --gold2:     #e6b200;
  --gold-glow: rgba(245,197,24,.25);
  --gold-dim:  rgba(245,197,24,.12);
  --red:       #ff3c5c;
  --green:     #22c55e;
  --text:      #ffffff;
  --text2:     #9898c8;
  --text3:     #5858a0;
  --radius:    14px;
  --radius-sm: 8px;
  --hh:        68px;
  --panel-w:   300px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── UTILS ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 56px 0; }
.section--sm { padding: 32px 0; }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--gold { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,197,24,.3); }
.badge--red  { background: rgba(255,60,92,.12); color: var(--red); border: 1px solid rgba(255,60,92,.3); }
.badge--green{ background: rgba(34,197,94,.12); color: var(--green); border: 1px solid rgba(34,197,94,.3); }
.badge--new  { background: #3b0764; color: #d946ef; border: 1px solid rgba(217,70,239,.3); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  transition: all .18s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, #f5c518 0%, #e6a800 100%);
  color: #0a0a00;
  box-shadow: 0 4px 20px rgba(245,197,24,.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,197,24,.5); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text2);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--block { width: 100%; }
.btn--red {
  background: linear-gradient(135deg, #ff3c5c, #cc2040);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,60,92,.3);
}
.btn--red:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,60,92,.45); }

/* ── SECTION TITLE ── */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.section-title h2 {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 60%, #9898c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title .icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim);
  border: 1px solid rgba(245,197,24,.3);
  border-radius: 8px;
  flex-shrink: 0;
}
.section-title .see-all {
  margin-left: auto;
  font-size: 13px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity .15s;
}
.section-title .see-all:hover { opacity: .7; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--hh);
  background: rgba(7,7,26,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-logo img { height: 40px; }
.header-logo { flex-shrink: 0; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  transition: all .15s;
}
.header-nav a:hover,
.header-nav a.active { color: var(--text); background: var(--bg3); }
.header-nav a.active { color: var(--gold); }
.header-nav svg { width: 18px; height: 18px; flex-shrink: 0; }

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

/* burger */
.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.header-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s;
}

/* mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--hh);
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 190;
  flex-direction: column;
  padding: 20px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  color: var(--text2);
  border: 1px solid var(--border);
  transition: all .15s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); border-color: rgba(245,197,24,.3); background: var(--gold-dim); }
.mobile-nav svg { width: 22px; height: 22px; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }

/* ══════════════════════════════════════════
   WINS TICKER (horizontal)
══════════════════════════════════════════ */
.wins-ticker {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  height: 42px;
  overflow: hidden;
  position: sticky;
  top: var(--hh);
  z-index: 190;
}
.wins-ticker__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
  animation: tickerScroll 60s linear infinite;
  width: max-content;
}
.wins-ticker:hover .wins-ticker__inner { animation-play-state: paused; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.wins-ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  height: 100%;
}
.wins-ticker__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.wins-ticker__name { font-size: 13px; font-weight: 600; }
.wins-ticker__game { font-size: 12px; color: var(--text2); }
.wins-ticker__amount { font-size: 13px; font-weight: 800; color: var(--green); }
.wins-ticker__sep { color: var(--text3); font-size: 11px; }

/* ══════════════════════════════════════════
   WINS PANEL (right side, desktop)
══════════════════════════════════════════ */
.wins-panel {
  position: fixed;
  right: 0;
  top: calc(var(--hh) + 42px);
  bottom: 0;
  width: var(--panel-w);
  background: var(--bg2);
  border-left: 1px solid var(--border);
  z-index: 150;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wins-panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .03em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.wins-panel__header svg { width: 16px; height: 16px; }
.wins-panel__live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
  animation: pulse 1.4s ease-in-out infinite;
  margin-left: auto;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
.wins-panel__feed {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wins-panel__feed::-webkit-scrollbar { width: 4px; }

.win-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInRight .35s var(--ease);
  flex-shrink: 0;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.win-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.win-card__info { flex: 1; min-width: 0; }
.win-card__name { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.win-card__game { font-size: 11px; color: var(--text2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-card__amount { font-size: 14px; font-weight: 900; color: var(--green); flex-shrink: 0; text-align: right; }
.win-card__time { font-size: 10px; color: var(--text3); margin-top: 2px; }

/* ══════════════════════════════════════════
   MAIN LAYOUT (with panel offset)
══════════════════════════════════════════ */
.site-main {
  padding-right: var(--panel-w);
  min-height: calc(100vh - var(--hh) - 42px);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,7,26,.95) 35%, rgba(7,7,26,.3) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 60px 0;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero__title span {
  background: linear-gradient(90deg, var(--gold), #ff9c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 32px;
  max-width: 440px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat-value { font-size: 22px; font-weight: 900; color: var(--gold); }
.hero__stat-label { font-size: 12px; color: var(--text2); }

/* ══════════════════════════════════════════
   PROMO BANNER
══════════════════════════════════════════ */
.promo-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
}
.promo-banner__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  filter: brightness(.4);
}
.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,40,.97) 40%, rgba(13,13,40,.4));
}
.promo-banner__content {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
}
.promo-banner__title { font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.promo-banner__title span { color: var(--gold); }
.promo-banner__sub { font-size: 14px; color: var(--text2); margin-bottom: 18px; }

/* ══════════════════════════════════════════
   GAMES GRID
══════════════════════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.games-grid--lg { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }

.game-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--card);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.game-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,.6); }
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s var(--ease);
}
.game-card:hover img { transform: scale(1.06); }
.game-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}
.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,26,.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .2s var(--ease);
  z-index: 3;
}
.game-card__name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 10px 10px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(transparent, rgba(7,7,26,.95));
  z-index: 2;
}

/* ══════════════════════════════════════════
   BONUS CARDS
══════════════════════════════════════════ */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.bonus-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.bonus-card__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  filter: brightness(.35);
}
.bonus-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(7,7,26,.97));
}
.bonus-card__content {
  position: relative;
  z-index: 1;
  padding: 20px 22px 22px;
}
.bonus-card__type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 6px;
}
.bonus-card__title { font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.bonus-card__title span { color: var(--gold); }
.bonus-card__sub { font-size: 13px; color: var(--text2); margin-bottom: 16px; }
.bonus-card__badge { margin-bottom: 14px; }

/* ══════════════════════════════════════════
   LIVE GAMES
══════════════════════════════════════════ */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.live-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s var(--ease);
}
.live-card:hover { transform: translateY(-4px); }
.live-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg3);
  overflow: hidden;
}
.live-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.live-card__live-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-card__live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s infinite;
}
.live-card__players {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.7);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-card__info { padding: 14px 16px; }
.live-card__name { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.live-card__limits { font-size: 12px; color: var(--text2); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(245,197,24,.4); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: color .15s;
  -webkit-user-select: none;
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  opacity: .6;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); opacity: 1; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer__inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 32px;
}
.page-hero h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero p { color: var(--text2); font-size: 15px; max-width: 540px; }

/* ══════════════════════════════════════════
   FILTERS
══════════════════════════════════════════ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.filter-btn {
  padding: 7px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: all .15s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text2); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  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(--text3);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--text3); }
.footer-stamp { display: flex; align-items: center; gap: 12px; }
.footer-stamp img { height: 28px; opacity: .6; filter: grayscale(1); transition: opacity .15s, filter .15s; }
.footer-stamp img:hover { opacity: 1; filter: none; }
.footer-age {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--text3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--text3);
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: var(--text3);
  line-height: 1.6;
  max-width: 700px;
}

/* ══════════════════════════════════════════
   INFO CARDS (stats row)
══════════════════════════════════════════ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,197,24,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.info-card__value { font-size: 22px; font-weight: 900; }
.info-card__label { font-size: 12px; color: var(--text2); margin-top: 2px; }

/* ══════════════════════════════════════════
   SEO CONTENT SECTION
══════════════════════════════════════════ */
.seo-about {
  padding: 56px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.seo-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.seo-article__heading {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 36px 0 10px;
}
.seo-article__heading:first-child { margin-top: 0; }
.seo-article__text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
}
.seo-article__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.seo-article__link:hover { opacity: .75; }
.seo-faq { margin-top: 40px; }
.seo-faq__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}
.seo-faq__list { display: flex; flex-direction: column; gap: 10px; }
.seo-faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.seo-faq__question {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.seo-faq__answer {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}
.seo-nav {
  position: sticky;
  top: calc(var(--hh) + 42px + 20px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.seo-nav__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text2);
  margin-bottom: 14px;
}
.seo-nav__list { display: flex; flex-direction: column; gap: 0; }
.seo-nav__link {
  display: block;
  font-size: 13px;
  color: var(--text3);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.seo-nav__list li:last-child .seo-nav__link { border-bottom: none; }
.seo-nav__link:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   BONUS DETAIL CARD (bonuses page)
══════════════════════════════════════════ */
.bonus-detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  margin-bottom: 20px;
}
.bonus-detail-card--reverse { grid-template-columns: 1.2fr 1fr; }
@media(max-width:720px) {
  .bonus-detail-card, .bonus-detail-card--reverse { grid-template-columns: 1fr; }
}
.bonus-detail-img {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
.bonus-detail-img img { width:100%; height:100%; object-fit:cover; filter:brightness(.45); position:absolute; inset:0; }
.bonus-detail-img-overlay {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-size:72px;
}
.bonus-detail-content { padding: 32px; }
.bonus-type-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 8px;
}
.bonus-big-title { font-size: 28px; font-weight: 900; margin-bottom: 8px; line-height: 1.15; }
.bonus-big-title span { color: var(--gold); }
.bonus-desc { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.bonus-terms {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.bonus-terms dt { font-size: 11px; color: var(--text3); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.bonus-terms-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); }
.bonus-terms-row:last-child { border-bottom: none; }
.bonus-terms-row span:first-child { font-size: 13px; color: var(--text2); }
.bonus-terms-row span:last-child { font-size: 13px; font-weight: 700; }
.vip-card {
  background: linear-gradient(135deg, var(--card) 0%, rgba(245,197,24,.06) 100%);
  border: 1px solid rgba(245,197,24,.3);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.vip-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(245,197,24,.15); }
.vip-card__icon { font-size: 36px; margin-bottom: 12px; }
.vip-card__level { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 6px; }
.vip-card__name { font-size: 20px; font-weight: 900; margin-bottom: 12px; }
.vip-card__perks { text-align: left; display: flex; flex-direction: column; gap: 7px; }
.vip-perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text2); }
.vip-perk::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }
.timer-block { display: flex; gap: 8px; align-items: center; margin: 16px 0; }
.timer-digit {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 22px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  min-width: 52px;
  text-align: center;
  color: var(--gold);
}
.timer-sep { font-size: 20px; font-weight: 900; color: var(--text3); }

/* Live page extras */
.live-hero {
  background: linear-gradient(135deg, #0d0d28 0%, #1a0a35 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 36px;
  position: relative;
  overflow: hidden;
}
.live-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(220,38,38,.08) 0%, transparent 65%);
}
.live-hero__content { position: relative; z-index: 1; }
.live-hero h1 { font-size: 36px; font-weight: 900; margin-bottom: 10px; display: flex; align-items: center; gap: 14px; }
.live-hero p { color: var(--text2); font-size: 15px; max-width: 540px; }
.live-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.4);
  border-radius: 20px;
  padding: 5px 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}
.live-badge-pulse::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.2s ease-in-out infinite;
}
.live-provider {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: all .15s;
}
.live-provider:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.live-provider-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.live-table-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.live-table-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.live-table-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a0a35, #0d1a35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.live-table-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0,0,0,.6));
}
.live-table-live {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: .05em;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-table-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s infinite;
}
.live-table-players {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.75);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-table-info { padding: 16px; }
.live-table-name { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.live-table-dealer { font-size: 12px; color: var(--text3); margin-bottom: 10px; }
.live-table-limits { font-size: 12px; color: var(--text2); }
.live-table-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 12px; }

/* FAQ page extras */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.faq-category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  background: var(--card);
  cursor: pointer;
  transition: all .15s;
}
.faq-category-btn:hover,
.faq-category-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.faq-section { margin-bottom: 40px; }
.faq-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.faq-section-title span { font-size: 22px; }
.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform .2s, border-color .15s;
}
.support-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.support-card__icon { font-size: 36px; flex-shrink: 0; }
.support-card__title { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.support-card__sub { font-size: 13px; color: var(--text2); margin-bottom: 14px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .wins-panel { width: 260px; }
  :root { --panel-w: 260px; }
}
@media (max-width: 960px) {
  .wins-panel { display: none; }
  :root { --panel-w: 0px; }
  .site-main { padding-right: 0; }
  .header-nav, .header-actions { display: none; }
  .header-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .seo-layout { grid-template-columns: 1fr; }
  .seo-nav { position: static; }
}
@media (max-width: 640px) {
  .hero { min-height: 340px; }
  .hero__content { padding: 36px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .promo-banner__content { padding: 20px; }
  .promo-banner__title { font-size: 18px; }
}
