@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --gold: #f0c040;
  --gold-light: #ffe57a;
  --gold-dark: #b8860b;
  --red: #d42a2a;
  --red-dark: #9e1c1c;
  --bg-dark: #0a0a0f;
  --bg-card: #12121e;
  --bg-card2: #1a1a2e;
  --border: rgba(240,192,64,0.2);
  --text: #e8e8f0;
  --text-muted: #888899;
  --green: #2ecc71;
  --green-dark: #1a8a4a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  flex-shrink: 0;
}

.logo-link img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(240,192,64,0.5));
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
  text-transform: uppercase;
}

nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(240,192,64,0.08);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(240,192,64,0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(240,192,64,0.55);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(240,192,64,0.1);
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(135deg, #e63946 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(214,42,42,0.4);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(214,42,42,0.6);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 18px;
}

.btn-xl {
  padding: 18px 48px;
  font-size: 20px;
  border-radius: 10px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 20px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('bg.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.35) saturate(1.2);
  transition: transform 20s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(240,192,64,0.07) 0%, transparent 65%),
              linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,192,64,0.12);
  border: 1px solid rgba(240,192,64,0.35);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before { content: '★'; font-size: 11px; }

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== WINS TICKER ========== */
.wins-ticker-wrap {
  background: linear-gradient(90deg, var(--bg-card2) 0%, rgba(240,192,64,0.07) 50%, var(--bg-card2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.wins-ticker-inner {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.wins-ticker-label {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0f;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.wins-ticker-track {
  display: flex;
  align-items: center;
  animation: tickerScroll 35s linear infinite;
  gap: 0;
  padding-left: 20px;
}

.wins-ticker-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: 10px;
  padding: 12px 28px 12px 0;
  white-space: nowrap;
  font-size: 14px;
  border-right: 1px solid var(--border);
  margin-right: 28px;
  flex-shrink: 0;
}

.win-item-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0f;
  flex-shrink: 0;
}

.win-item-name { color: var(--text); font-weight: 600; }
.win-item-game { color: var(--text-muted); }
.win-item-amount { color: var(--green); font-weight: 700; font-family: 'Oswald', sans-serif; font-size: 15px; }

/* ========== SECTION ========== */
section { padding: 80px 20px; }

.section-inner { max-width: 1280px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== GAMES GRID ========== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(240,192,64,0.2);
}

.game-card-img {
  aspect-ratio: 3/4;
  width: 100%;
  background: linear-gradient(135deg, #1a1a3e, #0d0d1e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

.game-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
}

.game-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-card-badge.hot { background: linear-gradient(135deg, #ff6b35, #d42a2a); }
.game-card-badge.new { background: linear-gradient(135deg, #2ecc71, #1a8a4a); }
.game-card-badge.top { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #0a0a0f; }

.game-card-body {
  padding: 14px;
}

.game-card-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 12px;
  color: var(--text-muted);
}

.game-card-rtp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.game-card-rtp span:first-child {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-card-rtp span:last-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.game-card:hover .game-card-overlay { opacity: 1; }

/* ========== LIVE TABLE ========== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.live-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240,192,64,0.6);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.live-card-preview {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a0a2e, #0d0d20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}

.live-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #e63946;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.live-players {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.live-card-body {
  padding: 16px;
}

.live-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.live-card-dealer {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.live-limits {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-limit-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.live-limit-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

/* ========== BONUSES ========== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.bonus-card-header {
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}

.bonus-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.bonus-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.bonus-card-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.bonus-card-body {
  padding: 0 28px 28px;
}

.bonus-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bonus-features {
  list-style: none;
  margin-bottom: 24px;
}

.bonus-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.bonus-features li:last-child { border: none; }

.bonus-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== PROVIDERS ========== */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: var(--text-muted);
  transition: all 0.25s;
  min-height: 70px;
}

.provider-card:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,192,64,0.05);
}

/* ========== WINS FEED ========== */
.wins-feed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.wins-feed-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wins-feed-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feed-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}

.wins-feed-list {
  max-height: 420px;
  overflow-y: auto;
}

.wins-feed-list::-webkit-scrollbar { width: 4px; }
.wins-feed-list::-webkit-scrollbar-thumb { background: var(--border); }

.feed-win-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(240,192,64,0.07);
  transition: background 0.2s;
  animation: feedIn 0.4s ease;
}

@keyframes feedIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.feed-win-item:hover { background: rgba(240,192,64,0.04); }
.feed-win-item:last-child { border: none; }

.feed-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  color: #0a0a0f;
  flex-shrink: 0;
}

.feed-info {}
.feed-player { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.feed-game { font-size: 12px; color: var(--text-muted); }

.feed-amount {
  text-align: right;
}
.feed-sum {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}
.feed-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  position: relative;
  padding: 130px 20px 70px;
  background: linear-gradient(180deg, rgba(240,192,64,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(240,192,64,0.08) 0%, transparent 70%);
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.page-hero h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.7;
  position: relative;
}

/* ========== FILTER BAR ========== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(240,192,64,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ========== PAYMENT ICONS ========== */
.payments-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.payment-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ========== FOOTER ========== */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 20px 30px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 6px rgba(240,192,64,0.3));
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  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: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
}

.footer-18 {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ========== JACKPOT COUNTER ========== */
.jackpot-banner {
  background: linear-gradient(135deg, #1a0a2e 0%, #0a0a1e 50%, #1a0a2e 100%);
  border: 1px solid rgba(240,192,64,0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jackpot-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(240,192,64,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.jackpot-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.jackpot-amount {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(240,192,64,0.4));
}

.jackpot-note {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

/* ========== TRUST BADGES ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
}

.trust-card:hover {
  border-color: rgba(240,192,64,0.4);
  background: rgba(240,192,64,0.04);
}

.trust-icon { font-size: 36px; margin-bottom: 14px; }

.trust-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.trust-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== MOBILE BURGER ========== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  
  nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  
  nav.open { transform: translateY(0); }
  nav a { font-size: 18px; padding: 12px 20px; width: 100%; text-align: center; }
  
  .header-cta .btn-outline { display: none; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  
  .hero-stat-num { font-size: 24px; }
  .hero-stats { gap: 24px; }
  
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
  .live-grid { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  
  section { padding: 56px 20px; }
}

@media (max-width: 480px) {
  .header-cta .btn span { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== NOTIFICATION ========== */
.win-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: var(--bg-card2);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
  max-width: 380px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(240,192,64,0.1);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.win-notification.show { transform: translateX(0); }

.win-notif-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.win-notif-text {}
.win-notif-player { font-size: 13px; color: var(--text-muted); }
.win-notif-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}
.win-notif-game { font-size: 12px; color: var(--text-muted); }

/* ========== GRADIENT BG SECTIONS ========== */
.bg-gradient-section {
  background: linear-gradient(135deg, rgba(240,192,64,0.04) 0%, rgba(10,10,30,0) 50%, rgba(212,42,42,0.04) 100%);
}

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ========== SEO CONTENT SECTION ========== */
.seo-section {
  padding: 64px 20px 72px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.seo-article {
  max-width: 820px;
}

.seo-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.seo-article .seo-h2:first-child {
  margin-top: 0;
}

.seo-p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0;
}

.seo-p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(240,192,64,0.45);
  transition: color 0.2s;
}

.seo-p a:hover {
  color: var(--gold-light);
}

.seo-faq {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.seo-faq .seo-h2 {
  margin-top: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}

.faq-question {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.faq-answer {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.seo-internal-nav {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.seo-internal-nav-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 14px;
}

.seo-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  list-style: none;
  flex-direction: column;
}

.seo-links-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-links-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

.seo-links-list a {
  font-size: 14px;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(240,192,64,0.4);
  transition: color 0.2s;
}

.seo-links-list a:hover {
  color: var(--gold-light);
}
