/* ============================================================
   Donbet — UK Casino Guide
   Shared design system
   Type: Sora (display) + Manrope (body)
   Accent hue is a single variable so tweaks can swap it.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --accent-h: 195;                                   /* teal default */
  --accent:        oklch(0.83 0.13 var(--accent-h));
  --accent-bright: oklch(0.88 0.14 var(--accent-h));
  --accent-deep:   oklch(0.66 0.15 var(--accent-h));
  --accent-soft:   oklch(0.83 0.13 var(--accent-h) / 0.14);
  --accent-line:   oklch(0.83 0.13 var(--accent-h) / 0.30);
  --accent-glow:   oklch(0.83 0.16 var(--accent-h) / 0.45);

  --gold:      oklch(0.85 0.125 88);
  --gold-soft: oklch(0.85 0.125 88 / 0.15);

  --good: oklch(0.82 0.14 158);
  --warn: oklch(0.84 0.13 70);

  /* Midnight (default dark) */
  --bg:    oklch(0.165 0.022 255);
  --bg-1:  oklch(0.205 0.026 256);
  --bg-2:  oklch(0.245 0.03 257);
  --bg-hero: radial-gradient(120% 120% at 80% -10%, oklch(0.30 0.05 var(--accent-h) / 0.55) 0%, transparent 55%),
             radial-gradient(90% 90% at 0% 0%, oklch(0.26 0.04 280 / 0.6) 0%, transparent 50%),
             oklch(0.135 0.02 256);
  --line:        oklch(1 0 0 / 0.08);
  --line-strong: oklch(1 0 0 / 0.16);
  --text:   oklch(0.96 0.008 255);
  --text-2: oklch(0.80 0.018 256);
  --text-3: oklch(0.63 0.02 257);
  --card-shadow: 0 1px 0 oklch(1 0 0 / 0.05) inset, 0 18px 40px -24px oklch(0 0 0 / 0.8);

  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 26px;
  --space: clamp(56px, 9vw, 104px);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

/* Daylight: light body, dark hero/CTA/footer panels stay dark via .on-dark */
[data-theme="daylight"] {
  --bg:    oklch(0.975 0.004 255);
  --bg-1:  oklch(1 0 0);
  --bg-2:  oklch(0.965 0.006 256);
  --line:        oklch(0.2 0.02 256 / 0.10);
  --line-strong: oklch(0.2 0.02 256 / 0.20);
  --text:   oklch(0.26 0.02 256);
  --text-2: oklch(0.42 0.02 256);
  --text-3: oklch(0.55 0.018 257);
  --accent-soft: oklch(0.66 0.14 var(--accent-h) / 0.10);
  --accent-line: oklch(0.66 0.14 var(--accent-h) / 0.34);
  --card-shadow: 0 1px 0 oklch(1 0 0 / 0.7) inset, 0 16px 34px -26px oklch(0.3 0.05 256 / 0.5);
}
[data-theme="daylight"] .accent-text { color: var(--accent-deep); }

/* Always-dark panels keep light text in Daylight mode; nested light cards re-assert dark text. */
[data-theme="daylight"] .hero,
[data-theme="daylight"] .cta-band {
  --text:   oklch(0.96 0.008 255);
  --text-2: oklch(0.82 0.02 256);
  --text-3: oklch(0.66 0.02 256);
  --line:        oklch(1 0 0 / 0.08);
  --line-strong: oklch(1 0 0 / 0.16);
}
[data-theme="daylight"] .hero .card {
  --text:   oklch(0.26 0.02 256);
  --text-2: oklch(0.42 0.02 256);
  --text-3: oklch(0.55 0.018 257);
  --line:        oklch(0.2 0.02 256 / 0.10);
  --line-strong: oklch(0.2 0.02 256 / 0.20);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 7.5vw, 3.5rem); }
h2 { font-size: clamp(1.55rem, 5vw, 2.45rem); }
h3 { font-size: clamp(1.18rem, 3.6vw, 1.45rem); letter-spacing: -0.015em; }
h4 { font-size: 1.02rem; letter-spacing: -0.01em; }
p { color: var(--text-2); text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
strong { color: var(--text); font-weight: 700; }
.accent-text { color: var(--accent-bright); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-bright);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

.lede { font-size: clamp(1.02rem, 2.4vw, 1.18rem); color: var(--text-2); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
section { padding-block: var(--space); }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 5vw, 44px); display: grid; gap: 14px; }
.faq-head { margin-bottom: 0; }
.faq-head > .btn { width: fit-content; margin-top: 8px; }
@media (min-width: 720px) { .faq-head { position: sticky; top: 90px; } }
.grid { display: grid; gap: 18px; }
@media (min-width: 720px) { .g2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .g3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .g4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Top notice bar ---------- */
.topbar {
  background: oklch(0.12 0.02 256);
  color: var(--text-3);
  font-size: 0.74rem; letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 9px; line-height: 1.3; }
.topbar .age, .topbar .right { white-space: nowrap; }
.topbar .age { min-width: 0; }
.topbar .age { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text-2); }
.age-badge {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-bright);
  border: 1px solid var(--accent-line); font-size: 0.62rem; font-weight: 800; font-family: var(--font-display);
}
.topbar .right { display: none; }
@media (min-width: 720px) { .topbar .right { display: inline; } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: oklch(0.155 0.022 255 / 0.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
[data-theme="daylight"] .site-header { background: oklch(1 0 0 / 0.78); }
.site-header .wrap { display: flex; align-items: center; gap: 16px; min-height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.03em; color: var(--text); }
.brand .glyph {
  width: 30px; height: 30px; transform: rotate(45deg); border-radius: 9px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  box-shadow: 0 0 0 1px var(--accent-line), 0 6px 18px -6px var(--accent-glow);
  position: relative; flex: none;
}
.brand .glyph::after { content: ""; position: absolute; inset: 7px; border-radius: 5px; border: 2px solid oklch(0.14 0.02 256 / 0.55); }
.brand b { color: var(--accent-bright); font-weight: 800; }

.nav { display: none; margin-left: auto; align-items: center; gap: 4px; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a { padding: 9px 13px; border-radius: 9px; font-size: 0.92rem; font-weight: 600; color: var(--text-2); transition: color .18s, background .18s; }
.nav a:hover { color: var(--text); background: var(--bg-1); }
.nav a.is-active { color: var(--accent-bright); }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
@media (min-width: 940px) { .header-cta { margin-left: 6px; } }

.burger { margin-left: auto; display: inline-grid; gap: 5px; width: 42px; height: 42px; place-content: center; border: 1px solid var(--line-strong); border-radius: 11px; background: var(--bg-1); cursor: pointer; }
@media (min-width: 940px) { .burger { display: none; } }
.burger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 10px clamp(18px,5vw,40px) 20px; border-bottom: 1px solid var(--line); background: var(--bg); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 14px; border-radius: 11px; font-weight: 600; color: var(--text-2); background: var(--bg-1); }
.mobile-nav a.is-active { color: var(--accent-bright); border: 1px solid var(--accent-line); }
@media (min-width: 940px) { .mobile-nav { display: none !important; } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-body); font-weight: 700; font-size: 0.96rem; padding: 13px 22px; border-radius: 12px; cursor: pointer; border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep)); color: oklch(0.16 0.02 256); box-shadow: 0 10px 30px -12px var(--accent-glow); }
.btn-primary:hover { box-shadow: 0 14px 38px -10px var(--accent-glow); transform: translateY(-1px); }
.btn-ghost { background: var(--bg-1); color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent-line); color: var(--accent-bright); }
.btn-sm { padding: 9px 15px; font-size: 0.86rem; border-radius: 10px; }
.btn-lg { padding: 16px 28px; font-size: 1.04rem; }
.btn-block { width: 100%; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Cards ---------- */
.card { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 28px); box-shadow: var(--card-shadow); }
.card-tight { padding: 18px; }
.card-accent { border-color: var(--accent-line); background: linear-gradient(180deg, var(--accent-soft), transparent 60%), var(--bg-1); }

.icon-chip { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-bright); flex: none; }
.icon-chip svg { width: 22px; height: 22px; }
.icon-chip.gold { background: var(--gold-soft); border-color: oklch(0.85 0.125 88 / 0.34); color: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--bg-hero); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(80% 70% at 70% 0%, #000, transparent 75%); mask-image: radial-gradient(80% 70% at 70% 0%, #000, transparent 75%); opacity: .5; pointer-events: none; }
.hero .wrap { position: relative; z-index: 1; padding-block: clamp(40px, 8vw, 80px); }
.hero-grid { display: grid; gap: clamp(34px, 5vw, 56px); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; } }
.hero h1 { margin-bottom: 18px; }
.hero .lede { max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 26px; color: var(--text-3); font-size: 0.86rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.check { color: var(--accent-bright); }

/* ---------- Rating / score visual ---------- */
.score-card { display: grid; gap: 18px; }
.score-ring { --val: 92; width: 132px; height: 132px; border-radius: 50%; display: grid; place-items: center; margin-inline: auto; position: relative; background: conic-gradient(var(--accent-bright) calc(var(--val) * 1%), var(--line) 0); }
.score-ring::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: var(--bg-1); }
.score-ring .num { position: relative; font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; line-height: 1; }
.score-ring .num small { display: block; font-size: 0.62rem; letter-spacing: .12em; color: var(--text-3); font-weight: 700; text-transform: uppercase; margin-top: 4px; }
.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }
.score-rows { display: grid; gap: 12px; }
.score-row { display: grid; gap: 6px; }
.score-row .lab { display: flex; justify-content: space-between; gap: 10px; font-size: 0.82rem; color: var(--text-2); font-weight: 600; white-space: nowrap; }
.bar { height: 7px; border-radius: 6px; background: var(--line); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright)); width: 0; transition: width 1.1s cubic-bezier(.2,.7,.2,1); }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 18px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-1); }
.stat .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 5vw, 2rem); color: var(--text); letter-spacing: -0.02em; }
.stat .lab { font-size: 0.76rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-top: 4px; }

/* ---------- Facts / spec table ---------- */
.spec { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-1); }
.spec-row { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
@media (min-width: 560px) { .spec-row { grid-template-columns: 200px 1fr; gap: 16px; align-items: baseline; } }
.spec-row:last-child { border-bottom: 0; }
.spec-row .k { font-weight: 700; color: var(--text); font-size: 0.92rem; }
.spec-row .v { color: var(--text-2); font-size: 0.95rem; }
.spec-row:nth-child(even) { background: oklch(1 0 0 / 0.02); }
[data-theme="daylight"] .spec-row:nth-child(even) { background: oklch(0.2 0.02 256 / 0.025); }

/* ---------- Generic data table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; min-width: 460px; font-size: 0.92rem; }
table.data th, table.data td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
table.data thead th { background: var(--bg-2); font-family: var(--font-display); font-size: 0.8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text-2); font-weight: 700; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data td { color: var(--text-2); }
table.data td strong { color: var(--text); }

/* ---------- Pills / badges ---------- */
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; border: 1px solid var(--line-strong); color: var(--text-2); background: var(--bg-1); }
.pill.accent { color: var(--accent-bright); border-color: var(--accent-line); background: var(--accent-soft); }
.pill.gold { color: var(--gold); border-color: oklch(0.85 0.125 88 / 0.34); background: var(--gold-soft); }
.pill.good { color: var(--good); border-color: oklch(0.82 0.14 158 / 0.34); background: oklch(0.82 0.14 158 / 0.12); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 14px; counter-reset: s; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-1); }
.step .n { counter-increment: s; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-bright); }
.step .n::before { content: counter(s, decimal-leading-zero); }
.step h3 { margin-bottom: 4px; font-size: 1.12rem; }
.step p { font-size: 0.92rem; }

/* ---------- Feature cards ---------- */
.feature { display: grid; gap: 12px; }
.feature h3 { margin-top: 2px; font-size: 1.12rem; }
.feature p { font-size: 0.92rem; }

/* ---------- Verification note ---------- */
.verify { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm); border: 1px dashed var(--accent-line); background: var(--accent-soft); font-size: 0.86rem; color: var(--text-2); }
.verify svg { width: 18px; height: 18px; color: var(--accent-bright); flex: none; margin-top: 2px; }
.verify strong { color: var(--text); }

/* ---------- Reviews ---------- */
.review { display: grid; gap: 12px; }
.review .who { display: flex; align-items: center; gap: 11px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--text-2); }
.review .who .meta { font-size: 0.78rem; color: var(--text-3); }
.review .who .meta b { display: block; color: var(--text); font-size: 0.92rem; font-weight: 700; }
.review p { font-size: 0.94rem; color: var(--text-2); }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-1); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--text); }
.faq-q .ic { width: 26px; height: 26px; flex: none; border-radius: 8px; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: .25s; color: var(--accent-bright); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--accent-soft); border-color: var(--accent-line); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a .inner { padding: 0 20px 20px; color: var(--text-2); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(28px, 5vw, 48px); text-align: center; background: var(--bg-hero); border: 1px solid var(--accent-line); }
.cta-band::before { content: ""; position: absolute; inset: -40% 30% auto -10%; height: 280px; background: radial-gradient(closest-side, var(--accent-glow), transparent); filter: blur(20px); opacity: .55; pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { max-width: 52ch; margin-inline: auto; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.cta-band .disc { margin-top: 16px; font-size: 0.76rem; color: var(--text-3); }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 0.82rem; color: var(--text-3); display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.crumbs a:hover { color: var(--accent-bright); }
.crumbs .sep { opacity: .5; }
.crumbs [aria-current] { color: var(--text-2); font-weight: 600; }

/* ---------- Internal link cards ---------- */
.linkcards { display: grid; gap: 14px; }
@media (min-width: 720px) { .linkcards { grid-template-columns: repeat(3, 1fr); } }
.linkcard { display: grid; gap: 10px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-1); transition: border-color .2s, transform .2s; }
.linkcard:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.linkcard .go { color: var(--accent-bright); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 7px; }
.linkcard:hover .go .arr { transform: translateX(3px); }

/* ---------- Device mockup ---------- */
.device { width: 248px; max-width: 78vw; margin-inline: auto; aspect-ratio: 9 / 19; border-radius: 36px; padding: 12px; background: linear-gradient(160deg, oklch(0.3 0.03 256), oklch(0.18 0.02 256)); box-shadow: 0 30px 70px -30px var(--accent-glow), 0 0 0 1px var(--line-strong); position: relative; }
.device .screen { width: 100%; height: 100%; border-radius: 26px; background: var(--bg-hero); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.device .notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; border-radius: 999px; background: oklch(0.1 0.02 256); z-index: 2; }
.device .scr-top { padding: 30px 16px 12px; }
.device .scr-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; }
.device .scr-brand .glyph { width: 18px; height: 18px; border-radius: 5px; }
.device .scr-body { padding: 6px 16px 16px; display: grid; gap: 10px; align-content: start; }
.skel { border-radius: 8px; background: var(--bg-2); border: 1px solid var(--line); }
.device .scr-hero { height: 72px; border-radius: 12px; background: linear-gradient(135deg, var(--accent-soft), transparent), var(--bg-2); border: 1px solid var(--accent-line); display: grid; place-content: center; gap: 4px; text-align: center; }
.device .scr-hero b { font-family: var(--font-display); font-size: 0.82rem; color: var(--accent-bright); }
.device .scr-hero span { font-size: 0.6rem; color: var(--text-3); }
.device .tiles { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px; }
.device .tiles .skel { aspect-ratio: 1; }

/* ---------- Image placeholder ---------- */
.imgph { border-radius: var(--radius); border: 1px solid var(--line-strong); background-color: var(--bg-1); background-image: repeating-linear-gradient(45deg, oklch(1 0 0 / 0.03) 0 12px, transparent 12px 24px); display: grid; place-items: center; gap: 6px; color: var(--text-3); text-align: center; padding: 24px; min-height: 160px; }
.imgph code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.74rem; color: var(--text-2); background: var(--bg-2); padding: 4px 9px; border-radius: 6px; border: 1px solid var(--line); }
.imgph .ph-ic { color: var(--text-3); }

/* ---------- Payment / trust badges ---------- */
.pay-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pay { height: 44px; min-width: 72px; padding: 0 14px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-1); display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; color: var(--text-2); letter-spacing: -0.01em; }
.pay .swatch { width: 16px; height: 16px; border-radius: 4px; background: var(--bg-2); border: 1px solid var(--line-strong); }
.pay .swatch-ic { width: 26px; height: 22px; border-radius: 5px; background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent-bright); display: inline-grid; place-items: center; }
.pay .swatch-ic svg { width: 17px; height: 17px; }

/* ---------- Responsible gambling block ---------- */
.rg { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px); background: linear-gradient(180deg, oklch(0.84 0.13 70 / 0.06), transparent 60%), var(--bg-1); }
.rg .rg-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rg .icon-chip { background: var(--gold-soft); border-color: oklch(0.85 0.125 88 / 0.34); color: var(--gold); }
.rg-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.rg-tools .pay { color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { background: oklch(0.12 0.018 256); border-top: 1px solid var(--line); padding-block: clamp(40px, 6vw, 64px) 28px; color: var(--text-3); }
[data-theme="daylight"] .site-footer { background: oklch(0.2 0.02 256); }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-brand p { font-size: 0.9rem; max-width: 42ch; margin-top: 12px; color: oklch(0.7 0.02 256); }
.footer-col .footer-col-title { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: .14em; text-transform: uppercase; color: oklch(0.62 0.02 256); margin-bottom: 14px; font-weight: 700; }
.footer-col a, .footer-col span { display: block; padding: 5px 0; font-size: 0.92rem; color: oklch(0.74 0.02 256); }
.footer-col a:hover { color: var(--accent-bright); }
.footer-pay { margin-top: 22px; }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-bottom .age { color: oklch(0.74 0.02 256); display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.footer-disc { font-size: 0.78rem; color: oklch(0.58 0.02 256); line-height: 1.7; margin-top: 18px; max-width: 80ch; }

/* ---------- Date / meta block ---------- */
.pubmeta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 0.82rem; color: var(--text-3); align-items: center; }
.pubmeta b { color: var(--text-2); font-weight: 600; }
.pubmeta .av { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent-line); display: inline-grid; place-items: center; color: var(--accent-bright); font-size: 0.62rem; font-weight: 800; font-family: var(--font-display); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* glow pulse */
@keyframes glowpulse { 0%,100% { box-shadow: 0 0 0 1px var(--accent-line), 0 0 0 0 transparent; } 50% { box-shadow: 0 0 0 1px var(--accent-line), 0 0 26px -4px var(--accent-glow); } }
.glow { animation: glowpulse 3.4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .glow { animation: none; } }

/* ---------- Tweaks panel ---------- */
#tweaks { position: fixed; right: 16px; bottom: 16px; z-index: 200; width: 300px; max-width: calc(100vw - 32px); background: oklch(0.2 0.024 256); border: 1px solid var(--line-strong); border-radius: 18px; box-shadow: 0 24px 60px -24px oklch(0 0 0 / 0.85); color: var(--text); display: none; overflow: hidden; }
#tweaks.show { display: block; }
#tweaks .tw-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 700; }
#tweaks .tw-x { background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--text-2); width: 28px; height: 28px; border-radius: 8px; cursor: pointer; font-size: 1rem; line-height: 1; }
#tweaks .tw-body { padding: 16px; display: grid; gap: 18px; max-height: 70vh; overflow-y: auto; }
#tweaks .tw-group > label { font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); font-weight: 700; display: block; margin-bottom: 9px; }
#tweaks .seg { display: flex; gap: 6px; flex-wrap: wrap; }
#tweaks .seg button { flex: 1; min-width: 64px; padding: 9px 8px; border-radius: 9px; border: 1px solid var(--line-strong); background: var(--bg); color: var(--text-2); font-weight: 700; font-size: 0.8rem; cursor: pointer; font-family: var(--font-body); }
#tweaks .seg button.on { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent-bright); }
#tweaks .sw { display: flex; gap: 8px; }
#tweaks .sw button { width: 34px; height: 34px; border-radius: 9px; cursor: pointer; border: 2px solid transparent; }
#tweaks .sw button.on { border-color: var(--text); }

/* ---------- Utility & Component Extensions ---------- */

/* Section spacing */
.pt-0            { padding-top: 0; }
.section-compact { padding-block: clamp(28px, 4vw, 40px); }
.section-mid     { padding-top: clamp(32px, 5vw, 52px); }
.hero.hero-compact { padding-block: clamp(32px, 6vw, 60px); }

/* Margin utilities */
.mt-4  { margin-top: 4px; }
.mt-6  { margin-top: 6px; }
.mt-8  { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-18 { margin-top: 18px; }
.mt-20 { margin-top: 20px; }
.mt-22 { margin-top: 22px; }
.mt-24 { margin-top: 24px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-22 { margin-bottom: 22px; }

/* Gap utilities */
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }

/* Alignment utilities */
.items-start  { align-items: start; }
.items-center { align-items: center; }

/* Width utilities */
.w-fit   { width: fit-content; }
.w-prose { max-width: 760px; }
.w-wide  { max-width: 820px; }
.w-text  { max-width: 64ch; }

/* Text align */
.text-center { text-align: center; }

/* Grid layout modifiers */
.g2-start  { align-items: start;  gap: clamp(28px, 5vw, 52px); }
.g2-center { align-items: center; gap: clamp(24px, 4vw, 44px); }
.g2-safe   { align-items: start;  gap: 24px; }

/* Card layout modifiers */
.card-grid     { display: grid; gap: 24px; }
.card-grid-sm  { display: grid; gap: 8px; }
.card-warn     { margin-top: 18px; border-color: var(--warn); background: oklch(0.84 0.13 70 / 0.06); }
.card-bordered { border-color: var(--accent-line); }

/* Text utilities */
.text-fine       { font-size: 0.78rem; color: var(--text-3); }
.text-small      { font-size: 0.8rem;  color: var(--text-3); }
.text-sm         { font-size: 0.92rem; }
.text-muted      { font-size: 0.92rem; color: var(--text-2); }
.text-note       { font-size: 0.86rem; }
.text-note-muted { font-size: 0.86rem; color: var(--text-3); }
.text-xs         { font-size: 0.76rem; color: var(--text-3); text-align: center; }

/* Heading margin helpers */
.h-flush    { margin: 12px 0; }
.h-card     { margin: 14px 0 8px; }
.h-snapshot { margin: 14px 0 6px; }
.h-card-lg  { margin: 12px 0 14px; }
.h-contact  { margin: 12px 0 6px; font-size: 1.05rem; }

/* Eyebrow modifiers */
.eyebrow-center { justify-content: center; }
.eyebrow-block  { margin-bottom: 16px; display: inline-flex; }

/* Mobile nav CTA link */
.mobile-nav-cta { color: var(--accent-bright); }

/* Inline link accent */
.link-accent { color: var(--accent-bright); }

/* Score card elements */
.score-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.score-label  { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }

/* Responsible gambling heading variants */
.rg-h2    { font-size: clamp(1.4rem, 4vw, 1.9rem); }
.rg-h2-sm { font-size: clamp(1.3rem, 3.5vw, 1.7rem); }

/* Warning card heading */
.card-warn-h3 { font-size: 1.05rem; color: var(--warn); margin-bottom: 8px; }

/* Lists in cards / sections */
.list-body    { margin: 16px 0 0; padding-left: 18px; color: var(--text-2); display: grid; gap: 8px; font-size: 0.94rem; }
.list-body-md { margin: 16px 0 0; padding-left: 18px; color: var(--text-2); display: grid; gap: 8px; font-size: 0.95rem; }
.list-ol      { margin: 16px 0 0; padding-left: 20px; color: var(--text-2); display: grid; gap: 8px; font-size: 0.94rem; }
.list-safe    { margin: 0; padding-left: 18px; color: var(--text-2); display: grid; gap: 10px; font-size: 0.95rem; }
.list-timing  { margin: 14px 0 0; padding-left: 18px; color: var(--text-2); display: grid; gap: 9px; font-size: 0.95rem; }
.list-cant    { padding-left: 18px; color: var(--text-2); display: grid; gap: 8px; font-size: 0.92rem; margin: 0; }

/* Pay badge block variant */
.pay-block { height: auto; padding: 14px; justify-content: flex-start; gap: 10px; }

/* go link with top spacing */
.go-mt { display: inline-flex; margin-top: 18px; }

/* FAQ open initial state (overrides default max-height:0) */
.faq-item.open .faq-a { max-height: 320px; }

/* Promo code mockup */
.promo-mock       { background: var(--bg-2); border-style: dashed; text-align: center; padding: 30px 20px; }
.promo-mock-label { font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); font-weight: 700; }
.promo-mock-row   { margin: 14px auto 0; max-width: 280px; display: flex; gap: 8px; }
.promo-mock-field { flex: 1; height: 46px; border-radius: 10px; border: 1px dashed var(--accent-line); background: var(--accent-soft); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; letter-spacing: .22em; color: var(--accent-bright); }
.promo-mock-note  { font-size: 0.78rem; color: var(--text-3); margin-top: 14px; }
.btn-no-interact  { pointer-events: none; }

/* Bonus terms checklist step rows */
.step-check      { grid-template-columns: 24px 1fr; align-items: center; padding: 14px 16px; }
.step-check-icon { color: var(--accent-bright); }
.step-check-text { font-size: 0.94rem; }

/* Device mockup helpers */
.device-center  { display: grid; place-items: center; }
.device-caption { font-size: 0.76rem; color: var(--text-3); margin-top: 14px; text-align: center; }
.skel-bar       { height: 34px; }
.skel-line      { height: 14px; width: 70%; }

/* Prose layout */
.prose-full { grid-column: 1 / -1; }

/* FAQ sticky head */
.faq-head { margin-bottom: 0; position: sticky; top: 90px; }

/* accent-text colour helper */
.accent-text { color: var(--accent-bright); }