/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #6f43a6;
  --brand-dark: #4e2e7a;
  --brand-light: #9b6fd4;
  --brand-xlight: #c9a8f0;
  --brand-glow: rgba(111,67,166,0.35);
  --gold: #f0c040;
  --gold-dark: #c99b18;
  --bg-dark: #0d0a14;
  --bg-card: #17112a;
  --bg-card2: #1e1535;
  --bg-stripe: #120e20;
  --text: #ede8f7;
  --text-muted: #a898c8;
  --text-dim: #6e5f90;
  --border: rgba(111,67,166,0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Rajdhani', 'Oswald', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--brand-light); text-decoration: none; }
a:hover { color: var(--gold); }

img { display: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--bg-stripe);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--text);
  margin-bottom: 12px;
}

.section-title h2 span {
  color: var(--brand-light);
}

.section-title p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Nunito:wght@400;500;600;700&display=swap');

/* ===== TOP BONUS BANNER ===== */
.top-bonus-bar {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2a1650 40%, var(--brand) 100%);
  border-bottom: 2px solid var(--gold);
  padding: 14px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bonus-bar .tbb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-bonus-bar .tbb-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.top-bonus-bar .tbb-text strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a0a30;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,192,64,0.45);
  color: #1a0a30;
}

.btn-cta:active { transform: translateY(0); }

.btn-cta svg { flex-shrink: 0; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: rgba(13,10,20,0.97);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

/* ===== LOGO ===== */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-text .hey { color: var(--text); }
.logo-text .roller { color: var(--brand-light); }
.logo-text .dot { color: var(--gold); }

/* ===== NAVIGATION ===== */
.site-nav { display: flex; align-items: center; gap: 6px; }

.site-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(111,67,166,0.2);
}

.nav-cta-btn {
  background: var(--brand);
  color: var(--text) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
}

.nav-cta-btn:hover {
  background: var(--brand-light) !important;
  color: #fff !important;
}

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.2s;
}

/* ===== HERO ===== */
.hero {
  background: radial-gradient(ellipse at 60% 0%, rgba(111,67,166,0.25) 0%, transparent 65%),
              radial-gradient(ellipse at 5% 80%, rgba(78,46,122,0.2) 0%, transparent 55%),
              var(--bg-dark);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236f43a6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,67,166,0.2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-xlight);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 { color: var(--text); margin-bottom: 18px; }
.hero h1 span { color: var(--brand-light); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--brand);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* hero right panel */
.hero-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(111,67,166,0.3), transparent 70%);
  pointer-events: none;
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.rating-big {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 22px;
}

.rating-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.rating-stars { display: flex; flex-direction: column; gap: 6px; }
.stars { display: flex; gap: 3px; }
.stars span { font-size: 1.2rem; }
.rating-count { font-size: 0.8rem; color: var(--text-dim); }

.panel-pros { list-style: none; margin-bottom: 24px; }
.panel-pros li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(111,67,166,0.15);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.panel-pros li:last-child { border-bottom: none; }
.panel-pros li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.panel-cta { width: 100%; justify-content: center; font-size: 1.05rem; padding: 13px 28px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-items {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(111,67,166,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

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

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

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

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

.bonus-card.featured { border-color: var(--gold); }
.bonus-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }

.bonus-tag {
  display: inline-block;
  background: rgba(111,67,166,0.25);
  color: var(--brand-xlight);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.bonus-card.featured .bonus-tag {
  background: rgba(240,192,64,0.2);
  color: var(--gold);
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}

.bonus-card.featured .bonus-amount { color: var(--gold); }

.bonus-name {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bonus-detail-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.bonus-detail-list li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
}

.bonus-detail-list li span:last-child { color: var(--text); font-weight: 600; }

.btn-card {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s, transform 0.1s;
}

.btn-card:hover { background: var(--brand-light); transform: translateY(-1px); }
.btn-card.gold-btn { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #1a0a30; }
.btn-card.gold-btn:hover { background: var(--gold); }

/* ===== MID BANNER ===== */
.mid-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #3a1e72 50%, var(--brand) 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 36px 20px;
}

.mid-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mid-banner-text h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.mid-banner-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== GAMES SECTION ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.game-card:hover {
  border-color: var(--brand-light);
  transform: translateY(-4px);
}

.game-thumb {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bg-card2), rgba(111,67,166,0.15));
}

.game-info {
  padding: 14px 16px;
}

.game-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.game-provider {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.game-rtp {
  display: inline-block;
  background: rgba(111,67,166,0.2);
  color: var(--brand-xlight);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}

/* ===== INFO CARDS ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.info-card-icon {
  width: 50px; height: 50px;
  background: rgba(111,67,166,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== PAYMENT TABLE ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}

.data-table thead {
  background: var(--bg-card2);
}

.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-xlight);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.data-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(111,67,166,0.1);
  color: var(--text-muted);
  vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.data-table tr:hover td { background: rgba(111,67,166,0.06); }

.data-table td strong { color: var(--text); }

.badge-instant {
  display: inline-block;
  background: rgba(80,200,100,0.15);
  color: #5cc87a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}

.badge-fast {
  display: inline-block;
  background: rgba(240,192,64,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}

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

.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.pros-box { border: 1px solid rgba(80,200,100,0.3); }
.cons-box { border: 1px solid rgba(200,80,80,0.3); }

.pros-box h3 {
  color: #5cc87a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cons-box h3 {
  color: #e07070;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
  font-weight: 700;
}

.check-list.pros li::before { content: '✔'; color: #5cc87a; }
.check-list.cons li::before { content: '✖'; color: #e07070; }

/* ===== REVIEW ARTICLE ===== */
.review-article {
  max-width: 860px;
  margin: 0 auto;
}

.review-article h2 {
  color: var(--text);
  margin: 42px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.review-article h2:first-of-type { margin-top: 0; }

.review-article h3 {
  color: var(--brand-light);
  margin: 28px 0 10px;
}

.review-article p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.review-article ul, .review-article ol {
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.review-article ul li, .review-article ol li { margin-bottom: 6px; }

.highlight-box {
  background: rgba(111,67,166,0.12);
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.highlight-box p { color: var(--text); font-size: 1rem; margin: 0; }

/* ===== SCORE CARD ===== */
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.score-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}

.score-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.score-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.score-bar-wrap {
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  margin-top: 8px;
  overflow: hidden;
}

.score-bar {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
}

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s;
}

.faq-q:hover { background: rgba(111,67,166,0.1); }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand-light);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 700;
  line-height: 1;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 600px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== STEP BOXES ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(111,67,166,0.2);
  line-height: 1;
  margin-bottom: 14px;
}

.step-card h3 { color: var(--text); margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-text { font-size: 1.4rem; margin-bottom: 14px; display: block; }

.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-dim);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--brand-light); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 26px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,80,80,0.15);
  border: 1px solid rgba(200,80,80,0.3);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e07070;
}

.age-badge strong { font-size: 1rem; }

.gamble-text {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { max-width: 520px; }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }

  .site-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg-dark); border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 4px; z-index: 999; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 14px; border-radius: 8px; }
  .nav-toggle { display: block; }

  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

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

  .hero-stats { justify-content: center; }

  .top-bonus-bar .tbb-inner { flex-direction: column; gap: 10px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .bonus-grid, .games-grid, .info-grid, .steps-grid { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold); }
.text-brand { color: var(--brand-light); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
