:root {
  --primary: #FF6600;
  --primary-hover: #ff7520;
  --primary-active: #ff8533;
  --primary-shade: linear-gradient(135deg, #ff8533 0%, #FD9455 100%);
  --primary-tint: #FFF0E7;
  --secondary: #40B840;
  --secondary-hover: #58C058;

  --bg: #ffffff;
  --surface: #F7F7F7;
  --surface-2: #F4F4F5;
  --surface-3: #EBEBEC;
  --bg-card: #ffffff;
  --bg-elevated: #F7F7F7;

  --alt-surface: #2E2F3C;
  --alt-surface-nav: #242633;
  --alt-surface-variant: #494B56;
  --nav-gradient: linear-gradient(0deg, #242633 0%, #2E2F3C 100%);
  --nav-item-gradient: linear-gradient(90deg, #373944 0%, #2E2F3C 100%);

  --text: rgba(0, 0, 0, 0.87);
  --text-m: rgba(0, 0, 0, 0.6);
  --text-low: rgba(0, 0, 0, 0.38);
  --text-on-dark: #ffffff;
  --text-on-dark-m: rgba(255, 255, 255, 0.87);
  --text-on-dark-low: rgba(255, 255, 255, 0.6);
  --nav-accent: #FD9455;

  --accent: var(--primary);
  --accent-hover: var(--primary-hover);
  --muted: var(--text-m);
  --border: rgba(0, 0, 0, 0.1);
  --border-on-dark: rgba(255, 255, 255, 0.15);

  --success: #00AA41;
  --success-surface: #D8F2D7;
  --error: #dd2727;
  --warning: #F8A127;

  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --shadow: 0px 8px 16px -2px rgba(0, 0, 0, 0.06), 0px 4px 8px 0px rgba(0, 0, 0, 0.04);
  --shadow-alt: 0px 8px 16px -2px rgba(0, 0, 0, 0.24), 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
  --font: "Open Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Montserrat", var(--font);
  --max: 1200px;
  --header-h: 64px;
  --subnav-h: 48px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

/* Header — orange top bar like betsson.com */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-alt);
}

.header-top {
  background: var(--primary);
  color: var(--text-on-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding: 8px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  color: var(--text-on-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-link:hover { color: var(--text-on-dark); text-decoration: none; opacity: 0.95; }
.logo-link img {
  width: auto;
  height: 32px;
  max-width: 140px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-text-short { display: none; }

/* Burger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin: 0 -6px 0 0;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.25); }
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
body.menu-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(0, 0, 0, 0.55);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* Main navigation — desktop bar / mobile drawer */
.site-nav {
  background: var(--nav-gradient);
  border-bottom: 1px solid var(--border-on-dark);
}

.site-nav-inner {
  display: flex;
  gap: 4px;
  padding: 6px 0;
}

.site-nav-group {
  display: contents;
}

.site-nav-group--guides,
.site-nav-mobile-cta,
.site-nav-label {
  display: none;
}

.site-nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.site-nav-links::-webkit-scrollbar { display: none; }

.site-nav-link {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  color: var(--text-on-dark-m);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.site-nav-link:hover {
  color: var(--nav-accent);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.site-nav-link[aria-current="page"] {
  color: var(--text-on-dark);
  background: var(--nav-item-gradient);
  box-shadow: inset 0 0 0 1px var(--border-on-dark);
}

.btn-block { width: 100%; }

.main-nav { display: none; }

/* Buttons — Betsson FDS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--primary-shade);
  color: #fff;
  box-shadow: inset 0 0 12px 2px rgba(255, 102, 0, 0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #ff8533 100%);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-tint);
  color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-secondary {
  background: linear-gradient(135deg, #6BC96B 0%, #86CF86 100%);
  color: #fff;
}
.btn-secondary:hover { filter: brightness(1.05); color: #fff; }

/* Hero */
.hero {
  padding: 40px 0 36px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-visual .hero-banner {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(46, 47, 60, 0.12);
}

.hero-game {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-game .hero-game-poster {
  max-width: 220px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-alt);
}

.hero-brand picture,
.hero-brand img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border: none;
  box-shadow: none;
}

.section-games { background: var(--surface); }
.section-games--compact { padding: 32px 0; }
.section-lead {
  color: var(--muted);
  margin: -8px 0 24px;
  font-size: 0.95rem;
}

.game-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  max-width: 640px;
}
.game-card--sm span { font-size: 0.8rem; padding: 8px; }
.games-more {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.footer-brand {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-on-dark);
}
.footer-brand img {
  max-width: 160px;
  height: auto;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}

.hero-lead { font-size: 1.05rem; color: var(--muted); margin: 0 0 24px; }

.cta-block { margin-bottom: 4px; }
.cta-badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--primary-tint);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cta-badge--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cta-primary-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: min(100%, 280px);
}
.cta-hook {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 340px;
}
.cta-hook--center { text-align: center; max-width: none; }
.cta-terms {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-low);
  line-height: 1.4;
}
.cta-terms--light {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
}

.btn-cta-main { min-width: 220px; }
.btn-cta-lg {
  min-width: 240px;
  padding: 14px 24px;
  font-size: 1rem;
}

.header-cta-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-cta-note {
  position: absolute;
  top: -8px;
  right: -6px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-strip {
  padding: 40px 0;
  background: linear-gradient(135deg, #242633 0%, #2E2F3C 55%, #3d2810 100%);
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta-strip-copy h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 1.45rem;
}
.cta-strip-copy > p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
  max-width: 520px;
}
.cta-perks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.cta-perks li {
  font-size: 0.85rem;
  color: var(--nav-accent);
  font-weight: 600;
}
.cta-perks li::before {
  content: "✓ ";
  color: var(--primary);
}
.cta-strip-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-strip-inner { grid-template-columns: 1fr; }
  .cta-strip-action { align-items: stretch; }
  .btn-cta-lg { width: 100%; }
  .header-cta-note { right: 0; }
}

.trust-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}
.trust-item strong { color: var(--text); font-weight: 600; }

/* Sections */
section {
  padding: 40px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}
section.hero {
  content-visibility: visible;
}
section:nth-child(even) { background: var(--surface); }

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}
h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text);
}

.answer-block {
  background: var(--primary-tint);
  border-left: 4px solid var(--primary);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 28px;
  font-size: 1.02rem;
  color: var(--text);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: rgba(255, 102, 0, 0.35);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
}
.card h3 { margin-top: 0; font-size: 1.05rem; color: var(--primary); }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0 0 12px; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius); border: 1px solid var(--border); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--bg);
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  background: var(--surface-2);
  color: var(--text);
  font-weight: 600;
}
td { color: var(--muted); }
tr:hover td { color: var(--text); background: var(--surface); }
tr:last-child td { border-bottom: none; }

/* Lists */
.content-list { padding-left: 20px; }
.content-list li { margin-bottom: 8px; color: var(--muted); }
.content-list li strong { color: var(--text); }

.content-body p { margin: 0 0 16px; color: var(--text-m); }
.content-body h3 { margin-top: 20px; }

.word-count-badge { display: none; }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 56px;
  margin-bottom: 12px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text-m);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  background: var(--primary-shade);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros, .cons {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.pros { background: var(--success-surface); }
.cons { background: #FCE7D7; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.faq-item h3 {
  margin: 0;
  padding: 16px 20px;
  background: var(--surface);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.faq-item p {
  margin: 0;
  padding: 16px 20px;
  color: var(--muted);
}

/* Related links */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.related-links a {
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--primary);
  text-decoration: none;
}
.related-links a:hover {
  border-color: var(--primary);
  background: var(--primary-tint);
  text-decoration: none;
}

/* Breadcrumb */
.breadcrumb {
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: var(--text-low);
}

/* Game grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.game-card {
  text-align: center;
  background: var(--alt-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-on-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-alt);
}
.game-card img { width: 100%; aspect-ratio: 400/600; object-fit: cover; }
.game-card--sm img { aspect-ratio: 226/338; }
.game-card span {
  display: block;
  padding: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-on-dark);
  background: var(--alt-surface);
}

/* Footer — dark alternate surface */
.site-footer {
  background: var(--nav-gradient);
  border-top: 3px solid var(--primary);
  padding: 48px 0 24px;
  margin-top: 0;
  color: var(--text-on-dark-m);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}
.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nav-accent);
  font-weight: 700;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li { margin-bottom: 8px; }
.footer-grid a {
  color: var(--text-on-dark-m);
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-grid a:hover { color: var(--text-on-dark); text-decoration: underline; }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-on-dark-low);
}
.footer-bottom a { color: var(--nav-accent); }

.rg-notice {
  background: rgba(248, 161, 39, 0.12);
  border: 1px solid rgba(248, 161, 39, 0.35);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: var(--text-on-dark-m);
}
.rg-notice a { color: var(--nav-accent); }

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(46, 47, 60, 0.97);
  border-top: 2px solid var(--primary);
  z-index: 99;
  backdrop-filter: blur(8px);
  gap: 12px;
  align-items: center;
}
.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.sticky-cta-text strong {
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.2;
}
.sticky-cta-text span {
  color: var(--nav-accent);
  font-size: 0.75rem;
  line-height: 1.2;
}
.sticky-cta .btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 16px;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  body.menu-open { padding-bottom: 0; }

  :root {
    --header-h: 56px;
  }

  .container { width: min(100% - 24px, var(--max)); }

  .header-inner {
    gap: 8px;
    min-height: var(--header-h);
    padding: 6px 0;
  }

  .nav-toggle { display: flex; }

  .nav-overlay {
    display: block;
  }
  body.menu-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: min(320px, 88vw);
    height: calc(100dvh - var(--header-h));
    z-index: 200;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-bottom: none;
    box-shadow: var(--shadow-alt);
  }
  body.menu-open .site-nav {
    transform: translateX(0);
  }

  .site-nav-inner {
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
  }

  .site-nav-group {
    display: block;
    padding: 0 0 8px;
  }

  .site-nav-group--guides {
    display: block;
    border-top: 1px solid var(--border-on-dark);
    padding-top: 12px;
  }

  .site-nav-label {
    display: block;
    margin: 0 0 8px;
    padding: 0 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-on-dark-low);
  }

  .site-nav-links {
    flex-direction: column;
    overflow: visible;
    gap: 2px;
  }

  .site-nav-link {
    display: block;
    padding: 12px 14px;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    border-radius: var(--radius);
  }

  .site-nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-on-dark);
  }
  .site-nav-mobile-cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
  }

  .header-login { display: none; }
  .btn-text-full { display: none; }
  .btn-text-short { display: inline; }
  .header-actions .btn-primary {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
  .logo-link {
    flex: 1;
    justify-content: center;
  }
  .logo-link img { height: 26px; max-width: 120px; }

  .hero {
    padding: 24px 0 28px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .answer-block {
    padding: 14px 16px;
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-cta-main { min-width: 0; width: 100%; }
  .hero-cta > .btn-outline { width: 100%; }

  .trust-bar {
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .trust-item {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    font-size: 0.78rem;
    padding: 6px 10px;
  }

  section { padding: 28px 0; }

  h2 { font-size: 1.25rem; }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
  }

  .cta-strip {
    padding: 28px 0;
  }
  .cta-strip-copy h2 {
    font-size: 1.2rem;
  }
  .cta-perks {
    flex-direction: column;
    gap: 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .breadcrumb {
    font-size: 0.8rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding: 10px 0;
  }
  .breadcrumb::-webkit-scrollbar { display: none; }

  .related-links {
    gap: 8px;
  }
  .related-links a {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .faq-item h3 {
    font-size: 0.92rem;
    padding: 14px 16px;
  }
  .faq-item p {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .header-cta-note { right: 0; }
}

@media (max-width: 380px) {
  .trust-item {
    flex: 1 1 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-cta-text strong {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-nav,
  .nav-toggle-bar,
  .nav-overlay {
    transition: none;
  }
}

/* 404 */
.error-page {
  text-align: center;
  padding: 80px 20px;
  background: var(--surface);
  min-height: 50vh;
}
.error-page h1 { font-size: 4rem; margin: 0; color: var(--primary); }

/* Tip blocks from humanizer */
.tip-block,
.ojo-block,
.consejo-block {
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 0.95rem;
}
.tip-block {
  background: var(--primary-tint);
  border-left: 4px solid var(--primary);
  color: var(--text);
}
.ojo-block {
  background: #FCE7D7;
  border-left: 4px solid var(--warning);
  color: var(--text);
}
.consejo-block {
  background: var(--success-surface);
  border-left: 4px solid var(--success);
  color: var(--text);
}
