@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep: #0a0612;
  --bg-dark: #100d1e;
  --bg-card: #16122a;
  --bg-card2: #1c1735;
  --purple: #6c2bd9;
  --purple-light: #8b4cf7;
  --purple-glow: #a855f7;
  --gold: #f5c518;
  --gold-light: #ffd84d;
  --green: #22c55e;
  --red: #ef4444;
  --text: #e8e0f5;
  --text-dim: #9182b8;
  --border: rgba(108,43,217,0.3);
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  background-image: url('../background.webp');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,18,0.88) 0%, rgba(10,6,18,0.92) 60%, rgba(10,6,18,0.97) 100%);
  z-index: 0;
  pointer-events: none;
}

body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,6,18,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(168,85,247,0.5));
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(108,43,217,0.25);
}

.nav-link.active {
  color: var(--purple-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.btn-ghost:hover {
  border-color: var(--purple-light);
  color: var(--text);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,43,217,0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(108,43,217,0.6);
}

.btn-gold {
  background: linear-gradient(135deg, #e6a800, var(--gold));
  color: #1a0a00;
  box-shadow: 0 4px 20px rgba(245,197,24,0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245,197,24,0.55);
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-gold-outline:hover {
  background: rgba(245,197,24,0.1);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 12px;
}

/* ===== WINS TICKER ===== */
.wins-ticker {
  background: rgba(22,18,42,0.95);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  height: 38px;
}

.ticker-label {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-label svg { width: 14px; height: 14px; }

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-list {
  display: flex;
  gap: 0;
  animation: ticker-scroll 35s linear infinite;
  width: max-content;
}

.ticker-list:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px 0 0;
  font-size: 13px;
  white-space: nowrap;
}

.ticker-item .win-name { color: var(--text-dim); }
.ticker-item .win-game { color: var(--text-dim); font-size: 11px; }
.ticker-item .win-amount { color: var(--green); font-weight: 700; }
.ticker-item .win-dot { color: var(--border); font-size: 18px; line-height: 1; }

/* ===== HERO ===== */
.hero {
  padding: 60px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,43,217,0.2);
  border: 1px solid rgba(108,43,217,0.4);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-glow);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; box-shadow: 0 0 8px var(--green); animation: pulse-dot 2s ease infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-title .gold { color: var(--gold); text-shadow: 0 0 30px rgba(245,197,24,0.4); }
.hero-title .purple { color: var(--purple-glow); }

.hero-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Bonus card */
.bonus-card {
  background: linear-gradient(145deg, #1c1540 0%, #2a1f5c 50%, #1c1540 100%);
  border: 1px solid rgba(108,43,217,0.5);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(108,43,217,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(168,85,247,0.2), transparent 70%);
  pointer-events: none;
}

.bonus-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.bonus-percent {
  font-family: 'Oswald', sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(245,197,24,0.5);
}

.bonus-plus {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  color: var(--text-dim);
  margin: 4px 0;
}

.bonus-fs {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--purple-glow);
  text-shadow: 0 0 30px rgba(168,85,247,0.5);
  margin-bottom: 8px;
}

.bonus-fs-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.bonus-card .btn { width: 100%; }

.bonus-card-note {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 10px;
  opacity: 0.7;
}

/* ===== SECTION ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title .accent { color: var(--gold); }
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-light);
  box-shadow: 0 8px 30px rgba(108,43,217,0.35);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-card2), #2a1f5c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  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-overlay {
  position: absolute;
  inset: 0;
  background: rgba(108,43,217,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-info {
  padding: 12px;
}

.game-card-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 11px;
  color: var(--text-dim);
}

.game-card-hot {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 3;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--purple-light); }

.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature-title { font-size: 15px; font-weight: 700; }
.feature-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* ===== SUPPORT BANNER ===== */
.support-banner {
  background: linear-gradient(135deg, rgba(108,43,217,0.2), rgba(168,85,247,0.1));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.support-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(108,43,217,0.5);
}

.support-text h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.support-text p { font-size: 13px; color: var(--text-dim); }
.support-actions { margin-left: auto; display: flex; gap: 10px; }

/* ===== PROMO BANNERS ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.promo-card {
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}

.promo-card:hover { transform: translateY(-3px); }

.promo-card-1 {
  background: linear-gradient(135deg, #1a0a3e, #2d1060);
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 4px 30px rgba(108,43,217,0.2);
}

.promo-card-2 {
  background: linear-gradient(135deg, #1a1400, #3d2e00);
  border-color: rgba(245,197,24,0.3);
  box-shadow: 0 4px 30px rgba(245,197,24,0.1);
}

.promo-card-3 {
  background: linear-gradient(135deg, #001a0a, #003d1a);
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 4px 30px rgba(34,197,94,0.1);
}

.promo-card-glow {
  position: absolute;
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  opacity: 0.15;
}

.promo-1-glow { background: var(--purple-glow); }
.promo-2-glow { background: var(--gold); }
.promo-3-glow { background: var(--green); }

.promo-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
}

.promo-title {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin: 6px 0;
}

.promo-desc { font-size: 13px; opacity: 0.75; }
.promo-cta { align-self: flex-start; margin-top: 16px; padding: 10px 24px; font-size: 13px; }

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.stat-item {
  background: var(--bg-card);
  padding: 28px 20px;
  text-align: center;
}

.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* ===== LIVE WINS PANEL ===== */
.live-wins {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.live-wins-header {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}

.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse-dot 1.5s ease infinite; }

.wins-list { max-height: 380px; overflow: hidden; }

.win-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(108,43,217,0.12);
  animation: slide-in 0.5s ease;
  transition: background 0.2s;
}

.win-row:hover { background: rgba(108,43,217,0.08); }
.win-row:last-child { border-bottom: none; }

@keyframes slide-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.win-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.win-info { flex: 1; min-width: 0; }
.win-player { font-size: 13px; font-weight: 600; }
.win-game-name { font-size: 11px; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-sum { font-size: 15px; font-weight: 800; color: var(--green); white-space: nowrap; }

/* ===== SLOTS PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(108,43,217,0.15), transparent);
  border-bottom: 1px solid var(--border);
  padding: 48px 20px 36px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-sub {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.6;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(108,43,217,0.2);
  border-color: var(--purple);
  color: var(--text);
}

/* ===== LIVE PAGE ===== */
.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: all 0.3s;
  cursor: pointer;
}

.live-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-light);
  box-shadow: 0 8px 30px rgba(108,43,217,0.4);
}

.live-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a0a3e, #2d1060);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1s ease infinite;
}

.live-players {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-card-info { padding: 14px 16px; }
.live-card-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.live-card-provider { font-size: 12px; color: var(--text-dim); margin-bottom: 12px; }
.live-card-limits { display: flex; justify-content: space-between; font-size: 12px; }
.live-card-limits span:first-child { color: var(--text-dim); }
.live-card-limits span:last-child { color: var(--gold); font-weight: 600; }

/* ===== BONUSES PAGE ===== */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bonus-item:hover {
  border-color: var(--purple-light);
  box-shadow: 0 4px 24px rgba(108,43,217,0.2);
}

.bonus-item-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.bonus-item-info { min-width: 0; }
.bonus-item-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.bonus-item-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.bonus-item-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.bonus-item-conds {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.bonus-cond {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bonus-cond::before { content: '•'; color: var(--purple-glow); }

.bonus-item-action { flex-shrink: 0; }

/* ===== SEO TEXT ===== */
.seo-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.seo-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  line-height: 1.7;
}

.seo-box h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.seo-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--purple-glow);
  margin: 24px 0 10px;
}

.seo-box p { font-size: 14px; color: var(--text-dim); margin-bottom: 12px; }

.seo-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.seo-box ul li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.seo-box ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--purple-glow);
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(10,6,18,0.95);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img { height: 40px; margin-bottom: 16px; filter: drop-shadow(0 0 6px rgba(168,85,247,0.4)); }
.footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--purple-glow); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal { font-size: 12px; color: var(--text-dim); line-height: 1.6; }
.footer-age {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ===== SEO SEMANTIC ELEMENTS ===== */
.seo-link {
  color: var(--purple-glow);
  text-decoration: underline;
  text-decoration-color: rgba(168,85,247,0.4);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.seo-link:hover { color: var(--gold); }

.seo-faq { margin-top: 32px; }
.seo-faq > h2 { margin-bottom: 16px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
  background: rgba(108,43,217,0.05);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(108,43,217,0.45); }
.faq-item:last-child { margin-bottom: 0; }

.faq-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.faq-answer {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 0;
}

.seo-internal-links { margin-top: 32px; }
.seo-internal-links h2 { margin-bottom: 14px; }
.seo-internal-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.seo-internal-links ul li::before { content: '→'; color: var(--purple-glow); margin-right: 8px; }
.seo-internal-links ul li a {
  font-size: 14px;
  color: var(--purple-glow);
  text-decoration: underline;
  text-decoration-color: rgba(168,85,247,0.35);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.seo-internal-links ul li a:hover { color: var(--gold); }

/* Breadcrumb */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
}
.breadcrumb a { color: var(--text-dim); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--purple-glow); }
.breadcrumb span { opacity: 0.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .bonus-card { max-width: 380px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bonus-item { grid-template-columns: auto 1fr; }
  .bonus-item-action { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .header-inner { gap: 12px; }
  .nav { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .support-banner { flex-direction: column; text-align: center; }
  .support-actions { margin-left: 0; }
  .seo-box { padding: 24px 20px; }
}

/* ===== NOTIFICATION TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toast-in 0.4s cubic-bezier(.175,.885,.32,1.275);
  pointer-events: auto;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.toast.removing {
  animation: toast-out 0.3s ease forwards;
}

@keyframes toast-out {
  to { opacity: 0; transform: translateX(-20px); }
}

.toast-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.toast-body { min-width: 0; }
.toast-title { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.toast-sub { font-size: 11px; color: var(--text-dim); }
.toast-amount { font-size: 16px; font-weight: 800; color: var(--green); margin-left: auto; white-space: nowrap; }
