/* =============================================
   SLOTORADO CASINO DUTCH – Main Stylesheet
   Domain: slotoradocasinodutch.com
   ============================================= */

/* ---------- CSS Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #F5A623;
  --gold-light: #FFD166;
  --gold-dark:  #C8841A;
  --dark:       #0D1117;
  --dark-2:     #151B27;
  --dark-3:     #1E2635;
  --dark-4:     #252D3E;
  --dark-5:     #2C3550;
  --green:      #00C97A;
  --green-dark: #009E5F;
  --text:       #E8ECEF;
  --text-muted: #8A95A3;
  --border:     #2E3A4E;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

img { max-width: 100%; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }

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

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

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

/* ---------- Utility ---------- */
.gold { color: var(--gold); }
.green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0D1117;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245,166,35,0.5);
  color: #0D1117;
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,201,122,0.3);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,201,122,0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0D1117;
}

.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* ---------- Top Promo Bar ---------- */
.promo-bar {
  background: linear-gradient(90deg, #0a2818 0%, #0d3d20 50%, #0a2818 100%);
  border-bottom: 2px solid var(--green);
  padding: 12px 20px;
  text-align: center;
}
.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.promo-bar__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.promo-bar__text span { color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

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

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

.logo__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo__text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
}
.logo__text span { color: var(--gold); }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}

.header-cta { display: flex; gap: 10px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(160deg, #0D1117 0%, #111827 40%, #0d2a1a 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,122,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

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

.hero__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 620px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item__num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.stat-item__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Bonus Banner (mid-page) ---------- */
.bonus-banner {
  background: linear-gradient(90deg, #0d2a1a 0%, #103520 50%, #0d2a1a 100%);
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  padding: 26px 20px;
}
.bonus-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-banner__content h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--gold);
}
.bonus-banner__content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- Rating Box ---------- */
.rating-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 48px 0;
}
.rating-box__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.rating-score {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0D1117;
  font-size: 2.2rem;
  font-weight: 900;
  width: 76px;
  height: 76px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rating-info h3 { margin-bottom: 4px; }
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.rating-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rating-item__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.rating-item__bar {
  height: 6px;
  background: var(--dark-5);
  border-radius: 3px;
  overflow: hidden;
}
.rating-item__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 3px;
}
.rating-item__val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

/* ---------- Sections ---------- */
.section {
  padding: 60px 0;
}
.section--alt { background: var(--dark-2); }
.section--dark3 { background: var(--dark-3); }

.section-header {
  margin-bottom: 36px;
}
.section-header h2 { margin-bottom: 10px; }
.section-header p {
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

/* ---------- Bonus Cards ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.bonus-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.icon-bg-gold { background: rgba(245,166,35,0.15); }
.icon-bg-green { background: rgba(0,201,122,0.12); }
.icon-bg-blue { background: rgba(59,130,246,0.12); }
.icon-bg-purple { background: rgba(139,92,246,0.12); }

.bonus-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  background: rgba(245,166,35,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 2px;
  width: fit-content;
}
.bonus-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.bonus-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }
.bonus-card .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--gold); }
.feature-card__icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}
.step__num {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0D1117;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ---------- Pros & Cons ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.pros, .cons {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid #ef4444; }

.pros h3, .cons h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
}

.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons li::before { content: '✗'; color: #ef4444; font-weight: 700; flex-shrink: 0; }

/* ---------- Table (scrollable on mobile) ---------- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--dark-3);
}
thead { background: var(--dark-5); }
thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  white-space: nowrap;
}
tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(245,166,35,0.04); }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-green { background: rgba(0,201,122,0.15); color: var(--green); }
.badge-gold  { background: rgba(245,166,35,0.15); color: var(--gold); }
.badge-blue  { background: rgba(59,130,246,0.15); color: #60a5fa; }

/* ---------- Info Grid (2-col text sections) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
}
.info-block h3 { margin-bottom: 14px; color: var(--gold); }
.info-block p { font-size: 0.93rem; }

/* ---------- Review Text Sections ---------- */
.review-content h2 {
  margin: 40px 0 16px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.review-content h2:first-child { border-top: none; margin-top: 0; }
.review-content h3 { margin: 24px 0 10px; color: var(--gold); }
.review-content p { font-size: 0.95rem; line-height: 1.75; }

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-toggle:checked) { border-color: var(--gold); }

.faq-toggle { display: none; }

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  user-select: none;
  transition: color 0.2s;
  gap: 14px;
}
.faq-label:hover { color: var(--gold); }

.faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--dark-5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.2s;
  font-size: 0.75rem;
  color: var(--gold);
}

.faq-toggle:checked ~ .faq-label .faq-arrow { transform: rotate(180deg); background: rgba(245,166,35,0.15); }
.faq-toggle:checked ~ .faq-label { color: var(--gold); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 22px;
}
.faq-toggle:checked ~ .faq-body {
  max-height: 600px;
  padding: 0 22px 18px;
}
.faq-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ---------- Game Categories Strip ---------- */
.game-cats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-tag {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-tag:hover, .cat-tag.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}

/* ---------- Provider Grid ---------- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.provider-chip {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.provider-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Payment Methods ---------- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.payment-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  transition: border-color 0.2s;
}
.payment-card:hover { border-color: var(--gold); }
.payment-card__icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}
.payment-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.payment-card__limit {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.08) 0%, rgba(245,166,35,0.04) 100%);
  border: 1px solid rgba(245,166,35,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { margin-bottom: 0; font-size: 0.95rem; color: var(--text); }

.info-box {
  background: rgba(0,201,122,0.07);
  border: 1px solid rgba(0,201,122,0.2);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
}
.info-box p { margin-bottom: 0; font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.footer-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-badge {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb__list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0;
  font-size: 0.82rem;
}
.breadcrumb__list li { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.breadcrumb__list li::after { content: '/'; color: var(--border); }
.breadcrumb__list li:last-child::after { display: none; }
.breadcrumb__list a { color: var(--text-muted); }
.breadcrumb__list a:hover { color: var(--gold); }
.breadcrumb__list li:last-child { color: var(--text); }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--gold);
  transition: all 0.2s;
  z-index: 50;
}
.scroll-top:hover {
  background: var(--gold);
  color: #0D1117;
  border-color: var(--gold);
}

/* ---------- Section divider ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ---------- Author box ---------- */
.author-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #0D1117;
  flex-shrink: 0;
}
.author-info h4 { margin-bottom: 4px; font-size: 1rem; }
.author-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark-2); padding: 16px 20px; border-bottom: 1px solid var(--border); z-index: 99; }
  .nav-toggle { display: flex; }
  .header-cta .btn-outline { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 44px 0; }
  .hero { padding: 44px 0 36px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .bonus-banner__inner { flex-direction: column; text-align: center; }
  .bonus-banner__inner .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 36px 0; }
  .rating-box { padding: 18px; }
  .bonus-card, .feature-card, .step { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .scroll-top { bottom: 16px; right: 16px; }
}
