/* ============================================================
   kryptokasinonorge.com — global stylesheet
   Palette: white base + Norwegian flag red (#BA0C2F) + navy (#00205B)
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F5F7FB;
  --border: #DEE4EF;
  --border-hi: #C3CDE0;

  --red: #BA0C2F;
  --red-dark: #970A26;
  --red-dim: rgba(186, 12, 47, 0.08);

  --blue: #00205B;
  --blue-mid: #29488F;
  --blue-dim: rgba(0, 32, 91, 0.06);
  --navy-deep: #001233;

  --text: #131C33;
  --text-2: #3E4D6B;
  --muted: #5E6E8C;

  --font-display: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --header-h: 68px;
  --max-w: 1200px;
  --content-w: 780px;
  --radius: 10px;
  --radius-sm: 6px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 18, 51, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 18, 51, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--blue);
  line-height: 1.2;
  font-weight: 800;
}

ul, ol { padding-left: 1.3rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* Norwegian ribbon accent */
.flag-strip {
  height: 4px;
  background: linear-gradient(90deg,
    var(--red) 0 36%,
    #FFFFFF 36% 50%,
    var(--blue) 50% 100%);
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--red) 0 36%,
    #FFFFFF 36% 50%,
    var(--blue) 50% 100%);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; }
.logo-img { width: 34px; height: 34px; flex-shrink: 0; }
.logo-mark { color: var(--blue); }
.logo-rest { color: var(--red); }

.site-nav { display: none; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.18s, background 0.18s;
}
.nav-toggle:hover { border-color: var(--blue); background: var(--blue-dim); }
.icon-close { display: none; }
.icon-open { display: block; }
body.nav-open .icon-close { display: block; }
body.nav-open .icon-open { display: none; }
body.nav-open .nav-toggle { border-color: var(--blue); background: var(--blue-dim); }

@media (min-width: 900px) {
  .site-nav { display: flex; align-items: center; }
  .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  padding: 0;
}
.site-nav a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.site-nav a:hover { color: var(--blue); background: var(--blue-dim); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--red); background: var(--red-dim); }

.nav-dropdown { position: relative; list-style: none; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--blue); background: var(--blue-dim); }
.nav-dropdown-toggle .caret { transition: transform 0.2s var(--ease); }
.nav-dropdown.open .caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
  list-style: none;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  color: var(--red);
  background: var(--red-dim);
  padding-left: 1.1rem;
  text-decoration: none;
}

/* ── Mobile nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 400;
  overflow-y: auto;
  border-top: 2px solid var(--blue);
}
body.nav-open .mobile-nav { display: block; }

.mobile-nav > ul {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 2rem;
  list-style: none;
}
.mobile-nav a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
  text-decoration: none;
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--red);
  background: var(--red-dim);
  padding-left: 2rem;
  text-decoration: none;
}
.mobile-nav .mobile-section-label {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--border);
  list-style: none;
  display: list-item;
}

/* ── Hero (shared background on every page) ───────────────── */
.hero {
  position: relative;
  background: var(--navy-deep) url('/images/hero-bg-all-pages.webp') center/cover no-repeat;
  color: #FFFFFF;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 18, 51, 0.55), rgba(0, 18, 51, 0.82));
}
.hero > .container { position: relative; padding-top: 3rem; padding-bottom: 3rem; }

.hero .crumbs {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.2rem;
}
.hero .crumbs a { color: rgba(255, 255, 255, 0.9); }

.hero h1 {
  color: #FFFFFF;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.hero .lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .hero h1 { font-size: 2.6rem; }
  .hero > .container { padding-top: 4rem; padding-bottom: 4rem; }
}

/* ── Review hero (casino ID + offer card up front) ────────── */
.hero-review::before {
  background:
    radial-gradient(58% 90% at 88% 0%, rgba(186, 12, 47, 0.30), transparent 62%),
    radial-gradient(46% 75% at 4% 100%, rgba(41, 72, 143, 0.55), transparent 62%),
    linear-gradient(180deg, rgba(0, 18, 51, 0.58), rgba(0, 18, 51, 0.85));
}
.hero-review::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--red) 0 36%,
    #FFFFFF 36% 50%,
    var(--blue) 50% 100%);
}

.hero-grid { display: grid; gap: 2.2rem; }

.hero-id {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}
.hero-id h1 { margin-bottom: 0.4rem; }
.hero-casino-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.hero-score-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-score-line .stars { color: #F5C518; font-size: 1rem; letter-spacing: 2px; }
.hero-score-line .score-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFFFFF;
  line-height: 1;
}
.hero-score-line .score-of { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); }

.hero-review > .container { padding-top: 2px; }
.hero-review .crumbs { margin-bottom: 2.2rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.1rem;
}
.hero-meta a { color: #FFFFFF; text-decoration: underline; text-underline-offset: 2px; }
.hm-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.hm-sep { color: rgba(255, 255, 255, 0.4); }
.hm-log-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hm-log-toggle img {
  width: 12px;
  height: 12px;
  filter: invert(1);
  opacity: 0.8;
  transition: transform 0.15s var(--ease);
}
.hm-log-toggle[aria-expanded="true"] img { transform: rotate(180deg); }

.hero-log {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  margin-bottom: 1.1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-log ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.hl-date { font-weight: 700; color: #FFFFFF; margin-right: 0.35rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  overflow: hidden;
}
.hs {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: center;
  text-align: center;
  padding: 0.8rem 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.hs:nth-child(2n) { border-right: none; }
.hs:last-child {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
}
.hs-v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #FFFFFF;
  line-height: 1.1;
  white-space: nowrap;
}
.hs-k {
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.60);
}
@media (min-width: 900px) {
  .hero-stats { grid-template-columns: repeat(5, 1fr); }
  .hs { border-bottom: none; padding: 0.95rem 0.5rem; }
  .hs:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.10); }
  .hs:last-child { grid-column: auto; border-right: none; }
}

/* ── Sticky in-page nav (review sections) ─────────────────── */
.page-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 350;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.pn-list {
  list-style: none;
  display: flex;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pn-list::-webkit-scrollbar { display: none; }
.pn-list a {
  display: block;
  white-space: nowrap;
  padding: 0.8rem 0.7rem 0.68rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
}
.pn-list a:hover { color: var(--blue); text-decoration: none; }
.pn-list a.active { color: var(--red); border-bottom-color: var(--red); }

/* anchor jumps land below the fixed header + sticky nav */
.section[id], .author-box[id] { scroll-margin-top: calc(var(--header-h) + 54px); }

.offer-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 8, 25, 0.45);
  align-self: center;
}
.oc-head {
  background: var(--navy-deep);
  padding: 0.9rem 1.4rem;
  display: flex;
  justify-content: center;
}
.oc-head img { width: 160px; height: 60px; }
.oc-body { padding: 1.2rem 1.4rem 1.3rem; }

.oc-bonus {
  position: relative;
  text-align: center;
  padding: 0 2.9rem;
  margin-bottom: 0.4rem;
}
.oc-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.oc-nav:hover { background: var(--blue-dim); border-color: var(--border-hi); }
.oc-prev { left: 0; border-radius: var(--radius) 0 0 var(--radius); }
.oc-next { right: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.oc-slide { display: none; }
.oc-slide.active { display: block; }
.oc-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0.55rem;
}
.oc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-hi);
}
.oc-dot.active { background: var(--red); }

.oc-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.oc-offer {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 0.45rem;
}
.oc-terms {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 0.9rem;
}
.oc-pay {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0.85rem 0;
  margin-bottom: 1.1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.oc-pay img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.oc-cta { width: 100%; }
.oc-fine {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.8rem 0 0;
  text-align: center;
}
.oc-fine a { color: inherit; text-decoration: underline; }

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 3rem;
    align-items: center;
  }
  .hero-review .lead { margin-bottom: 1.6rem; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--red);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn-cta:hover { background: var(--red-dark); text-decoration: none; transform: translateY(-1px); }
.btn-cta img { filter: brightness(0) invert(1); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}
.btn-ghost:hover { border-color: var(--blue); background: var(--blue-dim); text-decoration: none; }

/* ── Affiliate disclosure ─────────────────────────────────── */
.hero-disclosure {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.8rem;
}
.hero-disclosure a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 2.5rem 0 0.5rem; }

.section-h {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.section-h img { width: 44px; height: 44px; flex-shrink: 0; }
.section-h h2 { font-size: 1.45rem; letter-spacing: -0.01em; }

.section p { margin-bottom: 1rem; color: var(--text); max-width: 72ch; }
.section ul, .section ol { margin-bottom: 1rem; }
.section li { margin-bottom: 0.35rem; }

@media (min-width: 900px) {
  .section-h h2 { font-size: 1.7rem; }
}

/* ── AI summary panel ─────────────────────────────────────── */
.ai-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ai-summary p {
  padding: 1.2rem 1.4rem;
  margin: 0;
  max-width: none;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.ai-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}
.ai-summary li {
  padding: 0.75rem 1.4rem;
  margin: 0;
  line-height: 1.5;
}
.ai-summary li + li { border-top: 1px solid var(--border); }
.ai-summary strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.1rem;
}

@media (min-width: 720px) {
  .ai-summary li {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    align-items: baseline;
  }
  .ai-summary strong { margin-bottom: 0; }
}

/* ── Rating breakdown ─────────────────────────────────────── */
.ratings {
  display: grid;
  gap: 0.7rem;
  margin: 1.3rem 0;
  max-width: 560px;
}
.rating-row { display: grid; grid-template-columns: 130px 1fr 44px; align-items: center; gap: 0.8rem; }
.rating-row .lbl { font-size: 0.88rem; font-weight: 600; color: var(--text-2); }
.rating-row .bar {
  height: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.rating-row .bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: 99px;
}
.rating-row .val { font-size: 0.88rem; font-weight: 700; color: var(--blue); text-align: right; }

/* ── Bonus / CTA panel ────────────────────────────────────── */
.offer-panel {
  background: var(--navy-deep);
  border-radius: var(--radius);
  color: #FFFFFF;
  padding: 1.8rem 1.5rem;
  margin: 1.8rem 0;
  position: relative;
  overflow: hidden;
}
.offer-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--red) 0 36%,
    #FFFFFF 36% 50%,
    #4A6FBF 50% 100%);
}
.offer-panel .op-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}
.offer-panel .op-offer {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.offer-panel .op-terms {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.2rem;
  max-width: 560px;
}
.offer-panel .op-fine {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .offer-panel { padding: 2.2rem 2.4rem; }
  .offer-panel .op-offer { font-size: 2.1rem; }
}

/* ── Pros & cons ──────────────────────────────────────────── */
.pros-cons {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
}
.pc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.pc-card h3 { font-size: 1.05rem; margin-bottom: 0.8rem; }
.pc-card ul { list-style: none; padding: 0; }
.pc-card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.94rem;
  margin-bottom: 0.55rem;
  color: var(--text-2);
}
.pc-card li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  background-size: contain;
  background-repeat: no-repeat;
}
.pc-pros li::before { background-image: url('/icons/check-regular.svg'); filter: invert(28%) sepia(94%) saturate(1400%) hue-rotate(200deg) brightness(0.5); }
.pc-cons li::before { background-image: url('/icons/x-regular.svg'); filter: invert(14%) sepia(76%) saturate(4700%) hue-rotate(340deg) brightness(0.85); }

@media (min-width: 900px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}

/* ── Screenshot carousels (desktop left, mobile right) ────── */
.shots-duo {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
}
.shot-carousel {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.sc-frame {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.sc-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: #FFFFFF;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.sc-slide {
  display: none;
  flex: 1;
  flex-direction: column;
  margin: 0;
  min-height: 0;
}
.sc-slide.active { display: flex; }
.sc-slide img {
  width: auto;
  max-width: 100%;
  height: 300px;
  object-fit: contain;
  margin: 0 auto;
  background: var(--surface-2);
  display: block;
}
.sc-slide figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.55rem 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
  text-align: center;
}
.sc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 8, 25, 0.4);
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s var(--ease);
}
.sc-nav img { filter: invert(1); }
.sc-nav:hover { background: var(--red); }
.sc-prev { left: 8px; }
.sc-next { right: 8px; }
.sc-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0.6rem 0 0.75rem;
}
.sc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-hi);
}
.sc-dot.active { background: var(--red); }

@media (min-width: 900px) {
  .shots-duo { grid-template-columns: 1.6fr 1fr; gap: 1.2rem; }
  .sc-slide img { height: 420px; }
}

/* ── Info table ───────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 1.4rem 0; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table th {
  background: var(--blue);
  color: #FFFFFF;
  text-align: left;
  font-weight: 700;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
}
.info-table td {
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-2);
}
.info-table tr:nth-child(even) td { background: var(--surface-2); }

/* ── Steps ────────────────────────────────────────────────── */
.steps { list-style: none; padding: 0; counter-reset: step; margin: 1.4rem 0; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
  background: var(--blue);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.steps li strong { display: block; color: var(--text); margin-bottom: 0.15rem; }
.steps li { color: var(--text-2); font-size: 0.95rem; }

/* ── Callout boxes ────────────────────────────────────────── */
.note-box {
  display: flex;
  gap: 0.8rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 1.4rem 0;
  font-size: 0.92rem;
  color: var(--text-2);
}
.note-box img { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

/* ── Author box ───────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  margin: 2rem 0;
}
.author-box img { width: 68px; height: 68px; border-radius: 50%; flex-shrink: 0; }
.author-box .a-name { font-weight: 700; color: var(--text); font-size: 1rem; }
.author-box .a-role { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.4rem; }
.author-box .a-bio { font-size: 0.9rem; color: var(--text-2); }

/* ── Responsible gambling box ─────────────────────────────── */
.rg-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}
.rg-box .rg-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.rg-box .rg-head img { width: 34px; height: 34px; }
.rg-box h2, .rg-box h3 { font-size: 1.15rem; }
.rg-box p { font-size: 0.92rem; color: var(--text-2); margin-bottom: 0.6rem; max-width: none; }
.rg-box a { font-weight: 600; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3.5rem;
}
.site-footer .footer-strip { height: 4px;
  background: linear-gradient(90deg,
    var(--red) 0 36%,
    #FFFFFF 36% 50%,
    #4A6FBF 50% 100%);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.8rem 1.25rem 1rem;
  display: grid;
  gap: 2rem;
}
.footer-col .f-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  display: inline-block;
  margin-bottom: 0.7rem;
  text-decoration: none;
}
.footer-col .f-logo .logo-rest { color: #FF5C7A; }
.footer-col p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }
.footer-col .footer-col-heading {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }
.footer-col a:hover { color: #FFFFFF; }

.footer-rg {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.footer-rg img { width: 40px; height: 40px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.2rem 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; }
}

/* ── Back to top ──────────────────────────────────────────── */
/* ── Sticky bottom CTA bar (reviews) ──────────────────────── */
.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 380;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(0, 18, 51, 0.14);
  transform: translateY(100%);
  visibility: hidden;
  transition: transform 0.25s var(--ease), visibility 0.25s var(--ease);
}
.cta-bar.visible {
  transform: translateY(0);
  visibility: visible;
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.cb-id {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.cb-id img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
}
.cb-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}
.cb-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-2);
  margin-left: 0.25rem;
}
.cb-star { color: #F5C518; }
.cb-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}
.cb-fine { font-size: 0.72rem; color: var(--muted); }
.cb-btn { padding: 0.55rem 1.3rem; font-size: 0.9rem; }
body.cta-visible .back-to-top { bottom: calc(1.2rem + 62px); }

@media (max-width: 599px) {
  .cb-fine { display: none; }
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), background 0.18s;
  z-index: 300;
  box-shadow: var(--shadow-md);
}
.back-to-top img { filter: brightness(0) invert(1); }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--red); }

/* ── Money page: hero variant ─────────────────────────────── */
.hero-money .hero-grid { grid-template-columns: 1fr; }
.hero-money .lead { max-width: 74ch; }

/* ── Money page: toplist cards ────────────────────────────── */
.mp-list { display: grid; gap: 1.2rem; margin: 1.4rem 0 0.5rem; }
.mp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem 1.3rem;
}
.mp-head { display: flex; align-items: center; gap: 0.95rem; flex-wrap: wrap; }
.mp-rank {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--blue); color: #FFFFFF;
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mp-icon { width: 54px; height: 54px; border-radius: 10px; flex-shrink: 0; }
.mp-title { min-width: 0; }
.mp-name { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--blue); line-height: 1.2; }
.mp-name a { color: inherit; }
.mp-sub { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; }
.mp-sub .stars { color: #E8A33D; font-size: 0.82rem; letter-spacing: 1px; }
.mp-sub .score { font-weight: 700; color: var(--text); }
.mp-cta-top { margin-left: auto; }
.mp-cta-top .btn-cta { padding: 0.62rem 1.25rem; font-size: 0.9rem; }
.mp-bonus {
  margin: 0.9rem 0 0;
  padding: 0.7rem 1rem;
  background: var(--blue-dim);
  border-radius: 8px;
  font-size: 0.95rem;
}
.mp-bonus strong { color: var(--blue); }
.mp-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.65rem 1.1rem;
  margin: 0.95rem 0 0;
}
.mp-fact .k { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.1rem; }
.mp-fact .v { font-weight: 600; font-size: 0.93rem; }
.mp-pc { list-style: none; margin: 0.95rem 0 0; padding: 0; display: grid; gap: 0.35rem 1.1rem; font-size: 0.92rem; }
.mp-pc li { display: flex; gap: 0.5rem; align-items: baseline; margin: 0; }
.mp-pc li img { flex-shrink: 0; position: relative; top: 2px; }
.mp-body-note { margin: 0.9rem 0 0; font-size: 0.95rem; color: var(--text-2); max-width: none; }
.mp-fine { font-size: 0.75rem; color: var(--muted); margin: 0.85rem 0 0; }

@media (min-width: 760px) {
  .mp-pc { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .mp-cta-top { margin-left: 0; width: 100%; }
  .mp-cta-top .btn-cta { width: 100%; justify-content: center; }
}

/* ── Money page: best-for picks ───────────────────────────── */
.pick-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); margin: 1.2rem 0 0.4rem; }
.pick { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.1rem; }
.pick-k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.pick-v { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--blue); margin-bottom: 0.3rem; }
.pick-why { font-size: 0.85rem; color: var(--text-2); margin: 0; max-width: none; }

/* ── Content figure (inline screenshot in article sections) ── */
.content-figure { margin: 1.4rem 0 0.4rem; max-width: 560px; }
.content-figure img { border: 1px solid var(--border); border-radius: var(--radius); width: 100%; height: auto; }
.content-figure figcaption { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }

/* ── Layout polish: centered rhythm sitewide ──────────────── */

/* Money/support hero: centered stage */
.hero-money .crumbs { text-align: center; }
.hero-money .hero-main { text-align: center; }
.hero-money .hero-meta { justify-content: center; }
.hero-money .lead { margin-left: auto; margin-right: auto; }
.hero-money .hero-disclosure { text-align: center; }
.hero-money .hero-stats { max-width: 940px; margin-left: auto; margin-right: auto; }
.hero-money .hs:last-child { grid-column: auto; }
.hero-money .hs:nth-child(3) { border-bottom: none; }
@media (min-width: 900px) {
  .hero-money .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero-money .hs { border-right: 1px solid rgba(255, 255, 255, 0.10); }
  .hero-money .hs:last-child { border-right: none; }
}

/* Section headers: icon above centered title */
.section-h {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

/* Prose sits in a centered reading column; components stay full-width */
.section > p { margin-left: auto; margin-right: auto; }
.section > ul, .section > ol { max-width: 72ch; margin-left: auto; margin-right: auto; }

/* Short intro under a header of a component section reads as a centered deck */
.section:has(.mp-list) > .section-h + p,
.section:has(.table-wrap) > .section-h + p,
.section:has(.pick-grid) > .section-h + p,
.section:has(.steps) > .section-h + p,
.section:has(.shots-duo) > .section-h + p,
.section:has(.ratings) > .section-h + p {
  text-align: center;
  max-width: 68ch;
}

/* Review verdict bars centered with the column */
.ratings { margin-left: auto; margin-right: auto; }

/* Callouts and figures follow the reading column */
.note-box { max-width: 72ch; margin-left: auto; margin-right: auto; }
.content-figure { margin-left: auto; margin-right: auto; }
.content-figure figcaption { text-align: center; }

/* Section nav: centered when it fits, scrollable when it does not */
.pn-list { justify-content: safe center; }

/* Best-for picks: centered card content */
.pick { text-align: center; }
.pick-why { margin-left: auto; margin-right: auto; }

/* Offer panel (reviews): centered promo banner */
.offer-panel { text-align: center; }
.offer-panel .op-terms { margin-left: auto; margin-right: auto; }

/* Responsible gambling box: centered band */
.rg-box { text-align: center; padding: 1.6rem 1.5rem; }
.rg-box .rg-head { justify-content: center; }
.rg-box p { max-width: 68ch; margin-left: auto; margin-right: auto; }

/* Mobile: cards and heroes stack centered */
@media (max-width: 600px) {
  .mp-card { position: relative; }
  .mp-rank { position: absolute; top: 14px; left: 14px; width: 30px; height: 30px; font-size: 0.9rem; }
  .mp-head { flex-direction: column; text-align: center; gap: 0.55rem; }
  .mp-icon { width: 64px; height: 64px; }
  .mp-sub { justify-content: center; }
  .mp-bonus { text-align: center; }
  .mp-facts { text-align: center; }
  .mp-fine { text-align: center; }

  .hero-review .hero-main { text-align: center; }
  .hero-review .hero-id { flex-direction: column; align-items: center; }
  .hero-review .hero-meta { justify-content: center; }
  .hero-review .hero-score-line { justify-content: center; }
  .hero-review .hero-log { text-align: left; }
}

/* ── Guide hub cards ──────────────────────────────────────── */
.gd-list { display: grid; gap: 1.1rem; margin: 1.4rem 0 0.5rem; }
a.gd-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  text-align: left;
  color: var(--text);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
a.gd-card:hover { text-decoration: none; border-color: var(--blue); box-shadow: var(--shadow-md); }
.gd-icon { width: 50px; height: 50px; flex-shrink: 0; }
.gd-body { flex: 1; min-width: 0; }
.gd-top { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.3rem; }
.gd-name { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--blue); line-height: 1.25; }
.gd-badge {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  background: var(--red-dim); color: var(--red);
  padding: 0.22rem 0.6rem; border-radius: 50px; white-space: nowrap;
}
.gd-badge-blue { background: var(--blue-dim); color: var(--blue-mid); }
.gd-tagline { font-size: 0.92rem; color: var(--text-2); margin: 0 0 0.85rem; max-width: none; }
.gd-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.5rem 1.1rem; }
.gd-fact .k { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.05rem; }
.gd-fact .v { font-size: 0.88rem; font-weight: 600; }
.gd-cta-col { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; padding-top: 0.15rem; }
.gd-cta { color: var(--red); font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.gd-date { font-size: 0.75rem; color: var(--muted); white-space: nowrap; }

@media (max-width: 760px) {
  a.gd-card { flex-direction: column; gap: 0.9rem; }
  .gd-icon { width: 44px; height: 44px; }
  .gd-cta-col { flex-direction: row-reverse; justify-content: space-between; align-items: center; width: 100%; padding-top: 0.4rem; border-top: 1px solid var(--border); }
}

/* ── Guide hub: forum-style index (no hero) ───────────────── */
.hub-head {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 0 0;
}
.hub-head .crumbs-light { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.hub-head .crumbs-light a { color: var(--text-2); }
.hub-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.hub-head h1 { font-size: 2rem; letter-spacing: -0.02em; margin-bottom: 0.35rem; }
.hub-sub { color: var(--text-2); font-size: 1rem; max-width: 56ch; margin: 0; }
.hub-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hub-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
}
.hub-tabs {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.hub-tabs::-webkit-scrollbar { display: none; }
.hub-tabs a {
  display: block;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.hub-tabs a:hover { color: var(--blue); text-decoration: none; }
.hub-tabs a.hub-tab-active { color: var(--red); border-bottom-color: var(--red); }

.hub-group { padding: 2.2rem 0 0.4rem; }
.hub-group[id] { scroll-margin-top: calc(var(--header-h) + 14px); }
.hub-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.hub-group-head h2 { font-size: 1.3rem; letter-spacing: -0.01em; }
.hub-group-count { font-size: 0.82rem; color: var(--muted); font-weight: 600; white-space: nowrap; }

.hub-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
a.hub-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.3rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s var(--ease);
}
a.hub-row:last-child { border-bottom: none; }
a.hub-row:hover { background: var(--blue-dim); text-decoration: none; }
.hub-row-icon { width: 46px; height: 46px; flex-shrink: 0; }
.hub-row-main { flex: 1; min-width: 0; }
.hub-row-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}
.hub-row-sub {
  font-size: 0.88rem;
  color: var(--text-2);
  margin: 0 0 0.35rem;
  max-width: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.hub-row-facts { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.hub-row-facts .sep { margin: 0 0.4rem; color: var(--border-hi); }
.hub-row-side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}
.hub-row-date { font-size: 0.75rem; color: var(--muted); white-space: nowrap; }
.hub-row-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
a.hub-row:hover .hub-row-arrow { background: var(--red); border-color: var(--red); }
a.hub-row:hover .hub-row-arrow img { filter: brightness(0) invert(1); }

@media (max-width: 700px) {
  a.hub-row { align-items: flex-start; padding: 1rem 1.05rem; gap: 0.85rem; }
  .hub-row-icon { width: 40px; height: 40px; margin-top: 0.15rem; }
  .hub-row-side { flex-direction: row; align-items: center; }
  .hub-row-date { display: none; }
  .hub-row-arrow { width: 26px; height: 26px; margin-top: 0.3rem; }
}

/* ── Guide article template (editorial, no hero) ──────────── */
.g-head {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 0 2rem;
}
.g-head .crumbs-light { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.1rem; }
.g-head .crumbs-light a { color: var(--text-2); }
.g-head-tags { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.g-head-tags .g-read { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.g-head h1 { font-size: clamp(1.6rem, 4.5vw, 2.1rem); letter-spacing: -0.02em; margin-bottom: 0.6rem; max-width: 26ch; }
.g-stand { font-size: 1.02rem; color: var(--text-2); max-width: 62ch; margin: 0 0 1.1rem; }
.g-byline { display: flex; align-items: center; gap: 0.55rem; font-size: 0.86rem; color: var(--muted); flex-wrap: wrap; }
.g-byline img { width: 28px; height: 28px; border-radius: 50%; }
.g-byline a { color: var(--text-2); font-weight: 600; }
.g-byline .sep { color: var(--border-hi); }
.g-disclosure { font-size: 0.78rem; color: var(--muted); margin: 0.8rem 0 0; }

.g-layout { padding: 0.4rem 0 1rem; }
.g-article { max-width: 720px; min-width: 0; }
.g-article p { margin-bottom: 1rem; }
.g-article ul, .g-article ol { margin-bottom: 1rem; }
.g-article li { margin-bottom: 0.35rem; }

.g-toc { display: none; }

@media (min-width: 1080px) {
  .g-layout > .container { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 3.5rem; align-items: start; }
  .g-toc {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 28px);
    padding-left: 1.1rem;
    border-left: 1px solid var(--border);
    margin-top: 2.6rem;
  }
  .g-toc-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
  .g-toc a { display: block; padding: 0.28rem 0; font-size: 0.86rem; color: var(--text-2); line-height: 1.35; }
  .g-toc a:hover { color: var(--blue); text-decoration: none; }
  .g-toc a.active { color: var(--red); font-weight: 700; }
}

.g-toc-m { border: 1px solid var(--border); border-radius: var(--radius); margin: 1.4rem 0 0.2rem; background: var(--surface); }
.g-toc-m summary { padding: 0.8rem 1.1rem; font-weight: 700; font-size: 0.92rem; color: var(--blue); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.g-toc-m summary::-webkit-details-marker { display: none; }
.g-toc-m summary::after { content: '+'; color: var(--muted); font-weight: 400; font-size: 1.2rem; }
.g-toc-m[open] summary::after { content: '-'; }
.g-toc-m ul { list-style: none; padding: 0 1.1rem 0.7rem; margin: 0; }
.g-toc-m li { margin: 0; border-top: 1px solid var(--border); }
.g-toc-m a { display: block; padding: 0.5rem 0; font-size: 0.88rem; color: var(--text-2); }
@media (min-width: 1080px) { .g-toc-m { display: none; } }

.g-sec { padding-top: 0.4rem; }
.g-sec + .g-sec { border-top: 1px solid var(--border); margin-top: 2.1rem; padding-top: 2rem; }
.g-sec[id] { scroll-margin-top: calc(var(--header-h) + 22px); }
.g-sec h2 { font-size: 1.38rem; letter-spacing: -0.01em; margin-bottom: 0.9rem; }
.g-sec h3 { font-size: 1.05rem; margin: 1.2rem 0 0.5rem; }

/* Verdict cards: who the law hits, at a glance */
.g-verdict { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin: 1.3rem 0 0.4rem; }
.gv-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 1rem 1.05rem; }
.gv-who { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; }
.gv-status { display: flex; align-items: center; gap: 0.45rem; font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--blue); line-height: 1.25; }
.gv-status img { width: 18px; height: 18px; flex-shrink: 0; filter: invert(28%) sepia(94%) saturate(1400%) hue-rotate(200deg) brightness(0.5); }
.gv-status.neg { color: var(--red); }
.gv-status.neg img { filter: invert(14%) sepia(76%) saturate(4700%) hue-rotate(340deg) brightness(0.85); }
.gv-note { font-size: 0.82rem; color: var(--text-2); margin: 0.4rem 0 0; }
@media (max-width: 700px) { .g-verdict { grid-template-columns: 1fr; } }

/* Vertical timeline */
.g-timeline { margin: 1.4rem 0; padding-left: 1.6rem; border-left: 2px solid var(--border); display: grid; gap: 1.35rem; }
.g-tl { position: relative; }
.g-tl::before {
  content: '';
  position: absolute;
  left: calc(-1.6rem - 1px);
  transform: translateX(-50%);
  top: 0.32rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--blue-mid);
}
.g-tl.now::before { border-color: var(--red); }
.g-tl-year { font-family: var(--font-display); font-weight: 800; font-size: 0.98rem; color: var(--blue); }
.g-tl p { font-size: 0.92rem; color: var(--text-2); margin: 0.15rem 0 0; }

/* Key-figure band */
.g-figures { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 1.3rem 0 0.4rem; }
.g-fig { background: var(--surface); padding: 1rem 1.05rem; }
.gf-v { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--blue); line-height: 1.2; }
.gf-k { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
@media (min-width: 760px) { .g-figures { grid-template-columns: repeat(4, 1fr); } }

/* Formula card */
.g-formula { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-2); padding: 1.4rem 1.2rem 1.2rem; text-align: center; margin: 1.3rem 0; }
.g-formula-row { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.gfx { min-width: 90px; }
.gfx-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; color: var(--blue); line-height: 1.2; }
.gfx-lbl { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); margin-top: 0.15rem; }
.gfx-op { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--blue-mid); }
.g-formula-note { font-size: 0.82rem; color: var(--text-2); margin: 0.9rem 0 0; }

/* Head-to-head split */
.g-vs { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 1.3rem 0; }
.g-vs-col { background: var(--surface); padding: 1.15rem 1.1rem; min-width: 0; }
.g-vs-col h3 { font-size: 1.05rem; margin: 0 0 0.1rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.gvs-net { font-size: 0.78rem; color: var(--muted); margin: 0 0 0.6rem; }
.gvs-row { padding: 0.55rem 0; border-top: 1px solid var(--border); }
.gvs-row .k { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.gvs-row .v { font-size: 0.92rem; font-weight: 600; color: var(--text); }
.g-vs-badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--surface);
  z-index: 1;
}
.g-addr { font-family: ui-monospace, Consolas, 'Courier New', monospace; background: var(--blue-dim); padding: 0.08rem 0.4rem; border-radius: 4px; font-size: 0.88em; }
@media (max-width: 560px) { .g-vs-col { padding: 0.95rem 0.8rem; } .gvs-row .v { font-size: 0.86rem; } }

/* Interactive checklist */
.g-check { list-style: none; padding: 0; margin: 1.3rem 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; counter-reset: gc; }
.g-check li { margin: 0; border-bottom: 1px solid var(--border); }
.g-check li:last-child { border-bottom: none; }
.g-check label { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 1.15rem; cursor: pointer; transition: background 0.15s var(--ease); }
.g-check label:hover { background: var(--blue-dim); }
.g-check input { width: 20px; height: 20px; accent-color: var(--red); margin-top: 0.15rem; flex-shrink: 0; cursor: pointer; }
.gc-body { counter-increment: gc; }
.gc-body strong { display: block; color: var(--blue); font-family: var(--font-display); margin-bottom: 0.15rem; }
.gc-body strong::before { content: counter(gc) '. '; color: var(--blue-mid); }
.gc-body span { font-size: 0.92rem; color: var(--text-2); }
.g-check input:checked + .gc-body { opacity: 0.5; }
.g-check input:checked + .gc-body strong { text-decoration: line-through; text-decoration-thickness: 1px; }

/* Document / info cards */
.g-docs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin: 1.3rem 0; }
.g-doc { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 1rem 1.05rem; }
.g-doc-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.3rem; }
.g-doc h3 { font-size: 0.98rem; margin: 0 0 0.3rem; }
.g-doc p { font-size: 0.85rem; color: var(--text-2); margin: 0; }
@media (max-width: 700px) { .g-docs { grid-template-columns: 1fr; } }

/* Help contact cards */
.g-help { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin: 1.3rem 0; }
.gh-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 1.1rem 1.05rem; }
.gh-name { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.gh-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; margin: 0.25rem 0 0.3rem; color: var(--blue); }
a.gh-num { color: var(--red); }
a.gh-num:hover { color: var(--red-dark); text-decoration: none; }
.gh-desc { font-size: 0.84rem; color: var(--text-2); margin: 0; }
@media (max-width: 700px) { .g-help { grid-template-columns: 1fr; } }

/* Decision flow */
.g-flow { margin: 1.3rem 0; }
.gq { position: relative; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 0.95rem 1.1rem; }
.gq + .gq { margin-top: 1.15rem; }
.gq:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%; bottom: calc(-1.15rem - 1px);
  transform: translateX(-50%);
  width: 2px; height: 1.15rem;
  background: var(--border-hi);
}
.gq-t { font-weight: 700; color: var(--text); margin: 0 0 0.55rem; }
.gq-answers { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.gq-a { font-size: 0.85rem; padding: 0.35rem 0.75rem; border-radius: var(--radius-sm); background: var(--blue-dim); color: var(--text-2); }
.gq-a strong { color: var(--blue); }
.gq-result { background: var(--blue); border-color: var(--blue); }
.gq-result .gq-t { color: #fff; margin: 0; }
.gq-result p { color: rgba(255, 255, 255, 0.85); font-size: 0.88rem; margin: 0.35rem 0 0; }

/* -- Money-page card v2: content left, phone mock right -- */
.mp-card-v2 { display: grid; grid-template-columns: minmax(0, 1fr) 252px; padding: 0; overflow: hidden; }
.mp-card-v2 .mp-main { padding: 1.25rem 1.4rem 1.3rem; min-width: 0; }
.mp-side {
  border-left: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2) 0%, #E9EEF7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.5rem 1.1rem;
}
.mp-phone {
  width: 198px;
  background: var(--navy-deep);
  border-radius: 26px;
  padding: 7px;
  box-shadow: 0 16px 32px rgba(0, 18, 51, 0.20);
}
.mp-phone img { display: block; width: 100%; height: auto; border-radius: 20px; }
.mp-side-cap { font-size: 0.75rem; font-weight: 600; color: var(--muted); }

@media (max-width: 840px) {
  .mp-card-v2 { grid-template-columns: 1fr; }
  .mp-side { border-left: none; border-top: 1px solid var(--border); padding: 1.3rem 1rem; }
  .mp-phone { width: 172px; }
}

/* -- Accessibility: links in text blocks must not rely on color alone -- */
main p a, main li a, main td a, main figcaption a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.crumbs a, .pn-list a, .g-toc-m a, .hub-tabs a { text-decoration: none; }
.crumbs a:hover, .pn-list a:hover, .g-toc-m a:hover, .hub-tabs a:hover { text-decoration: underline; }
.crumbs-light a { text-decoration: underline; text-underline-offset: 2px; }

/* -- Accessibility: 24px minimum touch target on small inline links -- */
.mp-sub a {
  display: inline-block;
  padding: 0.3rem 0.2rem;
  margin: -0.3rem -0.2rem;
}

/* -- Subheadings inside prose sections follow the reading column -- */
.section > h3 {
  max-width: 72ch;
  margin: 1.7rem auto 0.55rem;
  font-size: 1.12rem;
}

/* -- Homepage hero: fanned casino phone screenshots (right column) -- */
.hero-phones { display: none; }
.hero-home > .container { padding-top: 2.4rem; padding-bottom: 2.4rem; }
@media (min-width: 1024px) {
  .hero-home > .container { padding-top: 3.2rem; padding-bottom: 3.4rem; }
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 3rem;
  }
  .hero-phones { display: block; position: relative; height: 452px; }
}
.hp {
  position: absolute;
  border-radius: 24px;
  border: 6px solid var(--navy-deep);
  background: var(--navy-deep);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 5, 26, 0.55);
}
.hp img { display: block; width: 100%; height: auto; }
.hp-1 { width: 196px; left: 50%; transform: translateX(-50%); top: 0; z-index: 3; }
.hp-2 { width: 172px; left: 5%; top: 50px; transform: rotate(-6deg); z-index: 2; opacity: 0.94; }
.hp-3 { width: 172px; right: 5%; top: 62px; transform: rotate(6deg); z-index: 1; opacity: 0.94; }
.hp-chip {
  position: absolute;
  z-index: 4;
  right: 9%;
  top: -10px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--red);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 18, 51, 0.35);
}
.hp-chip small { font-weight: 600; font-size: 0.74rem; }

/* -- Byline + disclosure strip under the homepage hero -- */
.byline-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.7rem;
  padding: 0.95rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.byline-bar a { color: var(--blue-mid); text-decoration: underline; text-underline-offset: 2px; }
.bb-author { display: inline-flex; align-items: center; gap: 0.5rem; }
.bb-author img { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-hi); }

/* -- Header: nav icons, grouped dropdowns, mobile accordion -- */
.nav-ico { opacity: 0.75; flex-shrink: 0; }
.nav-divider { height: 1px; background: var(--border); margin: 0.3rem 0.4rem; }
@media (min-width: 900px) {
  .nav-dropdown-menu { left: 0; right: auto; }
  .site-nav > ul > li:last-child .nav-dropdown-menu { left: auto; right: 0; }
}
.m-group { border-bottom: 1px solid var(--border); }
.m-group summary {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.05rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue);
  list-style: none;
}
.m-group summary::-webkit-details-marker { display: none; }
.m-group summary:hover { background: var(--blue-dim); }
.m-ico { opacity: 0.8; flex-shrink: 0; }
.m-caret { margin-left: auto; transition: transform 0.2s var(--ease); }
.m-group[open] > summary .m-caret { transform: rotate(180deg); }
.m-group ul { list-style: none; padding: 0 0 0.5rem; }
.m-group ul a {
  padding: 0.7rem 1.5rem 0.7rem 2.8rem;
  font-size: 1rem;
  border-bottom: none;
}
.m-group ul a:hover,
.m-group ul a[aria-current="page"] { padding-left: 3.2rem; }
.mobile-nav { padding-bottom: 2rem; }

/* -- Long dropdowns (Anmeldelser): cap height, scroll inside -- */
.nav-dropdown-menu.nav-scroll {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hi) var(--surface);
}
.nav-dropdown-menu.nav-scroll::-webkit-scrollbar { width: 4px; }
.nav-dropdown-menu.nav-scroll::-webkit-scrollbar-track { background: var(--surface); }
.nav-dropdown-menu.nav-scroll::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 4px; }

/* ---- Hurtigoversikt (quick comparison table over toplisten) ---- */
.quick-table td { vertical-align: middle; }
.quick-table .qt-rank {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  width: 2.4rem;
}
.qt-casino {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.qt-casino > img:first-child { border-radius: 8px; flex-shrink: 0; }
.qt-casino span { text-decoration: underline; text-underline-offset: 2px; }
.qt-casino .qt-down { opacity: 0.55; transition: transform 0.18s var(--ease); }
.qt-casino:hover span { color: var(--red); }
.qt-casino:hover .qt-down { transform: translateY(2px); }
.quick-table td:nth-child(3) { min-width: 210px; }
.qt-pay-grid {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 4px 6px;
  align-items: center;
  width: max-content;
}
.qt-pay-grid img {
  display: block;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #FFFFFF;
}
.qt-go { text-align: right; }
.qt-cta { font-size: 0.9rem; padding: 0.5rem 1.15rem; white-space: nowrap; }
.mp-card { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---- Guide hero illustration ---- */
.g-head-inner { display: flex; flex-direction: column; }
.g-hero-art { margin: 1.7rem auto 0.2rem; }
.g-hero-art img { display: block; width: min(280px, 68vw); height: auto; }
@media (min-width: 900px) {
  .g-head-inner { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 3.2rem; align-items: center; }
  .g-hero-art { margin: 0; justify-self: end; }
  .g-hero-art img { width: 330px; }
}
