/* ============================================================
   BetBoom Review — style.css
   Brand: #FFE000 (yellow) on #0a0a12 (dark)
   ============================================================ */

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

:root {
  --bg-main:    #0a0a12;
  --bg-surface: #12121e;
  --bg-card:    #1a1a2c;
  --bg-card2:   #1f1f30;
  --accent:     #ffe000;
  --accent-dark:#cc9a00;
  --accent-glow:rgba(255,224,0,0.15);
  --green:      #00e676;
  --text:       #ffffff;
  --text-muted: #8888a8;
  --border:     rgba(255,224,0,0.12);
  --border-dim: rgba(255,255,255,0.07);
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-main);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a12;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #fff176;
  border-color: #fff176;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,224,0,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,18,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-bb   { color: var(--text); }
.logo-boom { color: var(--accent); }
.logo-tag  {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 4px;
  align-self: center;
}
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.header-ctas { display: flex; gap: 10px; flex-shrink: 0; }
.header-ctas .btn { padding: 8px 18px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- HERO --- */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,224,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(255,224,0,0.04) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.3);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.3); }
}
.hero-h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Promo code hero */
.promo-code-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.promo-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.promo-box-hero {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.promo-code {
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--accent);
  background: rgba(255,224,0,0.08);
}
.copy-btn {
  padding: 10px 18px;
  background: var(--accent);
  color: #0a0a12;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.copy-btn:hover { background: #fff176; }
.promo-hint { font-size: 0.85rem; color: var(--text-muted); }
.promo-hint strong { color: var(--accent); }

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.trust-item svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --- RATING SECTION --- */
.rating-section { padding: 40px 0 60px; }
.rating-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: center;
}
.rating-left { text-align: center; }
.rating-score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.rating-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin: 6px 0 4px;
}
.rating-label { font-size: 0.8rem; color: var(--text-muted); }

.rating-grid { display: flex; flex-direction: column; gap: 12px; }
.rating-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ri-label { font-size: 0.85rem; color: var(--text-muted); width: 160px; flex-shrink: 0; }
.ri-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.ri-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  border-radius: 3px;
  transition: width 1s ease;
}
.ri-val { font-size: 0.85rem; font-weight: 700; color: var(--accent); width: 28px; text-align: right; }

.rating-cta { text-align: center; }
.rating-disclaimer { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; }

/* --- SECTION BASE --- */
.section { padding: 64px 0; }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid rgba(255,224,0,0.3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* --- BONUS SECTION --- */
.bonus-section { background: var(--bg-surface); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--border); }
.bonus-main { border-color: var(--border); }
.bonus-ribbon {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--accent);
  color: #0a0a12;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
}
.bonus-icon { font-size: 2.2rem; margin-bottom: 12px; }
.bonus-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.bonus-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}
.bonus-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

.promo-code-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,224,0,0.06);
  border: 1px dashed rgba(255,224,0,0.4);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 16px;
  cursor: pointer;
}
.pc-label { font-size: 0.75rem; color: var(--text-muted); }
.pc-code {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--accent);
  flex: 1;
}
.pc-copy { background: none; border: none; cursor: pointer; font-size: 1rem; }

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.bonus-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* VIP */
.vip-section {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 28px;
}
.vip-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.vip-levels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.vip-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.vip-badge {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vip-level span:last-child { font-size: 0.78rem; color: var(--text-muted); }
.standard { background: rgba(136,136,168,0.15); color: #8888a8; }
.major    { background: rgba(100,181,246,0.15); color: #64b5f6; }
.elite    { background: rgba(0,230,118,0.15);   color: #00e676; }
.luxury   { background: rgba(255,183,77,0.15);  color: #ffb74d; }
.majestic { background: rgba(255,224,0,0.18);   color: var(--accent); }

/* --- GAMES SECTION --- */
.games-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border-dim);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--accent-glow);
  border-color: rgba(255,224,0,0.4);
  color: var(--accent);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.game-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  transition: transform var(--transition), border-color var(--transition);
}
.game-card:hover { transform: translateY(-4px); border-color: var(--border); }
.game-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.game-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.game-card:hover .game-img-wrap img { transform: scale(1.05); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,18,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-overlay span {
  background: var(--accent);
  color: #0a0a12;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 20px;
}
.game-info {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.game-name { font-size: 0.8rem; font-weight: 600; }
.game-provider { font-size: 0.7rem; color: var(--text-muted); }

.games-footer {
  text-align: center;
  margin-bottom: 24px;
}
.games-footer p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; }

.providers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.provider-chip {
  padding: 4px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- PAYMENTS --- */
.payments-section { background: var(--bg-surface); }
.payments-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.payment-highlight { border-color: var(--border); }
.payment-icon.pix-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #00c8b4, #009f8f);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: white;
}
.payment-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.payment-details { margin-bottom: 20px; }
.pd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dim);
  font-size: 0.9rem;
}
.pd-row:last-child { border-bottom: none; }
.pd-row span { color: var(--text-muted); }
.pd-row strong { color: var(--accent); }

.payments-info { padding: 4px 0; }
.payments-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}
.step-num {
  width: 28px; height: 28px;
  background: var(--accent);
  color: #0a0a12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.info-box {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.info-box svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* --- TRUST SECTION --- */
.trust-section { background: var(--bg-main); }
.trust-verdict {
  background: linear-gradient(135deg, rgba(0,230,118,0.08), rgba(0,230,118,0.03));
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
  text-align: center;
}
.verdict-badge {
  display: inline-block;
  background: rgba(0,230,118,0.15);
  color: var(--green);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.trust-verdict p { color: var(--text-muted); font-size: 0.95rem; max-width: 640px; margin: 0 auto; }
.trust-verdict strong { color: var(--text); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.trust-card:hover { border-color: var(--border); }
.tc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.trust-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.trust-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.trust-card p strong { color: var(--text); }

/* Comparison table */
.comparison-table { }
.comparison-table h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-dim);
}
thead th {
  background: var(--bg-card);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
tbody tr:hover td { background: rgba(255,255,255,0.02); }
.highlight-col {
  background: rgba(255,224,0,0.04) !important;
  color: var(--text) !important;
}
.highlight-col strong { color: var(--accent); }

/* --- APP SECTION --- */
.app-section { background: var(--bg-surface); }
.app-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.app-text .section-tag { margin-bottom: 12px; }
.app-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.app-text p { color: var(--text-muted); margin-bottom: 20px; }
.app-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.app-features li { font-size: 0.9rem; color: var(--text-muted); }
.app-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Mockup */
.app-visual { display: flex; justify-content: center; }
.app-mockup {
  width: 220px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 28px;
  padding: 20px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,224,0,0.08);
}
.mockup-screen { display: flex; flex-direction: column; gap: 10px; }
.mock-header { font-weight: 900; font-size: 1.1rem; color: var(--accent); text-align: center; }
.mock-balance { font-size: 1.4rem; font-weight: 700; text-align: center; }
.mock-label { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: -6px; }
.mock-btn {
  background: var(--accent);
  color: #0a0a12;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.mock-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}
.mock-game {
  aspect-ratio: 3/4;
  border-radius: 6px;
  border: 1px solid var(--border-dim);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}
.mock-game::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,224,0,0.08) 0%,
    transparent 60%,
    rgba(0,230,118,0.06) 100%
  );
}

/* --- FAQ --- */
.faq-section { background: var(--bg-main); }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-a.open) { border-color: var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-arrow { color: var(--text-muted); font-size: 0.7rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a p strong { color: var(--text); }

/* --- STICKY CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(18,18,30,0.97);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-text { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sticky-brand { font-weight: 900; font-size: 1rem; color: var(--accent); }
.sticky-offer { font-size: 0.85rem; color: var(--text-muted); }
.sticky-offer strong { color: var(--text); }

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-dim);
  padding: 48px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .logo-footer { margin-bottom: 12px; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; gap: 40px; }
.fl-group { display: flex; flex-direction: column; gap: 8px; }
.fl-group h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.fl-group a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.fl-group a:hover { color: var(--accent); }

.footer-legal { border-top: 1px solid var(--border-dim); padding-top: 24px; }
.legal-badges { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.legal-badge {
  padding: 4px 12px;
  border: 1px solid var(--border-dim);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.legal-text {
  font-size: 0.75rem;
  color: #555575;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-text a { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Минимальная ширина таблицы для горизонтального скролла */
table { min-width: 520px; }

/* Touch targets — минимум 44px */
.btn { min-height: 44px; }
.tab-btn { min-height: 40px; }
.faq-q { min-height: 56px; }

/* FAQ — увеличиваем max-height чтобы длинные ответы не обрезались */
.faq-a.open { max-height: 600px; }

/* Body padding под sticky CTA — только на мобиле где она видна */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .rating-card {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
  }
  .rating-cta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .bonus-card:first-child { grid-column: 1 / -1; }
  .app-inner { grid-template-columns: 1fr 280px; gap: 32px; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  /* Header */
  .site-header { height: 56px; }
  .header-inner { height: 56px; gap: 12px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 56px; left: 0; right: 0;
    z-index: 1001;
    background: var(--bg-surface);
    padding: 16px 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-dim);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .header-ctas .btn-outline { display: none; }
  .header-ctas .btn { padding: 9px 16px; font-size: 0.82rem; }
  .logo { font-size: 1.2rem; }
  .logo-tag { display: none; }

  /* Hero */
  .hero { padding: 84px 0 52px; }
  .hero-h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .hero-sub { font-size: 0.95rem; }
  body { padding-bottom: 72px; }

  .hero-ctas {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }
  .hero-trust {
    gap: 16px;
    justify-content: center;
  }
  .trust-item { font-size: 0.78rem; }
  .promo-box-hero { max-width: 280px; width: 100%; }
  .promo-code-hero { align-items: center; }

  /* Rating */
  .rating-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 16px;
    gap: 20px;
  }
  .rating-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: center;
  }
  .rating-label { display: none; }
  .rating-grid { width: 100%; }
  .rating-item { gap: 8px; }
  .ri-label {
    width: auto;
    min-width: 0;
    flex: 1 1 100px;
    font-size: 0.8rem;
    text-align: left;
  }
  .ri-val { width: 28px; }
  .rating-cta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .rating-cta .btn { width: 100%; max-width: 280px; }

  /* Bonus */
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card:first-child { grid-column: auto; }
  .vip-levels { flex-direction: column; gap: 8px; }
  .vip-level {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-dim);
  }
  .vip-level:last-child { border-bottom: none; }
  .vip-level span:last-child { font-size: 0.82rem; }

  /* Games */
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  /* Payments */
  .payments-grid { grid-template-columns: 1fr; }
  .payment-card { max-width: 400px; margin: 0 auto 0; }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* App */
  .app-inner { grid-template-columns: 1fr; gap: 24px; }
  .app-visual { display: none; }
  .app-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .app-ctas .btn { width: 100%; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
  .site-footer { padding: 36px 0 20px; }

  /* Sticky CTA */
  .sticky-inner { gap: 10px; }
  .sticky-text { flex-direction: column; align-items: flex-start; gap: 1px; }
  .sticky-brand { font-size: 0.9rem; }
  .sticky-offer { font-size: 0.78rem; }
  .sticky-cta .btn { padding: 10px 16px; font-size: 0.85rem; flex-shrink: 0; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }

  /* Header */
  .header-ctas .btn { padding: 8px 12px; font-size: 0.78rem; }

  /* Hero */
  .hero { padding: 76px 0 44px; }
  .hero-badge { font-size: 0.72rem; padding: 5px 10px; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 24px; }
  .promo-code { font-size: 1.1rem; letter-spacing: 2px; }
  .copy-btn { font-size: 0.78rem; padding: 10px 12px; }
  .hero-trust { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .trust-item { font-size: 0.72rem; gap: 4px; }

  /* Rating */
  .rating-score { font-size: 2.8rem; }
  .rating-stars { font-size: 0.9rem; }
  .ri-label { font-size: 0.75rem; }

  /* Bonus */
  .bonus-amount { font-size: 1.5rem; }
  .vip-section { padding: 20px 16px; }

  /* Games */
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .game-name { font-size: 0.72rem; }
  .game-provider { font-size: 0.65rem; }
  .game-info { padding: 8px 10px; }
  .games-tabs { gap: 6px; }
  .tab-btn { padding: 7px 14px; font-size: 0.78rem; }

  /* Payments */
  .payment-card { max-width: 100%; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 18px; }

  /* FAQ */
  .faq-q { font-size: 0.88rem; padding: 15px 16px; }
  .faq-a p { padding: 0 16px 16px; font-size: 0.85rem; }

  /* Section header */
  .section-header h2 { font-size: 1.3rem; }
  .section-header p { font-size: 0.88rem; }

  /* Footer */
  .fl-group h4 { font-size: 0.7rem; }
  .fl-group a { font-size: 0.8rem; }
  .legal-text { font-size: 0.72rem; }

  /* Sticky CTA */
  .sticky-cta { padding: 10px 14px; padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
  .sticky-brand { font-size: 0.85rem; }
  .sticky-offer { font-size: 0.72rem; }
}

/* ---- 360px (очень узкие) ---- */
@media (max-width: 360px) {
  .hero-ctas { max-width: 100%; }
  .promo-box-hero { max-width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; justify-items: start; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .trust-grid { grid-template-columns: 1fr; }
  .rating-card { padding: 16px 12px; }
  table { min-width: 480px; }
}
