@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a28;
  --bg-card-hover: #222236;
  --bg-accent: #1e1e30;
  --gold: #d4a843;
  --gold-light: #e8c65a;
  --gold-dark: #b8922e;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #5b21b6;
  --green: #22c55e;
  --green-dark: #16a34a;
  --red: #ef4444;
  --orange: #f59e0b;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --text-primary: #f1f1f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border: #2a2a3d;
  --border-light: #3a3a52;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(212,168,67,0.15);
  --shadow-purple: 0 4px 24px rgba(124,58,237,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10,10,15,0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--bg-primary);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  position: relative;
}

.nav a:hover, .nav a.active {
  color: var(--gold);
  background: rgba(212,168,67,0.08);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* === HERO === */
.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,168,67,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124,58,237,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* === CONTAINER === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 60px 0; }
.section + .section { border-top: 1px solid var(--border); }

/* === SECTION HEADERS === */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title .accent {
  color: var(--gold);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

/* === CASINO CARDS === */
.casinos-grid {
  display: grid;
  gap: 20px;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.casino-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.casino-card:hover::before { opacity: 1; }

.casino-rank {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.casino-rank.silver {
  background: linear-gradient(135deg, #c0c0c0, #8a8a8a);
}

.casino-rank.bronze {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
}

.casino-info { min-width: 0; }

.casino-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.casino-name a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.casino-name a:hover { color: var(--gold); }

.casino-bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.casino-meta-item {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.casino-meta-item svg { width: 14px; height: 14px; opacity: 0.5; }

.casino-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.casino-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
}

.casino-tag.bonus { color: var(--purple-light); border-color: rgba(167,139,250,0.2); background: rgba(124,58,237,0.08); }
.casino-tag.games { color: var(--cyan); border-color: rgba(6,182,212,0.2); background: rgba(6,182,212,0.08); }
.casino-tag.speed { color: var(--green); border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.08); }
.casino-tag.crypto { color: var(--orange); border-color: rgba(245,158,11,0.2); background: rgba(245,158,11,0.08); }

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.rating-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.rating-stars { display: flex; gap: 2px; }
.rating-stars .star { color: var(--gold); font-size: 14px; }
.rating-stars .star.empty { color: var(--border); }

.rating-label {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  box-shadow: 0 4px 12px rgba(212,168,67,0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,67,0.05);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(124,58,237,0.3);
}

.btn-purple:hover {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  transform: translateY(-1px);
}

.btn-sm { padding: 8px 16px; font-size: 12px; border-radius: var(--radius-xs); }

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-icon.gold { background: rgba(212,168,67,0.1); }
.feature-icon.purple { background: rgba(124,58,237,0.1); }
.feature-icon.green { background: rgba(34,197,94,0.1); }
.feature-icon.blue { background: rgba(59,130,246,0.1); }

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === SLOTS GRID === */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.slot-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.slot-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.slot-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.slot-info { padding: 14px; }

.slot-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-provider {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.slot-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.slot-rtp {
  color: var(--green);
  font-weight: 600;
}

.slot-volatility {
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 10px;
}

.slot-volatility.high { background: rgba(239,68,68,0.1); color: var(--red); }
.slot-volatility.medium { background: rgba(245,158,11,0.1); color: var(--orange); }
.slot-volatility.low { background: rgba(34,197,94,0.1); color: var(--green); }

/* === BONUS CARDS === */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
}

.bonus-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bonus-casino-logo {
  width: 44px;
  height: 44px;
  background: var(--bg-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
}

.bonus-casino-name {
  font-weight: 700;
  font-size: 15px;
}

.bonus-type {
  font-size: 12px;
  color: var(--text-muted);
}

.bonus-value {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
}

.bonus-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.08);
  border: 1px dashed var(--gold-dark);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.bonus-code:hover {
  background: rgba(212,168,67,0.15);
}

.bonus-code .copy-hint {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

/* === CASINO DETAIL PAGE === */
.page-hero {
  padding: 100px 24px 40px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb .sep { opacity: 0.3; }

.detail-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
}

.detail-logo {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}

.detail-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 8px;
}

.detail-info p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 500px;
}

/* === INFO TABLE === */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr { border-bottom: 1px solid var(--border); }

.info-table td {
  padding: 14px 16px;
  font-size: 14px;
}

.info-table td:first-child {
  color: var(--text-muted);
  width: 200px;
  font-weight: 500;
}

.info-table td:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* === TABS === */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: var(--transition);
}

.tab-btn:hover { color: var(--text-secondary); }

.tab-btn.active {
  color: var(--gold);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* === PROS / CONS === */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-list, .cons-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.pros-list h3, .cons-list h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-list h3 { color: var(--green); }
.cons-list h3 { color: var(--red); }

.pros-list li, .cons-list li {
  list-style: none;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }

.pros-list li::before { content: '✓'; color: var(--green); font-weight: 700; }
.cons-list li::before { content: '✗'; color: var(--red); font-weight: 700; }

/* === GAMES TABLE === */
.games-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.games-table thead { background: var(--bg-accent); }

.games-table th {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.games-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-top: 1px solid var(--border);
}

.games-table tr:hover td { background: rgba(255,255,255,0.02); }

/* === PROMO BANNER === */
.promo-banner {
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(124,58,237,0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.promo-banner h3 {
  font-size: 20px;
  font-weight: 700;
}

.promo-banner p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 4px;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-disclaimer {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === 18+ BADGE === */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--red);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  color: var(--red);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .casino-card {
    grid-template-columns: 56px 1fr;
  }
  .casino-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-header {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }
  .mobile-toggle { display: block; }

  .hero { min-height: auto; padding: 100px 24px 40px; }
  .hero-stats { gap: 24px; }
  .hero-stat-value { font-size: 22px; }

  .casinos-grid { gap: 16px; }
  .casino-card { padding: 20px; gap: 16px; }
  .casino-rank { width: 44px; height: 44px; font-size: 18px; border-radius: 10px; }

  .pros-cons { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .features-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .section-title { font-size: 24px; }

  .promo-banner { flex-direction: column; text-align: center; }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.animate-in:nth-child(1) { animation-delay: 0.05s; }
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.15s; }
.animate-in:nth-child(4) { animation-delay: 0.2s; }
.animate-in:nth-child(5) { animation-delay: 0.25s; }

/* === FILTER PILLS === */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover, .filter-pill.active {
  color: var(--gold);
  border-color: var(--gold-dark);
  background: rgba(212,168,67,0.08);
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 13px;
  color: var(--green);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}
