@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  --gold:        #f5c518;
  --gold-light:  #ffd94a;
  --gold-dark:   #c9a000;
  --gold-glow:   rgba(245, 197, 24, 0.35);

  --bg:          #09090d;
  --bg-card:     #111217;
  --bg-card2:    #17181f;
  --bg-card3:    #1d1e27;

  --accent:      #e63946;
  --green:       #22c55e;
  --blue:        #3b82f6;

  --text:        #eeeef5;
  --text-muted:  #7c7c96;
  --text-dim:    #4a4a62;

  --border:      rgba(245, 197, 24, 0.13);
  --border-dim:  rgba(255, 255, 255, 0.055);

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --shadow:      0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.6);

  --header-h:    64px;
  --max-w:       1200px;
  --gutter:      clamp(16px, 3vw, 32px);
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: 64px;
}

.section-sm { padding-block: 40px; }

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(9, 9, 13, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  padding-inline: var(--gutter);
  gap: 8px;
}

/* thin gold bottom accent */
header::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 30%, var(--gold) 50%, var(--gold-dark) 70%, transparent);
  opacity: 0.35;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 20px;
  flex: 1;
}

.header-nav a {
  position: relative;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}

.header-nav a::after {
  content: '';
  position: absolute;
  inset: auto 14px -1px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.18s;
}

.header-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.header-nav a.active {
  color: var(--gold);
  background: rgba(245, 197, 24, 0.07);
}

.header-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.18s;
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(245, 197, 24, 0.35);
  color: var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.06);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  background-position: right center;
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.28);
}

.btn-primary:hover {
  background-position: left center;
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.45);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 13px 34px;
  font-size: 16px;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('background.webp');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(9,9,13,0.5)  0%,
    rgba(9,9,13,0.2)  35%,
    rgba(9,9,13,0.65) 70%,
    rgba(9,9,13,1)   100%
  );
}

/* ambient gold glow bottom left */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px var(--gutter) 80px;
  max-width: var(--max-w);
  margin-inline: auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 10px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.28);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
}

.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.hero-title .t1 { display: block; color: #fff; }

.hero-title .t2 {
  display: block;
  background: linear-gradient(100deg, var(--gold) 0%, #ffb830 55%, #ff7a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bonus-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bonus-pill {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--gold-dark);
  border-radius: var(--radius-lg);
  padding: 14px 26px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.bonus-pill .val {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.bonus-pill .lbl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.bonus-sep {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-dim);
  line-height: 1;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.2px;
}

/* ═══════════════════════════════════════════════════
   WINS TICKER
═══════════════════════════════════════════════════ */
.wins-ticker {
  position: relative;
  overflow: hidden;
  background: rgba(245, 197, 24, 0.04);
  border-top: 1px solid rgba(245, 197, 24, 0.1);
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  padding-block: 10px;
}

/* edge fades */
.wins-ticker::before,
.wins-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.wins-ticker::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.wins-ticker::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.wins-ticker-inner {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: ticker 38s linear infinite;
  will-change: transform;
}

.wins-ticker-inner:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.win-item {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 13px;
}

.win-item .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.win-item .name   { color: var(--text-muted); }
.win-item .game   { color: var(--text); font-weight: 600; }
.win-item .amount { color: var(--green); font-weight: 700; }
.win-item .sep    { color: var(--text-dim); }

/* ═══════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════ */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title span { color: var(--gold); }

.see-all {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.15s, gap 0.15s;
}

.see-all:hover { opacity: 1; gap: 8px; }

/* ═══════════════════════════════════════════════════
   TABS / PILLS FILTER
═══════════════════════════════════════════════════ */
.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  margin-bottom: 24px;
}

.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card2);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.tab:hover {
  color: var(--text);
  background: var(--bg-card3);
}

.tab.active {
  color: var(--gold);
  border-color: rgba(245, 197, 24, 0.28);
  background: rgba(245, 197, 24, 0.07);
}

/* ═══════════════════════════════════════════════════
   GAME CARDS
═══════════════════════════════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  border: 1px solid var(--border-dim);
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s;
  will-change: transform;
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.22s;
  box-shadow: inset 0 0 0 1.5px rgba(245, 197, 24, 0.4);
}

.game-card:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 14px 36px rgba(0,0,0,0.55), 0 0 0 1px rgba(245,197,24,0.15);
}

.game-card:hover::before { opacity: 1; }

.game-card-inner {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
}

.game-icon {
  font-size: clamp(38px, 5.5vw, 54px);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
  line-height: 1;
}

.game-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.game-provider {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover .game-overlay { opacity: 1; }

.game-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 50px;
  transition: transform 0.15s;
}

.game-play-btn:hover { transform: scale(1.06); }

.game-badge {
  position: absolute;
  top: 8px; left: 8px;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  background: var(--accent);
  pointer-events: none;
  line-height: 1.4;
}

.game-badge.hot { background: #f97316; }
.game-badge.new { background: #16a34a; }
.game-badge.top { background: var(--gold-dark); color: #000; }

/* ═══════════════════════════════════════════════════
   BONUS BANNER
═══════════════════════════════════════════════════ */
.bonus-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card) 0%, #0f0f16 100%);
  border: 1.5px solid rgba(245, 197, 24, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

/* ambient glow top right */
.bonus-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* decorative large text watermark */
.bonus-banner::after {
  content: '🎁';
  position: absolute;
  right: clamp(28px,5vw,56px);
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(64px, 10vw, 120px);
  opacity: 0.07;
  pointer-events: none;
  line-height: 1;
}

.bonus-banner-content { position: relative; z-index: 1; }

.bonus-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}

.bonus-banner-title span { color: var(--gold); }

.bonus-banner-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 20px;
}

.bonus-nums {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.bonus-num { text-align: left; }

.bonus-num .n {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.bonus-num .l {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════
   LIVE CASINO CARDS
═══════════════════════════════════════════════════ */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.live-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card2);
  border: 1px solid var(--border-dim);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.live-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(245, 197, 24, 0.22);
}

.live-card-top {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  position: relative;
  background: linear-gradient(135deg, #1c1d2a, #251a38);
}

.live-badge {
  position: absolute;
  top: 9px; left: 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  background: var(--accent);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
}

.live-badge .live-dot {
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

.live-card-body { padding: 13px 15px 15px; }

.live-card-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  color: #fff;
}

.live-card-dealer {
  font-size: 12px;
  color: var(--text-muted);
}

.live-card-players {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════
   LIVE + WINS LAYOUT (replaces inline style)
═══════════════════════════════════════════════════ */
.live-wins-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 24px;
  align-items: start;
}

/* ═══════════════════════════════════════════════════
   WINS FEED SIDEBAR
═══════════════════════════════════════════════════ */
.wins-feed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.wins-feed-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.wins-feed-header .live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.wins-list {
  overflow-y: auto;
  max-height: 400px;
}

.win-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.035);
  animation: slideIn 0.35s ease;
}

.win-row:last-child { border-bottom: none; }

.wr-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.wr-info { min-width: 0; }

.wr-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wr-game {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wr-right { text-align: right; flex-shrink: 0; }

.wr-amount {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}

.wr-time {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   SUPPORT BAR
═══════════════════════════════════════════════════ */
.support-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(245,197,24,0.06) 0%, rgba(245,197,24,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.support-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.support-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.support-text h4 { font-size: 14px; font-weight: 700; }
.support-text p  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════════
   INFO / SEO SECTION
═══════════════════════════════════════════════════ */
.info-section {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: 64px;
}

.info-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.info-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-section h3::before {
  content: '';
  display: inline-block;
  width: 3px; height: 14px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.info-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 8px;
}

.info-section ul { padding: 0; }

.info-section li {
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-left: 16px;
  margin-bottom: 4px;
}

.info-section li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════
   STEPS
═══════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.step-card {
  background: var(--bg-card3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}

.step-card:hover { border-color: rgba(245,197,24,0.3); }

.step-num {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}

.step-card h4 { font-size: 14px; font-weight: 700; color: #fff; }
.step-card p  { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   BONUS CARDS (bonuses page)
═══════════════════════════════════════════════════ */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card2);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  border-color: rgba(245, 197, 24, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bonus-card-top {
  padding: 24px 22px 18px;
  background: linear-gradient(135deg, rgba(245,197,24,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-dim);
}

.bonus-card-icon { font-size: 34px; line-height: 1; margin-bottom: 10px; }

.bonus-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.bonus-card-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.bonus-card-body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bonus-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.bonus-terms {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
  flex: 1;
}

.bonus-term {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
}

.bonus-term .check { color: var(--green); font-size: 13px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-h) + 44px) var(--gutter) 48px;
  text-align: center;
  background: linear-gradient(180deg, rgba(245,197,24,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-dim);
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dim);
  padding: 48px var(--gutter) 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-logo img   { height: 28px; margin-bottom: 14px; }

.footer-about {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 240px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 9px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-dim);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-18 {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--text-dim);
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-badges span {
  font-size: 11px;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════
   FLOATING CHAT
═══════════════════════════════════════════════════ */
.floating-chat {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 150;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.38), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-chat::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(245, 197, 24, 0.25);
  animation: chatPulse 2s ease-in-out infinite;
}

.floating-chat:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(245, 197, 24, 0.55);
}

@keyframes chatPulse {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50%      { opacity: 0;   transform: scale(1.4); }
}

/* ═══════════════════════════════════════════════════
   MOBILE BOTTOM NAV
═══════════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  background: rgba(14,15,20,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-dim);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  justify-content: space-around;
  align-items: stretch;
}

.mob-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
}

.mob-nav-item::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
  transform: scaleX(0);
  transition: transform 0.15s;
}

.mob-nav-item.active,
.mob-nav-item:hover { color: var(--gold); }

.mob-nav-item.active::before { transform: scaleX(1); }

.mob-nav-item .ico { font-size: 21px; line-height: 1; }

/* ═══════════════════════════════════════════════════
   SHIMMER / GOLD SHIMMER
═══════════════════════════════════════════════════ */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark) 0%, #fff5b0 40%, var(--gold) 60%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.6s linear infinite;
}

@keyframes shimmer {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

/* ═══════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════ */
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

/* ── tablet ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-about { max-width: none; }

  .live-wins-layout {
    grid-template-columns: 1fr 280px;
  }
}

/* ── mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --gutter: 14px; }

  /* header */
  header { padding-inline: 14px; }
  .header-nav { display: none; }
  .header-actions .btn-outline { display: none; }

  /* hero */
  .hero-inner { text-align: center; }
  .hero-title { letter-spacing: -1px; }
  .hero-bonus-row { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-note { text-align: center; }

  /* sections */
  .section { padding-block: 40px; }

  /* bonus banner */
  .bonus-banner {
    grid-template-columns: 1fr;
  }
  .bonus-banner::after { display: none; }

  /* live + wins */
  .live-wins-layout {
    grid-template-columns: 1fr;
  }
  .wins-feed {
    position: static;
    max-height: 320px;
  }
  .wins-list { max-height: 260px; }

  /* live grid */
  .live-grid { grid-template-columns: repeat(2, 1fr); }

  /* games */
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 10px;
  }

  /* mobile nav */
  .mobile-nav { display: flex; }

  /* floating chat */
  .floating-chat { bottom: 76px; right: 16px; }

  /* info section */
  .info-section { margin-bottom: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: 1; }
  .bonus-nums { gap: 16px; }
  .steps { grid-template-columns: 1fr; }
}
