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

:root {
  --brand:       #2b0a47;
  --brand-dark:  #1a0630;
  --brand-deep:  #0e0320;
  --accent:      #c84bff;
  --accent-glow: #a020f0;
  --gold:        #f5c842;
  --gold-dark:   #d4a012;
  --text:        #f0e6ff;
  --text-muted:  #b89fd4;
  --text-dim:    #7a5d99;
  --surface:     #3d1260;
  --surface2:    #4e1a78;
  --border:      #5c2a8a;
  --white:       #ffffff;
  --radius:      10px;
  --radius-lg:   18px;
  --font-main:   'Segoe UI', 'Inter', system-ui, sans-serif;
  --font-display:'Georgia', 'Times New Roman', serif;
  --shadow:      0 4px 24px rgba(200, 75, 255, 0.18);
  --shadow-lg:   0 8px 48px rgba(43, 10, 71, 0.6);
}

html { scroll-behavior: smooth; }

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

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

img { display: none !important; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--gold); }

p { margin-bottom: 1rem; color: var(--text); }

/* ========== UTILITY ========== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brand-deep);
  box-shadow: 0 4px 18px rgba(245, 200, 66, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 200, 66, 0.6);
  color: var(--brand-deep);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200, 75, 255, 0.4);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 75, 255, 0.6);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--brand-deep);
}
.btn-lg { padding: 18px 44px; font-size: 1.15rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ========== TOP BONUS BANNER (FIRST SCREEN) ========== */
.top-bonus-banner {
  background: linear-gradient(90deg, #6200a8, #2b0a47, #6200a8);
  border-bottom: 2px solid var(--gold);
  padding: 14px 20px;
  text-align: center;
}
.top-bonus-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.top-bonus-banner__text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.top-bonus-banner__text span { color: var(--gold); }

/* ========== STICKY HEADER ========== */
.site-header {
  background: linear-gradient(180deg, var(--brand-dark) 0%, rgba(26,6,48,0.96) 100%);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 16px;
}

/* ========== LOGO (SVG/CSS, no img) ========== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__hey {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-family: var(--font-display);
}
.logo__roller {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ========== NAVIGATION ========== */
.site-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--gold); background: rgba(245,200,66,0.08); }

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  padding: 80px 20px 72px;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,75,255,0.18) 0%, transparent 70%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
}
.hero__glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 40% 40% at 50% 50%, rgba(245,200,66,0.06) 0%, transparent 70%);
}
.hero__content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero__badge {
  display: inline-block;
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.35);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero__title { margin-bottom: 20px; }
.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(92,42,138,0.5);
}
.hero__stat-item { text-align: center; }
.hero__stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ========== SECTION COMMON ========== */
.section { padding: 72px 0; }
.section--alt { background: rgba(43,10,71,0.45); }
.section--dark { background: var(--brand-dark); }
.section__header { text-align: center; margin-bottom: 48px; }
.section__eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section__title { margin-bottom: 14px; }
.section__desc { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ========== MID-PAGE BONUS STRIP ========== */
.bonus-strip {
  background: linear-gradient(90deg, #4a1080 0%, #7b00c8 50%, #4a1080 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 24px 20px;
}
.bonus-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-strip__content { flex: 1; min-width: 220px; }
.bonus-strip__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.bonus-strip__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.bonus-strip__sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* ========== RATING BADGE ========== */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.12);
  border: 1px solid var(--gold-dark);
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}
.rating-badge svg { width: 18px; height: 18px; fill: var(--gold); }

/* ========== FEATURE CARDS GRID ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-glow), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 2; }
.card__title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.card__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0; }

/* ========== PROS/CONS ========== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-cons__block {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.pros-cons__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.pros-cons__head svg { width: 22px; height: 22px; }
.pros-cons__head h3 { color: var(--white); margin-bottom: 0; }
.pros-list, .cons-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.pros-list li::before {
  content: '✓';
  color: #5bff91;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.cons-list li::before {
  content: '✕';
  color: #ff5b5b;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== SCORE WIDGET ========== */
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.score-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.score-item__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.score-item__bar-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.score-item__bar {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--accent-glow), var(--gold));
}
.score-item__num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

/* ========== TABLES ========== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.data-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--surface);
}
.data-table thead tr { background: linear-gradient(90deg, var(--brand), var(--surface2)); }
.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.data-table td {
  padding: 13px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(92,42,138,0.3);
}
.data-table tbody tr:hover { background: rgba(200,75,255,0.06); }
.data-table .td-highlight { color: var(--white); font-weight: 600; }
.data-table .td-green { color: #5bff91; }
.data-table .td-accent { color: var(--accent); }

/* ========== FAQ ACCORDION ========== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-check:checked) { border-color: var(--accent); }
.faq-check { display: none; }
.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.faq-label__text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}
.faq-label__arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-label__arrow svg { width: 12px; height: 12px; stroke: var(--accent); stroke-width: 2.5; fill: none; transition: transform 0.3s; }
.faq-check:checked + .faq-label .faq-label__arrow { background: var(--accent); transform: none; }
.faq-check:checked + .faq-label .faq-label__arrow svg { transform: rotate(180deg); stroke: var(--white); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 22px;
}
.faq-check:checked ~ .faq-body {
  max-height: 600px;
  padding: 0 22px 20px;
}
.faq-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
.faq-body p + p { margin-top: 10px; }

/* ========== BONUS CARD ========== */
.bonus-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.bonus-card__amount {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 6px;
}
.bonus-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.bonus-card__desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }
.bonus-card__terms { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 0; }
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* ========== PAYMENT METHOD ICONS ========== */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.payment-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.payment-pill:hover { border-color: var(--accent); color: var(--white); }
.payment-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ========== ARTICLE / REVIEW CONTENT ========== */
.article-body { max-width: 800px; margin: 0 auto; }
.article-body p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1.1rem; }
.article-body h2 { margin-top: 2.2rem; margin-bottom: 1rem; }
.article-body h3 { margin-top: 1.6rem; margin-bottom: 0.8rem; }
.article-body ul, .article-body ol { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1.1rem; }
.article-body li { margin-bottom: 0.4rem; line-height: 1.7; }
.article-body strong { color: var(--white); }
.article-body em { color: var(--accent); font-style: normal; }

/* ========== INFO BOX ========== */
.info-box {
  background: rgba(200,75,255,0.08);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p { margin-bottom: 0; color: var(--text); font-size: 0.95rem; }

/* ========== TRUST BADGES ========== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-badge svg { width: 18px; height: 18px; }
.trust-badge--green { border-color: rgba(91,255,145,0.3); color: #5bff91; }
.trust-badge--gold { border-color: rgba(245,200,66,0.3); color: var(--gold); }

/* ========== STEP PROCESS ========== */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}
.step-item:last-child { padding-bottom: 0; }
.step-item__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-glow), var(--brand));
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-item__line {
  position: absolute;
  left: 23px; top: 48px;
  width: 2px; height: calc(100% - 20px);
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  opacity: 0.3;
}
.step-item:last-child .step-item__line { display: none; }
.step-item__body { flex: 1; padding-top: 10px; }
.step-item__title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-item__desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0; }

/* ========== OVERVIEW TABLE ========== */
.overview-list { display: flex; flex-direction: column; gap: 1px; border-radius: var(--radius); overflow: hidden; }
.overview-row {
  display: flex;
  align-items: center;
  background: var(--surface);
  padding: 14px 20px;
  gap: 16px;
  border-bottom: 1px solid rgba(92,42,138,0.3);
}
.overview-row:last-child { border-bottom: none; }
.overview-row__key {
  width: 200px;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.overview-row__val {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}
.overview-row__val .tag {
  display: inline-block;
  background: rgba(91,255,145,0.1);
  color: #5bff91;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(91,255,145,0.25);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--brand-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand__desc {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 18px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(92,42,138,0.4);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom__copy { font-size: 0.82rem; color: var(--text-dim); }
.footer-bottom__legal { font-size: 0.78rem; color: var(--text-dim); max-width: 560px; text-align: right; }
.gambling-warning {
  background: rgba(255,91,91,0.08);
  border: 1px solid rgba(255,91,91,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.gambling-warning__icon { color: #ff5b5b; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.gambling-warning__text { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }

/* ========== AGE BADGE ========== */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #ff5b5b;
  color: #ff5b5b;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ========== MOBILE NAV (always hidden by default) ========== */
.mobile-nav {
  display: none;
}

/* ========== NAV TOGGLE (always hidden by default) ========== */
.nav-toggle {
  display: none;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--accent-glow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0.9;
}
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(160,32,240,0.5); opacity: 1; }
.scroll-top svg { width: 20px; height: 20px; stroke: var(--white); stroke-width: 2.5; fill: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-nav { display: none; }
  .hero { padding: 50px 16px 56px; }
  .hero__stats { gap: 24px; }
  .hero__cta-group { flex-direction: column; align-items: center; }
  .bonus-strip__inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom__legal { text-align: center; }
  .overview-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .overview-row__key { width: auto; }
  .section { padding: 48px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .score-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .btn-lg { padding: 15px 28px; font-size: 1rem; }
}

/* ========== MOBILE NAV TOGGLE ========== */
@media (max-width: 680px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: background 0.2s;
  }
  .nav-toggle:hover span { background: var(--gold); }
  .mobile-nav {
    background: var(--brand-dark);
    border-top: 1px solid var(--border);
    padding: 0 20px;
    flex-direction: column;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .mobile-nav.open {
    display: flex;
    max-height: 400px;
    padding: 12px 20px 18px;
  }
  .mobile-nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(92,42,138,0.25);
    display: block;
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--gold); }
}

/* ========== TWO-COL LAYOUT ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 700px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ========== GAME CATEGORY PILLS ========== */
.game-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.game-cat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.game-cat.active,
.game-cat:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--white);
}

/* ========== PROVIDER LIST ========== */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.provider-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.provider-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,200,66,0.05); }

/* ========== HIGHLIGHT ========== */
.highlight-num {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05em;
}
