/*
 * ============================================================================
 * AGGRESSIVE CASINO — Parametrized CSS Base Template
 * ============================================================================
 *
 * High-saturation conversion machine: near-black canvas, saturated red,
 * electric yellow, neon glow, condensed display type, sticky CTA energy.
 * Built for paid-traffic landings and impulse sign-up flows.
 *
 * Use case: hard-sell casino landings, welcome-bonus pages, paid-campaign
 * funnels, urgency-driven promo pages.
 *
 * CUSTOMIZATION — Override on :root per satellite:
 *
 *   --brand-accent         Saturated red (default: #e10b1f)
 *   --brand-accent-2       Electric yellow (default: #ffce00)
 *   --brand-bg-0           Near-black (default: #0a0a0a)
 *   --brand-bg-1           Surface 1 (default: #141416)
 *   --brand-font-display   Condensed display (default: 'Roboto Condensed')
 *   --brand-font-body      Body (default: 'Inter')
 *
 * FONTS — Load via <link>:
 *   - Roboto Condensed (700;800;900)
 *   - Inter (400;500;600;700;800)
 *   - Optional Bebas Neue for marquee
 * ============================================================================
 */

:root {
  --brand-accent: #e10b1f;
  --brand-accent-hi: #ff2235;
  --brand-accent-2: #ffce00;
  --brand-accent-2-hi: #ffe04a;
  --brand-bg-0: #0a0a0a;
  --brand-bg-1: #141416;
  --brand-bg-2: #1d1d20;
  --brand-bg-3: #2a2a2e;
  --brand-font-display: 'Roboto Condensed';
  --brand-font-body: 'Inter';

  /* Internal aliases */
  --bg-0: var(--brand-bg-0);
  --bg-1: var(--brand-bg-1);
  --bg-2: var(--brand-bg-2);
  --bg-3: var(--brand-bg-3);
  --accent-1: var(--brand-accent);
  --accent-2: var(--brand-accent-2);
  --accent-hover: var(--brand-accent-hi);
  --accent-2-hover: var(--brand-accent-2-hi);
  --accent-dim: rgba(225, 11, 31, 0.14);
  --accent-2-dim: rgba(255, 206, 0, 0.14);
  --accent-glow: rgba(225, 11, 31, 0.45);
  --accent-2-glow: rgba(255, 206, 0, 0.45);

  /* WCAG-AAA body text on #0a0a0a (~9:1) */
  --text-0: #ffffff;
  --text-1: #d4d6db;   /* clears 9:1 on #0a0a0a */
  --text-2: #8a8d96;   /* micro only */

  --border: rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 206, 0, 0.4);

  --radius: 8px;
  --radius-sm: 4px;
  --radius-pill: 100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: var(--brand-font-display), 'Arial Narrow', sans-serif;
  --font-body: var(--brand-font-body), system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-1);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
/* Radial neon halo on body */
body::before {
  content: ""; position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, var(--accent-dim), transparent 70%),
    radial-gradient(ellipse 50% 30% at 80% 100%, var(--accent-2-dim), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.25s var(--ease), text-shadow 0.25s var(--ease);
}
a:hover {
  color: var(--accent-2-hover);
  text-shadow: 0 0 8px var(--accent-2-glow);
}
img { display: block; max-width: 100%; height: auto; }

/* === Layout === */
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }

/* === TOPBAR — bold black bar with red underline === */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--accent-1);
  padding: 14px 0;
  box-shadow: 0 4px 28px rgba(225, 11, 31, 0.18);
}
.topbar .container {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-0);
  line-height: 1;
}
.brand-mark a { color: inherit; display: inline-flex; align-items: center; }
.brand-mark img { height: 40px; width: auto; display: block; }
.brand-mark .accent { color: var(--accent-1); }

.nav { display: flex; gap: 2px; flex: 1; flex-wrap: wrap; }
.nav a {
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-1);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
}
.nav a:hover {
  color: var(--text-0);
  background: var(--accent-dim);
  text-shadow: none;
}
.nav a[aria-current=page] {
  color: var(--bg-0);
  background: var(--accent-2);
  text-shadow: none;
}

/* === Buttons — neon pulse === */
.btn, .cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.btn-primary, .cta {
  background: var(--accent-2);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 var(--accent-2-glow), 0 6px 20px rgba(255, 206, 0, 0.35);
  animation: pulse-yellow 2.4s var(--ease) infinite;
}
.btn-primary:hover, .cta:hover {
  background: var(--accent-2-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px var(--accent-2-glow), 0 8px 28px rgba(255, 206, 0, 0.5);
  color: #0a0a0a;
}
.btn-primary:active, .cta:active { transform: scale(0.97); }

.btn-secondary {
  background: transparent;
  color: #ff4d4d;
  border-color: #ff4d4d;
}
.btn-secondary:hover {
  background: var(--accent-1);
  color: var(--text-0);
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn:focus-visible, .cta:focus-visible { outline: 3px solid var(--accent-2-hover); outline-offset: 3px; }

@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-2-glow), 0 6px 20px rgba(255, 206, 0, 0.35); }
  50% { box-shadow: 0 0 0 8px transparent, 0 8px 28px rgba(255, 206, 0, 0.5); }
}

/* === HERO — full-bleed glow === */
.hero, .hero--diagonal {
  position: relative; overflow: hidden;
  padding: 96px 0 112px;
  min-height: min(560px, 72vh);
}
/* Boxed variant: hero is exactly content-block width, not full-bleed. */
.hero--boxed { max-width: var(--container-max, 1200px); margin: 24px auto; border-radius: var(--radius, 16px); }
.hero::before, .hero--diagonal::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 70% 50%, var(--accent-dim), transparent 70%),
    linear-gradient(160deg, var(--bg-0) 30%, #160606 100%);
  z-index: 0;
}
.hero::after, .hero--diagonal::after {
  content: ""; position: absolute;
  top: -30%; right: -10%; width: 60%; height: 160%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(70px);
  z-index: 0;
}
.hero-art {
  position: absolute; top: 0; bottom: 0; right: 0;
  width: 72%; z-index: 1;
  pointer-events: none;
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
  opacity: 1;
}
.hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right,
    var(--bg-0) 0%,
    var(--bg-0) 14%,
    rgba(10, 10, 10, 0.85) 34%,
    rgba(10, 10, 10, 0.35) 60%,
    transparent 85%);
  pointer-events: none;
}

.hero-body { position: relative; z-index: 2; max-width: 600px; }

.eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 7px 18px;
  background: var(--accent-2-dim);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.hero-body h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-0);
  margin-bottom: 22px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.hero-body h1 .accent { color: var(--accent-1); }
.hero-body h1 .highlight {
  color: var(--accent-2);
  text-shadow: 0 0 32px var(--accent-2-glow);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-1);
  max-width: 48ch;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Big-number stat strip */
.stat-strip { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.stat-chip {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 22px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-1);
  border-radius: var(--radius-sm);
  min-width: 130px;
}
.stat-chip strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--accent-2);
  line-height: 1;
}
.stat-chip span {
  font-size: 0.68rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* === Content === */
main { padding: 50px 0 80px; position: relative; z-index: 1; }
section { margin: 40px auto; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-0);
  letter-spacing: -0.005em;
  margin: 48px 0 20px;
  line-height: 1.05;
}
h2 .accent { color: var(--accent-1); }
h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-0);
  letter-spacing: 0.01em;
  margin: 28px 0 10px;
}

p { margin-bottom: 1em; max-width: 65ch; }

/* === Cards === */
.card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all 0.3s var(--ease);
}
.card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
  box-shadow: 0 14px 40px rgba(225, 11, 31, 0.18);
}
.card:hover::before { opacity: 1; }
.card-image {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover;
}
.card-body { padding: 22px 24px; }
.card-body h3 { margin-top: 0; }
.card-body p { font-size: 0.92rem; color: var(--text-1); margin-bottom: 14px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 36px 0;
}

/* === Offer cards — promo tiles === */
.offer-card {
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.offer-card .badge {
  display: inline-block;
  background: var(--accent-1);
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.offer-card .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent-2);
  line-height: 1;
  text-shadow: 0 0 24px var(--accent-2-glow);
}

/* === Tables === */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-1);
  color: var(--text-1);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 28px 0;
  font-size: 0.92rem;
  border: 1px solid var(--border);
}
thead { background: var(--bg-2); }
th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  border-bottom: 2px solid var(--accent-1);
}
td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-0);
  vertical-align: top;
}
tbody tr { transition: background 0.25s var(--ease); }
tbody tr:hover { background: var(--accent-dim); }
tbody tr:last-child td { border-bottom: none; }
table a { color: var(--accent-2); font-weight: 700; }

/* === Sticky CTA bar === */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  background: linear-gradient(90deg, var(--accent-1) 0%, #b00917 100%);
  padding: 12px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 -8px 28px rgba(225, 11, 31, 0.4);
}
.sticky-cta p {
  margin: 0; color: var(--text-0); font-weight: 700;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
}
.sticky-cta .btn-primary { animation: none; padding: 10px 22px; font-size: 0.88rem; }

/* === Footer === */
.footer, footer {
  border-top: 2px solid var(--accent-1);
  padding: 48px 0 32px;
  margin-top: 70px;
  background: #050505;
  position: relative;
  z-index: 1;
}
.footer .container, footer .container {
  display: flex; flex-wrap: wrap; gap: 18px;
  justify-content: space-between;
  font-size: 0.85rem; color: var(--text-2);
}
.footer a, footer a { color: var(--text-1); font-weight: 600; }
.footer a:hover, footer a:hover { color: var(--accent-2); }

/* === Responsive === */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .topbar .container { gap: 10px; }
  .nav a { padding: 6px 10px; font-size: 0.78rem; }
  .hero, .hero--diagonal { padding: 56px 0 72px; min-height: auto; overflow: hidden; }
  .hero-body h1 { font-size: 2.2rem; }
  .hero-art { width: 58%; opacity: 0.45; right: -10%; }
  /* No horizontal page scroll: wide tables scroll INSIDE themselves, never the page. */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; white-space: nowrap; }
  .pillars { grid-template-columns: 1fr; }
  .stat-chip { min-width: 100px; padding: 12px 14px; }
  .stat-chip strong { font-size: 1.4rem; }
  .offer-card .amount { font-size: 2rem; }
  th, td { padding: 10px 12px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .topbar { padding: 10px 0; }
  .brand-mark { font-size: 1.3rem; }
  h2 { font-size: 1.7rem; }
  .sticky-cta { flex-direction: column; padding: 10px 14px; }
  .sticky-cta p { text-align: center; font-size: 0.85rem; }
}

/* === Motion === */
@media (prefers-reduced-motion: reduce) {
  .btn-primary, .cta { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  @keyframes slam-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .hero-body { animation: slam-in 0.6s var(--ease) both; }
  .stat-chip:nth-child(1) { animation: slam-in 0.5s 0.1s var(--ease) both; }
  .stat-chip:nth-child(2) { animation: slam-in 0.5s 0.2s var(--ease) both; }
  .stat-chip:nth-child(3) { animation: slam-in 0.5s 0.3s var(--ease) both; }
}

/* === Utilities === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-accent { color: var(--accent-1); }
.text-highlight { color: var(--accent-2); }
.text-muted { color: var(--text-2); font-size: 0.85rem; }

/* === Scroll-reveal (SSR-safe: visible by default, JS opts in) === */
/* Default (no-JS / crawler / OG snapshot / screenshot / pre-JS) = fully visible. */
.fade-in-up, .reveal { opacity: 1; transform: none; }
/* Hidden start state applies ONLY after JS adds .js-anim to <html>. */
html.js-anim .fade-in-up, html.js-anim .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
html.js-anim .fade-in-up.visible, html.js-anim .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .fade-in-up, html.js-anim .reveal { opacity: 1; transform: none; transition: none; }
}
/* Reveal JS MUST run `document.documentElement.classList.add('js-anim')` BEFORE
   wiring the IntersectionObserver. NEVER ship .fade-in-up defaulting to opacity:0. */


/* ============================================================================
 * SATELLITE-SPECIFIC STYLES — lev-kc-review
 * Appended AFTER the base template. Brand overrides + component styles.
 * ============================================================================
 */

/* --- Hero override for 85vh min-height --- */
.hero.hero-review { min-height: 85vh; }
@media (max-width: 768px) {
  .hero.hero-review { min-height: auto; padding: 60px 0 80px; }
}

/* --- Hero CTA row --- */
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: 2px solid var(--text-2);
  background: transparent;
  color: var(--text-0);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: var(--accent-2-dim);
  text-shadow: none;
}

/* --- Intro lede card --- */
.intro-lede {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-1);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 36px 0;
}
.intro-lede p {
  color: var(--text-1);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 65ch;
}
@media (max-width: 480px) {
  .intro-lede { padding: 22px 18px; }
}

/* --- Section spacing --- */
.section-block {
  padding: 40px 0;
}
.section-block h2:first-child {
  margin-top: 0;
}

/* --- Registration timeline --- */
.timeline {
  display: flex; gap: 0; align-items: flex-start;
  margin: 32px 0;
  position: relative;
}
.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.timeline-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--accent-1);
  z-index: 0;
}
.timeline-step:last-child::before { display: none; }
.step-number {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-1);
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px var(--accent-glow);
  margin-bottom: 14px;
}
.timeline-step h3 {
  font-size: 1rem;
  margin: 0 0 6px;
}
.timeline-step p {
  font-size: 0.88rem;
  color: var(--text-2);
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .timeline { flex-direction: column; gap: 28px; }
  .timeline-step { text-align: left; padding: 0 0 0 68px; }
  .timeline-step::before {
    top: 48px; left: 24px; right: auto;
    width: 2px; height: calc(100% + 4px);
  }
  .step-number {
    position: absolute; left: 0; top: 0;
  }
  .timeline-step p { margin: 0; }
}

/* --- Feature grid (lichnyj-kabinet) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.feature-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(225, 11, 31, 0.12);
}
.feature-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  color: var(--accent-2);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.feature-card h3 { margin-top: 0; font-size: 1.1rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-2); margin: 0; }

/* --- Verification requirements list --- */
.requirements-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 24px 0;
}
.requirements-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.requirements-list li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--text-1);
  font-size: 0.95rem;
}
.requirements-list li:last-child { border-bottom: none; }
.requirements-list li::before {
  /* CSS content takes a CSS escape, never an HTML entity ("&#..." renders literally) */
  content: "\2713";
  position: absolute;
  left: 0; top: 12px;
  color: var(--accent-2);
  font-weight: 900;
  font-size: 1.1rem;
}

/* --- Bonus cards grid --- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.bonus-card {
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
  box-shadow: 0 14px 40px rgba(225, 11, 31, 0.15);
}
.bonus-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}
.bonus-body {
  padding: 24px 26px;
}
.bonus-body .badge {
  display: inline-block;
  background: var(--accent-1);
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.bonus-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-2);
  line-height: 1;
  text-shadow: 0 0 24px var(--accent-2-glow);
  margin-bottom: 10px;
}
.bonus-body p {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.bonus-conditions {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
}
.bonus-conditions li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--text-1);
}
.bonus-conditions li::before {
  content: "\2022";
  color: var(--accent-1);
  margin-right: 8px;
  font-weight: 900;
}

/* --- Category cards (katalog-igr) --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.category-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s var(--ease);
  padding: 0;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
  box-shadow: 0 12px 36px rgba(225, 11, 31, 0.15);
}
.category-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.category-thumb .cat-icon {
  font-size: 3rem;
  position: relative;
  z-index: 1;
}
.category-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}
.category-card-body {
  padding: 16px 14px;
}
.category-card-body h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}
.category-card-body p {
  font-size: 0.8rem;
  color: var(--text-2);
  margin: 0;
}

/* --- Slot cards grid --- */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.slot-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.slot-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
  box-shadow: 0 14px 40px rgba(225, 11, 31, 0.15);
}
.slot-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.slot-card-body { padding: 18px 20px; }
.slot-card-body h3 { margin-top: 0; font-size: 1.05rem; }
.slot-provider {
  font-size: 0.78rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 8px;
}
.rtp-badge {
  display: inline-block;
  background: var(--accent-2-dim);
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-hi);
  margin-bottom: 10px;
}
.slot-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.slot-cta-row .btn { padding: 10px 18px; font-size: 0.82rem; }

/* --- Live casino items --- */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.live-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s var(--ease);
}
.live-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(225, 11, 31, 0.12);
}
.live-card h3 { margin-top: 0; }
.live-card p { font-size: 0.9rem; color: var(--text-2); }

/* --- Deposit / withdrawal steps --- */
.steps-row {
  display: flex;
  gap: 18px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 200px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.step-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}
.step-card .step-number {
  margin: 0 auto 14px;
}
.step-card h3 { margin-top: 0; font-size: 1rem; }
.step-card p { font-size: 0.88rem; color: var(--text-2); margin: 0 auto; }

/* --- Info-box (withdrawal timing, etc.) --- */
.info-box {
  background: var(--bg-1);
  border: 1px solid var(--border-hi);
  border-left: 4px solid var(--accent-2);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 24px 0;
}
.info-box p { color: var(--text-1); margin-bottom: 0.6em; }
.info-box p:last-child { margin-bottom: 0; }

/* --- Zebra-striped table override --- */
.table-zebra tbody tr:nth-child(even) {
  background: var(--bg-2);
}

/* --- Mobile features list --- */
.mobile-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.mobile-features li {
  padding: 14px 18px 14px 40px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  color: var(--text-1);
  font-size: 0.95rem;
}
.mobile-features li::before {
  content: "\2713";
  position: absolute;
  left: 14px; top: 14px;
  color: var(--accent-2);
  font-weight: 900;
}

/* --- SEO outro --- */
.seo-text {
  padding: 40px 0;
}
.seo-text h3 {
  margin-top: 32px;
}
.seo-text p {
  color: var(--text-1);
  line-height: 1.7;
}

/* --- FAQ accordion --- */
.faq-list {
  margin: 28px 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  transition: color 0.25s var(--ease);
  text-transform: none;
  letter-spacing: 0;
}
.faq-question:hover {
  color: var(--accent-2);
}
.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent-2);
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-left: 14px;
  transition: all 0.3s var(--ease);
}
.faq-item.open .faq-toggle {
  background: var(--accent-2);
  color: var(--bg-0);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 0 20px;
}
.faq-answer p {
  color: var(--text-1);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.review-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s var(--ease);
}
.review-card:hover {
  border-color: var(--border-hi);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-0);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-0);
  font-size: 0.95rem;
}
.review-date {
  font-size: 0.78rem;
  color: var(--text-2);
}
.review-rating {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.star-filled {
  color: var(--accent-2);
  font-size: 1.1rem;
}
.star-empty {
  color: var(--bg-3);
  font-size: 1.1rem;
}
.review-score {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--accent-2);
  font-size: 0.95rem;
  margin-left: 4px;
}
.review-text {
  color: var(--text-1);
  font-size: 0.92rem;
  line-height: 1.6;
}
.review-text p { margin-bottom: 0; }

/* --- Responsible gambling card --- */
.responsible-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 28px 0;
}
.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-1);
  color: var(--text-0);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--accent-glow);
}
.responsible-text p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.6;
}
.responsible-text a {
  color: var(--accent-2);
}
@media (max-width: 480px) {
  .responsible-card { flex-direction: column; padding: 22px 18px; }
}

/* --- Footer CTA banner --- */
.footer-cta-banner {
  background: linear-gradient(90deg, var(--accent-1) 0%, #b00917 100%);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-cta-banner p {
  margin: 0;
  color: var(--text-0);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-cta-banner .cta {
  animation: none;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-legal {
  color: var(--text-2);
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 65ch;
}
.footer-copyright {
  color: var(--text-2);
  font-size: 0.78rem;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

/* --- Sticky mobile CTA (mobile only) --- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--accent-1) 0%, #b00917 100%);
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 -6px 24px rgba(225, 11, 31, 0.5);
}
.sticky-mobile-cta .cta {
  width: 100%;
  justify-content: center;
  animation: none;
  padding: 14px 24px;
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  /* Pad body bottom for sticky bar */
  body { padding-bottom: 64px; }
}

/* --- Misc / section utility --- */
.section-cta {
  margin-top: 24px;
}

/* === Mobile burger nav (checkbox hack — works without JS) === */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 9px 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--text-0); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .topbar .container { justify-content: space-between; }
  .nav-burger { display: flex; margin-left: 4px; }
  .topbar .nav { display: none; }
  .nav-toggle:checked ~ .nav {
    display: flex; flex-direction: column;
    flex: 1 1 100%; order: 10;
    gap: 4px; padding: 12px 0 4px; margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-toggle:checked ~ .nav a { padding: 12px 10px; font-size: 0.95rem; }
  .topbar .cta { padding: 10px 18px; font-size: 0.9rem; }
}
