@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap');

:root {
  --gold: #f0c040;
  --gold-dark: #c9922a;
  --gold-light: #ffe080;
  --red: #e8192c;
  --red-dark: #a5001e;
  --bg-dark: #0a0a0f;
  --bg-card: #13131e;
  --bg-card2: #1a1a2a;
  --border: rgba(240,192,64,0.18);
  --text: #f0ede6;
  --text-muted: #8a8699;
  --green: #00e676;
  --green-dark: #00a152;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,15,0.98) 0%, rgba(10,10,15,0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-link img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(240,192,64,0.5));
}

/* ─── NAV ─── */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.2s;
  text-transform: uppercase;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  background: rgba(240,192,64,0.08);
}

.nav a.active {
  color: var(--gold);
}

.nav-icon { font-size: 16px; }

/* ─── HEADER ACTIONS ─── */
.header-actions { display: flex; align-items: center; gap: 10px; }

.btn-login {
  padding: 9px 22px;
  border: 1.5px solid var(--gold-dark);
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-login:hover {
  background: rgba(240,192,64,0.1);
  border-color: var(--gold);
}

.btn-register {
  padding: 9px 22px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(240,192,64,0.3);
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(240,192,64,0.45);
}

/* ─── MAIN WRAPPER ─── */
main { padding-top: 72px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('bg.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,10,15,0.92) 0%,
    rgba(10,10,15,0.5) 50%,
    rgba(10,10,15,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-title .accent { color: var(--gold); }
.hero-title .red { color: var(--red); }

.hero-sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s;
  box-shadow: 0 6px 28px rgba(232,25,44,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232,25,44,0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 10px;
  border: 2px solid var(--gold-dark);
  background: transparent;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: rgba(240,192,64,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ─── BONUS BOX (hero right) ─── */
.bonus-box {
  background: linear-gradient(135deg, rgba(19,19,30,0.95), rgba(26,26,42,0.95));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,192,64,0.07);
}

.bonus-box-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.bonus-box-amount {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(240,192,64,0.35);
}

.bonus-box-sub {
  margin-top: 6px;
  font-size: 15px;
  color: var(--text-muted);
}

.bonus-box-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.bonus-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.bonus-features li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #000;
  flex-shrink: 0;
}

.bonus-box .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  font-size: 16px;
  padding: 14px 24px;
}

/* ─── WINS TICKER ─── */
.wins-ticker-wrap {
  background: rgba(13,13,20,0.95);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.wins-ticker-inner {
  display: flex;
  align-items: center;
}

.wins-ticker-label {
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #111;
  text-transform: uppercase;
  white-space: nowrap;
}

.wins-ticker-track {
  overflow: hidden;
  flex: 1;
}

.wins-ticker-runner {
  display: flex;
  width: max-content;
  animation: tickerScroll 60s linear infinite;
}

.wins-ticker-list {
  display: flex;
  flex-shrink: 0;
}

.win-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  font-size: 13px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.win-item .avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.win-item .name { color: var(--text-muted); }
.win-item .game { color: var(--text); font-weight: 500; }
.win-item .amount { color: var(--green); font-weight: 700; font-family: 'Oswald', sans-serif; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION ─── */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-title span { color: var(--gold); }

.section-link {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.section-link:hover { color: var(--gold); }

/* ─── GAME CARDS ─── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  group: true;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(255,255,255,0.04);
}

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.6), 0 0 0 2px rgba(240,192,64,0.3);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  background: var(--bg-card2);
}

.game-card-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-card2), #1c1c30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.game-card-placeholder .slot-icon { font-size: 48px; }
.game-card-placeholder .slot-name {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  padding: 0 8px;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 12px 14px;
  opacity: 0;
  transition: opacity 0.25s;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-overlay .play-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232,25,44,0.4);
}

.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-hot { background: var(--red); color: #fff; }
.badge-new { background: var(--green-dark); color: #fff; }
.badge-top { background: var(--gold-dark); color: #111; }

.game-card-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 20px 12px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  pointer-events: none;
}

/* ─── PROMO BANNER ─── */
.promo-banner {
  background: linear-gradient(135deg, #0e0e1a 0%, #161628 50%, #0e0e1a 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,64,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,25,44,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.promo-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(232,25,44,0.15);
  border: 1px solid rgba(232,25,44,0.3);
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.promo-title {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.promo-title .gold { color: var(--gold); }

.promo-desc {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: linear-gradient(90deg, rgba(19,19,30,0.9), rgba(26,26,42,0.9));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stat-item {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── LIVE SECTION ─── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,192,64,0.2);
}

.live-card-header {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #1a1a30, #0e0e20);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.live-card-header .table-icon { font-size: 64px; }

.live-badge {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(232,25,44,0.9);
  padding: 4px 10px;
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: livePulse 1.2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-card-body { padding: 16px; }

.live-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.live-card-dealer {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.live-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.live-players {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-card-footer .btn-play {
  padding: 8px 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.live-card-footer .btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240,192,64,0.35);
}

/* ─── BONUSES ─── */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.bonus-card.type-welcome::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.bonus-card.type-cashback::before { background: linear-gradient(90deg, var(--green-dark), var(--green)); }
.bonus-card.type-freespin::before { background: linear-gradient(90deg, var(--red-dark), var(--red)); }
.bonus-card.type-reload::before { background: linear-gradient(90deg, #6a3de8, #9b6cff); }

.bonus-icon { font-size: 40px; margin-bottom: 14px; }

.bonus-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.bonus-card-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  margin: 8px 0;
  line-height: 1;
}

.bonus-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.bonus-card .btn-claim {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.bonus-card .btn-claim:hover {
  box-shadow: 0 4px 18px rgba(232,25,44,0.4);
  transform: translateY(-1px);
}

/* ─── FOOTER ─── */
.footer {
  background: rgba(8,8,12,0.98);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo img {
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(240,192,64,0.3));
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-18 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.age-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(240,192,64,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-hero-title span { color: var(--gold); }

.page-hero-sub {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ─── FILTERS ─── */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold-dark);
  color: var(--gold);
  background: rgba(240,192,64,0.06);
}

/* ─── LIVE TABLE STYLES ─── */
.live-table-wide {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.live-card-wide {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  gap: 0;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.live-card-wide:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,192,64,0.2);
}

.live-card-wide-thumb {
  width: 110px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a1a30, #0e0e20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.live-card-wide-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.live-card-wide-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.live-card-wide-dealer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.live-limits {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.live-limits span { color: var(--gold); font-weight: 500; }

/* ─── BONUS PAGE ─── */
.vip-levels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.vip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s;
}

.vip-card:hover { transform: translateY(-4px); }
.vip-card .vip-icon { font-size: 36px; }
.vip-card .vip-name {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vip-card .vip-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .promo-banner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ─── SEO CONTENT SECTION ─── */
.seo-section {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13,13,20,0.6) 0%, transparent 100%);
}

.seo-article {
  max-width: 860px;
}

.seo-article h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 10px;
}

.seo-article h2:first-child { margin-top: 0; }

.seo-article p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.seo-article a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.seo-article a:hover { color: var(--gold); }

/* ─── FAQ SECTION ─── */
.faq-section {
  margin-top: 56px;
  max-width: 860px;
}

.faq-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.faq-section-title span { color: var(--gold); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
  transition: background 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 300;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 20px 18px;
}

/* ─── INTERNAL LINKS BLOCK ─── */
.internal-links-block {
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}

.internal-links-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.internal-links-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.internal-links-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.internal-links-list a:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
  background: rgba(240,192,64,0.06);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(240,192,64,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(240,192,64,0.5); }

/* ─── WIN POPUP ─── */
.win-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.win-notification {
  background: linear-gradient(135deg, rgba(19,19,30,0.97), rgba(26,26,42,0.97));
  border: 1px solid rgba(0,230,118,0.3);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  max-width: 320px;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards,
             popOut 0.4s ease 4s forwards;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.win-notification .notif-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.win-notification .notif-body { flex: 1; }
.win-notification .notif-name { font-size: 13px; font-weight: 600; }
.win-notification .notif-game { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.win-notification .notif-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

@keyframes popIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes popOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-40px); }
}
