/* ═══════════════════════════════════════════════
   CasinoOnlineGo — style.css
   Crypto Gold Dark Theme
   ═══════════════════════════════════════════════ */

/* ── Base ── */
a { color: inherit; }
ul { list-style: none; padding: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Section layout ── */
section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Typography utilities ── */
.text-gold { color: var(--accent-gold); }
.mono { font-family: var(--font-mono); }

/* ── Alternating section backgrounds ── */
#why-crypto, #payments, #providers { background: var(--bg-primary); }
#casinos, #how-we-rate, #bonuses, #faq { background: var(--bg-deep); }

/* ════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════ */
.site-header.scrolled { border-color: var(--border-subtle); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--accent-gold);
  color: #0a0e1a;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-header-cta:hover { background: var(--accent-gold-hover); box-shadow: 0 0 20px rgba(240,185,11,0.3); }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile overlay ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,8,15,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-overlay ul { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--accent-gold); }
.btn-mobile-cta {
  margin-top: 1rem;
  padding: 0.875rem 2.5rem;
  background: var(--accent-gold);
  color: #0a0e1a;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-secondary);
  padding: 0.5rem;
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(240,185,11,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(240,185,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(240,185,11,0.08);
  border: 1px solid rgba(240,185,11,0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: var(--accent-gold);
  color: #06080f;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--accent-gold-hover); box-shadow: 0 0 32px rgba(240,185,11,0.35); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text-primary); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-default);
}

/* ════════════════════════════════════════════════
   CASINO FILTERS
   ════════════════════════════════════════════════ */
.casino-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.125rem;
  border: 1px solid var(--border-default);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--border-hover); color: var(--text-primary); }
.filter-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #06080f;
  font-weight: 700;
}

/* ════════════════════════════════════════════════
   CASINO CARDS
   ════════════════════════════════════════════════ */
.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.casino-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.casino-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.casino-card[data-casino="stake"] { border-left: 3px solid var(--accent-gold); }
.casino-card[data-casino="bc-game"] { border-left: 3px solid #4ade80; }
.casino-card[data-casino="roobet"] { border-left: 3px solid #fb923c; }
.casino-card:not([data-casino="stake"]):not([data-casino="bc-game"]):not([data-casino="roobet"]) { border-left: 3px solid var(--border-subtle); }

.casino-card.hidden { display: none; }

.card-rank {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.casino-card:nth-child(1) .card-rank { color: var(--accent-gold); }
.casino-card:nth-child(2) .card-rank { color: #94a3b8; }
.casino-card:nth-child(3) .card-rank { color: #cd7f32; }

.card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-editors { background: rgba(240,185,11,0.15); color: var(--accent-gold); border: 1px solid rgba(240,185,11,0.3); }
.badge-variety { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.badge-nokyc { background: rgba(59,130,246,0.12); color: #60a5fa; border: 1px solid rgba(59,130,246,0.25); }
.badge-sports { background: rgba(251,146,60,0.12); color: #fb923c; border: 1px solid rgba(251,146,60,0.25); }
.badge-rakeback { background: rgba(0,214,143,0.12); color: var(--accent-green); border: 1px solid rgba(0,214,143,0.25); }
.badge-bonus { background: rgba(240,185,11,0.12); color: var(--accent-gold); border: 1px solid rgba(240,185,11,0.2); }
.badge-pvp { background: rgba(167,139,250,0.12); color: #a78bfa; border: 1px solid rgba(167,139,250,0.25); }
.badge-new { background: rgba(244,114,182,0.12); color: #f472b6; border: 1px solid rgba(244,114,182,0.25); }

.card-main {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 1.5rem 1.25rem;
}
.card-logo-wrap {
  flex-shrink: 0;
  width: 140px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 0.5rem;
}
.card-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }

.card-info { flex: 1; min-width: 0; }
.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.card-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.card-rating {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}
.rating-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}
.rating-max {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-bonus {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.bonus-label { color: var(--text-muted); margin-right: 0.35rem; }
.bonus-value { color: var(--accent-gold); font-weight: 600; }

.card-features {
  display: flex;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.875rem;
}
.card-features li { white-space: nowrap; }

.card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.meta-item { display: flex; align-items: center; gap: 0.3rem; }
.meta-icon { font-size: 0.8rem; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  background: rgba(0,0,0,0.15);
  border-top: 1px solid var(--border-default);
  flex-wrap: wrap;
}

.card-payments {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.card-payments img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0.8) saturate(0.7);
  transition: filter 0.2s;
  border-radius: 4px;
}
.card-payments img:hover { filter: brightness(1) saturate(1); }
.payments-more {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.15rem 0.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

.card-actions { display: flex; gap: 0.625rem; align-items: center; }

.btn-play {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.375rem;
  background: var(--accent-gold);
  color: #06080f;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-play:hover { background: var(--accent-gold-hover); box-shadow: 0 0 18px rgba(240,185,11,0.3); }
.btn-play.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }

.btn-review {
  padding: 0.625rem 1rem;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-review:hover { border-color: var(--border-hover); color: var(--text-primary); }

/* ════════════════════════════════════════════════
   BENEFITS BENTO
   ════════════════════════════════════════════════ */
.benefits-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s;
}
.bento-card:hover { border-color: var(--border-hover); }
.bento-lg { grid-column: span 2; }
.bento-icon { font-size: 2rem; margin-bottom: 1rem; }
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.bento-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }
.bento-stat {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-default);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.bento-stat .mono { color: var(--accent-gold); font-size: 1rem; margin-right: 0.35rem; }

/* ════════════════════════════════════════════════
   HOW WE RATE
   ════════════════════════════════════════════════ */
.rating-criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.criterion {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.criterion:hover { border-color: var(--border-hover); }
.criterion-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.criterion-icon { font-size: 1.5rem; flex-shrink: 0; }
.criterion-meta { flex: 1; }
.criterion-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.criterion-weight {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.criterion-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
}
.criterion-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.875rem;
}
.criterion-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-gold), #fcd34d);
  border-radius: 2px;
  transition: width 1s ease 0.3s;
}
.criterion.visible .criterion-fill { width: var(--fill); }
.criterion-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }

/* ════════════════════════════════════════════════
   PAYMENTS TABLE
   ════════════════════════════════════════════════ */
.payments-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  margin-bottom: 2.5rem;
}
.payments-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 600px;
}
.payments-table thead {
  position: sticky;
  top: 72px;
  z-index: 10;
  background: var(--bg-secondary);
}
.payments-table th {
  padding: 0.875rem 1rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-default);
}
.payments-table th:first-child { text-align: left; }
.payments-table th img { display: block; margin: 0 auto 4px; }
.payments-table td { padding: 0.75rem 1rem; text-align: center; border-bottom: 1px solid var(--border-default); }
.payments-table tr:last-child td { border-bottom: none; }
.payments-table tbody tr { background: var(--bg-card); transition: background 0.2s; }
.payments-table tbody tr:hover { background: var(--bg-card-hover); }
.tc-name {
  text-align: left !important;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}
.tc-name img { object-fit: contain; }
.tc-yes { color: var(--accent-green); font-weight: 700; font-size: 1rem; }
.tc-no { color: var(--text-muted); font-size: 0.875rem; }
.tc-min { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-secondary); }

.all-payments { }
.all-payments-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
}
.payments-icons-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.payments-icons-row img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: grayscale(0.4) brightness(0.7);
  transition: filter 0.2s, transform 0.2s;
}
.payments-icons-row img:hover { filter: grayscale(0) brightness(1); transform: scale(1.15); }

/* ════════════════════════════════════════════════
   BONUSES
   ════════════════════════════════════════════════ */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bonus-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bonus-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-glow); }
.bonus-featured {
  border-color: rgba(240,185,11,0.3);
  background: linear-gradient(160deg, rgba(240,185,11,0.06) 0%, var(--bg-card) 60%);
}
.bonus-rank {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.bonus-hot {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.75rem;
  background: var(--accent-gold);
  color: #06080f;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 100px;
  white-space: nowrap;
}
.bonus-card img { object-fit: contain; max-height: 40px; }
.bonus-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.bonus-offer {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
}
.bonus-detail { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }
.bonus-terms {
  display: flex;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-default);
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════════════
   PROVIDERS MARQUEE
   ════════════════════════════════════════════════ */
.providers-marquee-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.providers-marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.marquee-track img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.5);
  transition: filter 0.3s;
  flex-shrink: 0;
}
.marquee-track img:hover { filter: grayscale(0) brightness(1); }

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s, background 0.2s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-gold);
  color: #06080f;
  border-color: var(--accent-gold);
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer p strong { color: var(--text-primary); }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-default);
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 3rem clamp(1rem,4vw,2rem) 2rem; }
.footer-top {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; max-width: 280px; }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); }
.footer-payments { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-payments img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0.5) grayscale(0.5); transition: filter 0.2s; }
.footer-payments img:hover { filter: brightness(0.8) grayscale(0); }
.footer-nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-nav-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-nav-col a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--accent-gold); }
.footer-disclaimer {
  border-top: 1px solid var(--border-default);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-disclaimer p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-disclaimer a { color: var(--text-secondary); text-decoration: underline; }
.footer-disclaimer a:hover { color: var(--text-primary); }

/* ── Criterion fill level classes (replaces inline --fill vars) ── */
.fill-95 { --fill: 95%; }
.fill-92 { --fill: 92%; }
.fill-88 { --fill: 88%; }
.fill-96 { --fill: 96%; }
.fill-85 { --fill: 85%; }
.fill-91 { --fill: 91%; }

/* ── E-E-A-T editorial note ── */
.editorial-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(240,185,11,0.05);
  border: 1px solid rgba(240,185,11,0.15);
  border-radius: var(--radius-md);
}
.editorial-inner {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.editorial-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.editorial-inner strong { color: var(--text-primary); }
.editorial-meta {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
}
.editorial-meta a { color: var(--accent-gold); text-decoration: none; }
.editorial-meta a:hover { text-decoration: underline; }

/* ── noscript fallback ── */
.noscript-links {
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ════════════════════════════════════════════════
   SCROLL TO TOP
   ════════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 997;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}
.scroll-top-btn:hover { background: var(--accent-gold); color: #06080f; border-color: var(--accent-gold); }
.scroll-top-btn[hidden] { display: none; }

/* ════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transition: opacity 0.65s ease; will-change: opacity; }
  .reveal.visible { opacity: 1; will-change: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; }
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-criteria { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .btn-header-cta { display: none; }
  .burger-btn { display: flex; }

  .card-main { flex-direction: column; gap: 1rem; padding: 2.5rem 1rem 1rem; }
  .card-logo-wrap { width: 100%; height: 48px; }
  .card-title-row { gap: 0.5rem; }
  .card-footer { flex-direction: column; align-items: flex-start; }
  .card-actions { width: 100%; }
  .btn-play { flex: 1; justify-content: center; }
  .btn-review { flex: 1; text-align: center; }

  .benefits-bento { grid-template-columns: 1fr; }
  .bento-lg { grid-column: span 1; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-nav { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .casino-filters { gap: 0.375rem; }
  .filter-btn { padding: 0.4rem 0.875rem; font-size: 0.8rem; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .card-features { gap: 0.25rem 0.75rem; }
}
