/* SkinTrade Sweden — dark casino affiliate aesthetic */
:root {
  --bg: #0b0f14;
  --bg-elevated: #121821;
  --bg-card: #161d28;
  --bg-card-hover: #1a2330;
  --bg-panel: #141b24;
  --ink: #f2f5f8;
  --ink-soft: #c5ced8;
  --muted: #8b97a8;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --teal: #2dd4a8;
  --teal-deep: #1a9e7a;
  --teal-dim: rgba(45, 212, 168, 0.12);
  --gold: #f5c542;
  --gold-deep: #d4a017;
  --gold-glow: rgba(245, 197, 66, 0.28);
  --danger: #f07167;
  --danger-dim: rgba(240, 113, 103, 0.12);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Lexend", "Segoe UI", sans-serif;
  --max: 1080px;
  --header-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 15% -5%, rgba(45, 212, 168, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 40% at 95% 8%, rgba(245, 197, 66, 0.07), transparent 45%),
    linear-gradient(180deg, #0d1219 0%, var(--bg) 40%, #090c11 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.gate-locked {
  overflow: hidden;
}

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

a {
  color: var(--teal);
  text-underline-offset: 3px;
}

a:hover {
  color: #7eefc8;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-deep);
  color: #04120e;
  padding: 0.75rem 1rem;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

/* —— Age gate —— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(5, 8, 12, 0.92);
  backdrop-filter: blur(12px);
  opacity: 1;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.age-gate[hidden] {
  display: none;
}

.age-gate.is-hiding {
  opacity: 0;
  pointer-events: none;
}

.age-gate__panel {
  width: min(100%, 440px);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  animation: gateIn 0.55s var(--ease) both;
}

@keyframes gateIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.age-gate__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--teal);
  margin: 0 0 0.75rem;
}

.age-gate__panel h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
  line-height: 1.25;
  color: var(--ink);
}

.age-gate__panel p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.age-gate__note {
  margin-top: 1rem !important;
  font-size: 0.8rem !important;
  color: var(--muted) !important;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  border-radius: 8px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #04120e;
  box-shadow: 0 8px 24px rgba(45, 212, 168, 0.28);
}

.btn--primary:hover {
  color: #04120e;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(45, 212, 168, 0.38);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--amber {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1200;
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btn--amber:hover {
  color: #1a1200;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 15, 20, 0.9);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.logo__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.logo__text span {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink);
}

/* —— Hero (compact) —— */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2rem 0 1.5rem;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(45, 212, 168, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(245, 197, 66, 0.08), transparent 50%),
    linear-gradient(180deg, #101820 0%, transparent 100%);
  opacity: 0.9;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/hero-aurora.svg") center / cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  animation: auroraDrift 16s ease-in-out infinite alternate;
}

@keyframes auroraDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-2%, 1%, 0) scale(1.04);
  }
}

.hero__content {
  max-width: 720px;
  animation: heroRise 0.75s var(--ease) both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--teal);
  margin: 0 0 0.65rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.hero__lead {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.hero__legal {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero__meta strong {
  color: var(--ink-soft);
  font-weight: 600;
}

/* —— Sections —— */
.section {
  padding: 2.25rem 0;
}

.section--tight {
  padding: 1.25rem 0;
}

.section--list {
  padding: 0.5rem 0 2rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  color: var(--ink);
}

.section__intro {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 0.95rem;
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}

/* —— TOC —— */
.toc-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

.toc-panel__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  user-select: none;
}

.toc-panel__summary::-webkit-details-marker {
  display: none;
}

.toc-panel__summary::after {
  content: "Visa";
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--teal);
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(45, 212, 168, 0.35);
  border-radius: 6px;
}

.toc-panel[open] .toc-panel__summary::after {
  content: "Dölj";
}

.toc-panel__meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  padding: 0 1.15rem;
}

.toc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem 1.25rem;
  padding: 0 1.15rem 1.1rem;
  margin: 0;
  counter-reset: toc;
  list-style: none;
}

@media (min-width: 640px) {
  .toc {
    grid-template-columns: 1fr 1fr;
  }

  .toc-panel {
    /* Desktop: open by default via attribute; compact 2-col */
  }

  .toc-panel__summary::after {
    content: "Innehåll";
    border: none;
    padding: 0;
    color: var(--muted);
    font-weight: 500;
  }

  .toc-panel[open] .toc-panel__summary::after {
    content: "Innehåll";
  }
}

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

.toc li {
  counter-increment: toc;
  margin: 0;
}

.toc a {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 0.35rem 0.4rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.toc a::before {
  content: counter(toc, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--gold);
  min-width: 1.4rem;
}

.toc a:hover,
.toc a.is-active {
  color: var(--ink);
  background: rgba(45, 212, 168, 0.1);
}

/* —— Brand ranking list —— */
.rank-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}

.brand-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(45, 212, 168, 0.3);
}

.brand-card--top {
  border-color: rgba(245, 197, 66, 0.45);
  background: linear-gradient(145deg, #1a2230 0%, #161d28 55%, #1c2418 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(245, 197, 66, 0.12);
}

.brand-card__rank {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  align-self: start;
}

.brand-card--top .brand-card__rank {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1200;
}

.brand-card__logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  color: #fff;
  flex-shrink: 0;
}

.brand-card__main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.brand-card__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
}

.brand-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: rgba(245, 197, 66, 0.18);
  color: var(--gold);
}

/* Stars — large, bright gold */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.rating__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px var(--gold-glow);
}

.rating__stars span {
  color: var(--gold);
}

.rating__stars .star--empty {
  color: rgba(245, 197, 66, 0.22);
}

.rating__score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.rating__max {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.1rem;
}

.brand-card__bonus {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.brand-card__bonus strong {
  color: var(--teal);
}

.brand-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.brand-card__chips li {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.brand-card__cta {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand-card__fine {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

@media (min-width: 720px) {
  .brand-card {
    grid-template-columns: auto auto 1fr auto;
    gap: 1rem 1.15rem;
  }

  .brand-card__rank {
    grid-row: auto;
    align-self: center;
  }

  .brand-card__cta {
    grid-column: auto;
    min-width: 168px;
  }
}

.list-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.85rem 1rem;
  background: var(--danger-dim);
  border-left: 3px solid var(--danger);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.list-disclaimer strong {
  color: var(--danger);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

th,
td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--ink-soft);
}

th {
  background: rgba(45, 212, 168, 0.08);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
}

td:first-child {
  color: var(--ink);
  font-weight: 500;
}

tr:last-child td {
  border-bottom: none;
}

/* Pros / cons */
.split {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.list-box {
  margin: 0;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.list-box--pro {
  border-color: rgba(45, 212, 168, 0.3);
}

.list-box--con {
  border-color: rgba(240, 113, 103, 0.3);
}

.list-box h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
  color: var(--ink);
}

.list-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.list-box li {
  margin-bottom: 0.35rem;
}

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--teal);
  color: #04120e;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
}

.steps strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
  color: var(--ink);
}

/* FAQ */
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}

.faq details[open] {
  border-color: rgba(45, 212, 168, 0.35);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  list-style: none;
  color: var(--ink);
  font-size: 0.95rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.65rem 0 0.15rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Callouts */
.callout {
  border-left: 3px solid var(--danger);
  background: var(--danger-dim);
  padding: 0.9rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
}

.callout--info {
  border-left-color: var(--teal);
  background: var(--teal-dim);
}

.callout p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.callout strong {
  color: var(--danger);
}

.callout--info strong {
  color: var(--teal);
}

/* Prose */
.prose p {
  margin: 0 0 0.85rem;
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1.4rem 0 0.5rem;
  color: var(--ink);
}

.prose ul,
.prose ol {
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.prose li {
  margin-bottom: 0.3rem;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.trust-strip strong {
  color: var(--gold);
  font-weight: 700;
}

/* Footer */
.site-footer {
  margin-top: 1.5rem;
  padding: 2.25rem 0 6.5rem;
  background: #070a0e;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
}

.site-footer a {
  color: var(--teal);
}

.site-footer a:hover {
  color: #7eefc8;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.35rem;
}

.site-footer p {
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(7, 10, 14, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-strong);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sticky-cta__text {
  color: var(--ink);
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.sticky-cta .btn {
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

/* Legal / inner pages */
.page-hero {
  padding: 2.25rem 0 1.25rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.breadcrumb a {
  text-decoration: none;
}

.updated {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-strong);
    padding: 0.5rem 1rem 1rem;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .nav .btn {
    margin-top: 0.65rem;
    width: 100%;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__visual::after,
  .hero__content,
  .age-gate__panel,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
