/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d14;
  --bg2: #12121e;
  --bg3: #1a1a2e;
  --card: #16213e;
  --card2: #1e2a45;
  --accent: #7c3aed;
  --accent2: #a855f7;
  --gold: #f59e0b;
  --gold2: #fbbf24;
  --green: #10b981;
  --red: #ef4444;
  --text: #e2e8f0;
  --text2: #94a3b8;
  --border: rgba(124,58,237,0.25);
  --glow: 0 0 20px rgba(124,58,237,0.4);
  --glow-gold: 0 0 20px rgba(245,158,11,0.4);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,20,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--text);
  background: rgba(124,58,237,0.15);
}
.nav a.active { color: var(--accent2); }

.header-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--accent); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(124,58,237,0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1a1a2e;
  font-weight: 700;
  box-shadow: var(--glow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(245,158,11,0.6);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 12px;
}

/* ===== MOBILE MENU ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: linear-gradient(90deg, var(--bg2), var(--bg3), var(--bg2));
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 13px;
  color: var(--text2);
  white-space: nowrap;
}

.ticker-item .win-amount {
  color: var(--green);
  font-weight: 700;
}
.ticker-item .win-name { color: var(--text); font-weight: 500; }
.ticker-item .win-game { color: var(--accent2); }
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('background.webp');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35) saturate(1.2);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,20,0.85) 0%,
    rgba(124,58,237,0.15) 50%,
    rgba(13,13,20,0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-bonus-card {
  background: linear-gradient(135deg, rgba(26,26,46,0.9), rgba(30,42,69,0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-bonus-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.1) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.bonus-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: #1a1a2e;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.bonus-value {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.bonus-plus {
  font-size: 24px;
  color: var(--text2);
  font-weight: 700;
  margin: 8px 0;
}

.bonus-fs {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent2), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-label {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 24px;
}

/* ===== SECTION ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.section-link {
  font-size: 14px;
  color: var(--accent2);
  font-weight: 500;
  transition: opacity 0.2s;
}
.section-link:hover { opacity: 0.75; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(124,58,237,0.3);
}

.game-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg3), var(--card2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124,58,237,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}
.game-card:hover .game-overlay { opacity: 1; }

.game-info {
  padding: 12px;
}
.game-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider {
  font-size: 11px;
  color: var(--text2);
  margin-top: 2px;
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 3;
}
.badge-hot { background: var(--red); color: #fff; }
.badge-new { background: var(--green); color: #fff; }
.badge-top { background: var(--gold); color: #1a1a2e; }

/* ===== LIVE TICKER ===== */
.live-wins-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.wins-table {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.wins-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.win-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--card);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.win-row:hover { background: var(--card2); border-color: var(--border); }

.win-player {
  display: flex;
  align-items: center;
  gap: 10px;
}
.win-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.win-player-name { font-size: 14px; font-weight: 500; }
.win-game-name { font-size: 12px; color: var(--text2); }

.win-time { font-size: 12px; color: var(--text2); white-space: nowrap; }
.win-mult {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent2);
  white-space: nowrap;
}
.win-sum {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  min-width: 90px;
  text-align: right;
}

/* ===== INFO BLOCKS ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.25s;
}
.info-card:hover { border-color: var(--border); transform: translateY(-2px); }

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.info-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-text {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* ===== SEO TEXT ===== */
.seo-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 24px;
}

.seo-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.seo-inner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.seo-inner h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--text);
}

.seo-inner p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.seo-inner ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}
.seo-inner ul li {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 6px;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 16px;
}

/* ===== STATS ===== */
.stats-bar {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(168,85,247,0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin: 0 24px 60px;
  max-width: calc(1280px - 48px);
  margin-left: auto;
  margin-right: auto;
}

.stat-item { padding: 8px; }
.stat-value {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
}

/* ===== BONUS CARDS ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.bonus-card:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  box-shadow: var(--glow);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.bonus-card-icon { font-size: 40px; margin-bottom: 16px; }
.bonus-card-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.bonus-card-value {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.bonus-card-desc { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 20px; }
.bonus-card-terms { font-size: 12px; color: var(--text2); opacity: 0.6; margin-top: 12px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border); }

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent2); }
.faq-question .faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(124,58,237,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 12px;
  color: var(--accent2);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(168,85,247,0.06));
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 { font-size: 42px; font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--text2); max-width: 600px; margin: 0 auto; }

/* ===== LIVE GAMES ===== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.live-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.25s;
}
.live-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 8px 32px rgba(239,68,68,0.2);
}

.live-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a0a0a, #2e1010);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
}

.live-status {
  position: absolute;
  top: 8px;
  left: 8px;
}

.live-players {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 11px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 2px 8px;
  border-radius: 100px;
}

.live-info { padding: 14px; }
.live-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.live-provider { font-size: 12px; color: var(--text2); }
.live-limit { font-size: 12px; color: var(--gold); margin-top: 4px; font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--text2);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text2);
  opacity: 0.6;
}

.footer-age {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: var(--text2);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }

/* ===== PROVIDERS ===== */
.providers-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.provider-chip {
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
  transition: all 0.2s;
}
.provider-chip:hover { border-color: var(--border); color: var(--text); }

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: var(--text2);
  transition: all 0.2s;
}
.filter-tab:hover { color: var(--text); border-color: var(--border); }
.filter-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow);
}

/* ===== SUPPORT BADGE ===== */
.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}
.support-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s ease-in-out infinite;
}

/* ===== SEO CONTENT BLOCKS ===== */
.seo-block {
  margin-bottom: 36px;
}

.seo-h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.35;
}

.seo-h2--nav {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text2);
}

.seo-link {
  color: var(--accent2);
  text-decoration: underline;
  text-decoration-color: rgba(168,85,247,0.35);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.seo-link:hover {
  color: #c084fc;
  text-decoration-color: rgba(168,85,247,0.7);
}

.seo-faq {
  margin: 40px 0 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.seo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seo-faq-item {
  padding: 20px 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}

.seo-faq-q {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.4;
}

.seo-faq-a {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  margin: 0;
}

.seo-nav {
  margin: 36px 0 28px;
  padding: 24px;
  background: rgba(124,58,237,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.seo-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.seo-nav-list li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.seo-nav-list li::before {
  content: '→';
  color: var(--accent2);
  font-size: 13px;
  flex-shrink: 0;
}

.seo-disclaimer {
  padding: 16px 20px;
  background: rgba(124,58,237,0.07);
  border-radius: 10px;
  border: 1px solid rgba(124,58,237,0.18);
  margin-top: 8px;
}
.seo-disclaimer p {
  font-size: 13px;
  color: var(--text2);
  opacity: 0.75;
  margin: 0;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .seo-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-btns .btn-ghost { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-bonus-card { max-width: 360px; margin: 0 auto; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .page-hero h1 { font-size: 32px; }

  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(13,13,20,0.98);
    backdrop-filter: blur(16px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    z-index: 999;
  }
  .nav.mobile-open a { padding: 12px 16px; width: 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .win-row { grid-template-columns: 1fr auto; }
  .win-time, .win-mult { display: none; }
  .welcome-bonus-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .welcome-bonus-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
}
