:root {
  --bg-primary: #080c18;
  --bg-secondary: #0f1628;
  --bg-card: #151e35;
  --bg-card-hover: #1c2845;
  --accent-gold: #f5c518;
  --accent-gold-dark: #d4a017;
  --accent-green: #1db954;
  --accent-green-dark: #17a047;
  --accent-purple: #6c4de6;
  --text-primary: #ffffff;
  --text-secondary: #8a9bc4;
  --text-muted: #4a5880;
  --border: #1e2d50;
  --border-glow: rgba(245, 197, 24, 0.3);
  --shadow-gold: 0 0 20px rgba(245, 197, 24, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 12, 24, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav a.active {
  color: var(--accent-gold);
}

.header-actions {
  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: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-green), #15a040);
  color: #fff;
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #080c18;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.5);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius);
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  overflow: hidden;
}

.wins-ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  white-space: nowrap;
  font-size: 13px;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
}

.ticker-item .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.ticker-item .win-amount {
  color: var(--accent-gold);
  font-weight: 700;
}

.ticker-item .game-name {
  color: var(--text-primary);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('background.webp') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 12, 24, 0.92) 0%,
    rgba(8, 12, 24, 0.7) 50%,
    rgba(8, 12, 24, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--accent-gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.hero-bonus-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-bonus-text strong {
  color: var(--accent-green);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(21, 30, 53, 0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.hero-card-bonus {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-card-plus {
  font-size: 32px;
  color: var(--text-secondary);
  margin: 8px 0;
}

.hero-card-fs {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-card-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ===== FEATURES ===== */
.features {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ===== SECTION ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title .icon {
  font-size: 24px;
}

.section-link {
  font-size: 14px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.section-link:hover { gap: 8px; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--border);
}

.game-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--accent-gold);
  z-index: 2;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-purple), #1a0a3c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,24,0.95) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.game-card-provider {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.game-card-play {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #080c18;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 6px;
  text-align: center;
  display: block;
}

/* ===== LIVE WINS BLOCK ===== */
.live-wins {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.live-wins-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.wins-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.win-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
  animation: winAppear 0.4s ease;
}

@keyframes winAppear {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.win-item:hover {
  border-color: var(--accent-gold);
  background: var(--bg-card-hover);
}

.win-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.win-info {
  flex: 1;
  min-width: 0;
}

.win-player {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-game {
  font-size: 11px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-amount {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ===== BONUS BANNER ===== */
.bonus-banner {
  margin: 0 20px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #1a1040 0%, #0d1a3a 50%, #1a1040 100%);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-banner-text .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.bonus-banner-text h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.bonus-banner-text p {
  color: var(--text-secondary);
  font-size: 15px;
}

.bonus-values {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
}

.bonus-value {
  text-align: center;
}

.bonus-value .num {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bonus-value .unit {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.bonus-sep {
  font-size: 24px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== INFO SECTION ===== */
.info-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0;
}

.info-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-inner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-inner p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 900px;
}

.info-inner h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}

.info-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.info-inner ul li {
  color: var(--text-secondary);
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.info-inner ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 10px;
  top: 3px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.badge-18 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-secondary);
}

/* ===== SUPPORT PILL ===== */
.support-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-green), #15a040);
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.35);
  cursor: pointer;
  z-index: 900;
  transition: all var(--transition);
  text-decoration: none;
}

.support-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(29, 185, 84, 0.5);
}

.support-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.tab {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.tab:hover {
  color: var(--text-primary);
}

.tab.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
}

.bonus-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.bonus-card-header {
  padding: 24px;
  background: linear-gradient(135deg, #1a1040, #0d1a3a);
  position: relative;
  overflow: hidden;
}

.bonus-card-header::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
}

.bonus-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.bonus-amount {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-card-body {
  padding: 20px 24px 24px;
}

.bonus-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.bonus-conditions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.bonus-conditions li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.bonus-conditions li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  transition: color var(--transition);
  user-select: none;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-icon {
  font-size: 20px;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ===== LIVE TABLE ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.live-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53e3e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.live-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

.live-card-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

.live-card-info {
  padding: 14px 16px;
}

.live-card-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.live-card-players {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-card-players::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 0 0 env(safe-area-inset-bottom);
}

.mobile-nav-inner {
  display: flex;
  justify-content: space-around;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 4px;
  gap: 4px;
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: none;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--accent-gold);
}

.mobile-nav-item .icon {
  font-size: 22px;
}

/* ===== SEO ARTICLE ===== */
.seo-article {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.seo-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.seo-section p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
}

.seo-section p a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-decoration-color: rgba(245, 197, 24, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}

.seo-section p a:hover {
  text-decoration-color: var(--accent-gold);
}

.seo-faq {
  margin-top: 52px;
}

.seo-faq__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.seo-links {
  margin-top: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.seo-links__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.seo-links__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-links__list li {
  font-size: 14px;
  color: var(--text-muted);
}

.seo-links__list li a {
  color: var(--accent-gold);
  font-weight: 600;
  transition: color var(--transition);
}

.seo-links__list li a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bonus-banner { flex-direction: column; text-align: center; }
  .bonus-values { justify-content: center; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-actions .btn-outline { display: none; }
  .burger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .wins-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-nav { display: block; }
  body { padding-bottom: 70px; }
  .support-pill { bottom: 84px; }
  .bonus-banner { padding: 28px 24px; }
  .bonus-values { flex-direction: column; gap: 12px; }
  .bonus-sep { transform: rotate(90deg); }
}

@media (max-width: 480px) {
  .features { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}
