/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #07070f;
  --bg-2:      #0d0d1a;
  --bg-card:   #111125;
  --bg-card2:  #181833;
  --gold:      #f0b429;
  --gold-lt:   #ffe082;
  --red:       #e53935;
  --red-lt:    #ff6659;
  --green:     #00c853;
  --text:      #ffffff;
  --text-m:    #9999bb;
  --border:    rgba(240,180,41,.18);
  --glow:      rgba(240,180,41,.35);
  --radius:    12px;
  --trans:     .25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-gold {
  background: linear-gradient(135deg, #f0b429, #e0920a);
  color: #1a0a00;
  box-shadow: 0 0 20px rgba(240,180,41,.45);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffe082, #f0b429);
  box-shadow: 0 0 30px rgba(240,180,41,.7);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #1a0a00;
  transform: translateY(-2px);
}
.btn-red {
  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;
  box-shadow: 0 0 18px rgba(229,57,53,.4);
}
.btn-red:hover {
  background: linear-gradient(135deg, #ff6659, #e53935);
  box-shadow: 0 0 28px rgba(229,57,53,.65);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: .82rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,7,15,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo { height: 44px; flex-shrink: 0; }
.site-logo img { height: 100%; width: auto; object-fit: contain; }

.main-nav { flex: 1; display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-m);
  transition: var(--trans);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(240,180,41,.08);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--trans); }

/* Mobile nav */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform .3s ease;
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .burger { display: flex; }
  .header-actions .btn-outline { display: none; }
}

/* ===== PAGE WRAPPER ===== */
.page-content { padding-top: 68px; padding-bottom: 60px; }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: min(80vh, 620px);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,7,15,.35) 0%, rgba(7,7,15,.7) 60%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 48px;
  max-width: 760px;
}
.hero-badge {
  background: var(--red);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--trans);
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== WINS TICKER ===== */
.wins-ticker {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(10,10,20,.95);
  border-top: 1px solid var(--border);
  padding: 0 16px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.wins-ticker-label {
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  padding-right: 12px;
  flex-shrink: 0;
}
.wins-track-wrap { flex: 1; overflow: hidden; position: relative; }
.wins-track {
  display: flex;
  gap: 32px;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
}
.wins-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.win-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  flex-shrink: 0;
}
.win-item .win-player { color: var(--gold-lt); font-weight: 700; }
.win-item .win-sep    { color: var(--text-m); }
.win-item .win-game   { color: var(--text-m); }
.win-item .win-amount { color: var(--green); font-weight: 800; }
.win-item .win-icon   { font-size: 1rem; }

/* ===== SECTIONS ===== */
.section { padding: 56px 24px; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: .9rem;
  color: var(--text-m);
  margin-top: 6px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 24px;
}
.stat-item {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.stat-lbl {
  font-size: .78rem;
  color: var(--text-m);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--trans);
  cursor: pointer;
  position: relative;
}
.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(240,180,41,.25);
}
.game-card-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.game-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.game-card:hover .game-card-thumb img { transform: scale(1.08); }
.game-card-overlay {
  position: absolute; inset: 0;
  background: rgba(7,7,15,.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--trans);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-info {
  padding: 10px 12px;
}
.game-card-name {
  font-size: .8rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.game-card-provider {
  font-size: .7rem;
  color: var(--text-m);
  margin-top: 2px;
}
.game-hot-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.game-new-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--green);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-m);
  cursor: pointer;
  transition: var(--trans);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--gold);
  color: #1a0a00;
  border-color: var(--gold);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1500 40%, #0d0d1a 100%);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 48px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,180,41,.15) 0%, transparent 70%);
}
.promo-text { flex: 1; }
.promo-text .promo-eyebrow {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.promo-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.15;
}
.promo-text h2 span { color: var(--gold); }
.promo-text p { color: var(--text-m); font-size: .95rem; line-height: 1.6; }
.promo-img {
  flex-shrink: 0;
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .promo-banner { flex-direction: column; padding: 32px 24px; }
  .promo-img { width: 100%; max-width: 300px; }
}

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.bonus-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(240,180,41,.15);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}
.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.bonus-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.bonus-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}
.bonus-desc {
  font-size: .85rem;
  color: var(--text-m);
  line-height: 1.6;
  margin-bottom: 20px;
}
.bonus-tag {
  display: inline-block;
  background: rgba(240,180,41,.1);
  border: 1px solid rgba(240,180,41,.3);
  color: var(--gold);
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin: 2px;
  font-weight: 700;
}

/* ===== LIVE GAMES ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--trans);
  cursor: pointer;
}
.live-card:hover {
  border-color: var(--red);
  box-shadow: 0 0 24px rgba(229,57,53,.2);
  transform: translateY(-4px);
}
.live-card-img {
  height: 160px;
  background: var(--bg-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.live-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex; align-items: center; gap: 4px;
}
.live-badge::before { content: '●'; font-size: .5rem; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.live-card-info { padding: 16px; }
.live-card-name { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.live-card-provider { font-size: .8rem; color: var(--text-m); margin-bottom: 10px; }
.live-card-stats {
  display: flex; gap: 16px;
  font-size: .78rem;
  color: var(--text-m);
}
.live-card-stats span { color: var(--text); font-weight: 700; }

/* ===== FAQ ===== */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 700;
  transition: color var(--trans);
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-q-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  transition: transform var(--trans);
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-m);
  line-height: 1.7;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-card) 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,180,41,.08) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1rem; color: var(--text-m); line-height: 1.6; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-m);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: var(--border); }

/* ===== PROVIDERS ===== */
.providers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.provider-pill {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-m);
  cursor: pointer;
  transition: var(--trans);
}
.provider-pill:hover, .provider-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,180,41,.06);
}

/* ===== VIP SECTION ===== */
.vip-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.vip-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--trans);
}
.vip-step:hover { border-color: var(--gold); transform: translateY(-4px); }
.vip-level {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.vip-icon { font-size: 2.2rem; margin-bottom: 10px; }
.vip-name { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.vip-perks { font-size: .78rem; color: var(--text-m); line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 120px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; color: var(--text-m); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .85rem;
  color: var(--text-m);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  font-size: .78rem;
  color: var(--text-m);
  line-height: 1.6;
  max-width: 700px;
}
.footer-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-m);
}
.footer-badge span { color: var(--green); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ===== MISC UTILS ===== */
.text-gold { color: var(--gold); }
.text-red  { color: var(--red); }
.text-green{ color: var(--green); }
.text-muted{ color: var(--text-m); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.text-center { text-align: center; }

/* Glow number animate */
@keyframes countUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.stat-val { animation: countUp .5s ease both; }

/* Win-item entrance */
@keyframes winPop { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: scale(1); } }
.win-item.new { animation: winPop .4s ease; }

/* Pulse live dot */
.pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(229,57,53,.5);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(229,57,53,.5); }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
