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

:root {
  --bg:    #0b0f1a;
  --surf:  #111827;
  --surf2: #1a2335;
  --bdr:   rgba(59,130,246,.18);
  --gold:  #3b82f6;
  --goldl: #93c5fd;
  --red:   #ef4444;
  --txt:   #f0f4ff;
  --muted: #6b83a8;
  --dim:   #3a4d6a;
  --r:     6px;
  --rl:    12px;
  --font:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font);
  line-height: 1.6;
}

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

/* ── HEADER ── */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,16,31,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr);
}
.hdr-in {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 66px; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800; color: var(--txt);
  letter-spacing: -.02em;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--goldl));
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: #07101f; font-weight: 900;
}
.logo em { font-style: normal; color: var(--gold); }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav-a {
  color: var(--muted); font-size: .875rem; padding: .45rem .7rem;
  border-radius: 8px; transition: color .2s, background .2s;
}
.nav-a:hover { color: var(--txt); background: var(--surf2); }

/* dropdown */
.dd { position: relative; }
.dd-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--surf2); border: 1px solid var(--bdr);
  color: var(--txt); font-size: .85rem; padding: .45rem .9rem;
  border-radius: 8px; cursor: pointer; font-family: var(--font);
  transition: border-color .2s, background .2s;
}
.dd-btn:hover { border-color: var(--gold); background: rgba(59,130,246,.05); }
.dd-btn svg { transition: transform .22s; }
.dd.open .dd-btn svg { transform: rotate(180deg); }
.dd-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: var(--r); box-shadow: 0 12px 40px rgba(0,0,0,.5);
  min-width: 200px; overflow: hidden; z-index: 200;
}
.dd.open .dd-menu { display: block; }
.dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: .7rem 1rem; color: var(--muted); font-size: .875rem;
  transition: background .15s, color .15s; cursor: pointer;
}
.dd-item:hover { background: var(--surf2); color: var(--gold); }
.dd-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  padding: 6rem 1.5rem 5rem; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(59,130,246,.09) 0%, transparent 70%);
}
.hero-img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.18;pointer-events:none; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.25);
  color: var(--gold); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem,5vw,3.4rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -.03em;
  max-width: 720px; margin: 0 auto 1.2rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; margin: 0 auto 2.75rem;
}
.stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.stat-n { font-size: 2rem; font-weight: 800; color: var(--gold); letter-spacing: -.03em; }
.stat-l { font-size: .75rem; color: var(--dim); margin-top: 2px; }

/* ── DISCLAIMER BAR ── */
.disc-bar {
  background: var(--surf); border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr); padding: .9rem 1.5rem;
}
.disc-bar p {
  max-width: 960px; margin: 0 auto; font-size: .78rem;
  color: var(--dim); text-align: center; line-height: 1.55;
}
.disc-bar a { color: var(--muted); }
.disc-bar a:hover { color: var(--gold); }

/* ── LAYOUT ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.sec { padding: 4rem 0; }

.sec-lbl {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .4rem;
}
.sec-h { font-size: clamp(1.4rem,3vw,2.1rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: .6rem; }
.sec-sub { font-size: .95rem; color: var(--muted); max-width: 520px; }

/* ── SAFER BAR ── */
.safer-bar {
  background: rgba(200,16,46,.05);
  border: 1px solid rgba(200,16,46,.14);
  border-radius: var(--r); padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.safer-bar-txt { flex: 1; font-size: .85rem; color: var(--muted); min-width: 220px; }
.safer-links { display: flex; gap: .6rem; flex-wrap: wrap; }
.s-lnk {
  font-size: .78rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--bdr); padding: .28rem .65rem;
  border-radius: 6px; transition: color .2s, border-color .2s;
}
.s-lnk:hover { color: var(--gold); border-color: var(--gold); }

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 1.2rem; }

.card {
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: var(--rl); padding: 1.65rem; position: relative;
  overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--cc, var(--gold)) 0%, transparent 100%);
}
.card:hover {
  border-color: var(--cc, var(--gold)); transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,.32), 0 0 24px rgba(59,130,246,.06);
}
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.15rem; }
.card-logo {
  width: 54px; height: 54px; border-radius: 11px;
  background: var(--surf2); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .95rem; color: var(--cc, var(--gold)); flex-shrink: 0;
}
.card-badges { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: .22rem .55rem; border-radius: 100px; font-size: .7rem; font-weight: 600;
}
.badge-ukgc { background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.25); color: var(--gold); }
.badge-type { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: var(--muted); }

.card-name { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .3rem; }
.card-bonus { font-size: .855rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.35rem; }
.card-lic {
  display: flex; align-items: center; gap: 6px; font-size: .78rem;
  color: var(--dim); margin-bottom: 1.35rem; padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--bdr);
}
.card-lic svg { color: var(--gold); flex-shrink: 0; }
.card-actions { display: flex; gap: .65rem; }

.btn-cta {
  flex: 1; background: linear-gradient(135deg, var(--goldl, var(--gold)), color-mix(in srgb, var(--goldl, var(--gold)) 75%, #fff));
  color: #322706; font-weight: 700; font-size: .875rem;
  padding: .65rem 1rem; border: none; border-radius: 8px;
  cursor: pointer; font-family: var(--font); transition: opacity .2s, transform .15s; text-align: center;
}
.btn-cta:hover { opacity: .88; transform: scale(1.02); }

.btn-rev {
  background: transparent; border: 1px solid var(--bdr);
  color: var(--muted); font-size: .855rem; padding: .65rem .9rem;
  border-radius: 8px; cursor: pointer; font-family: var(--font);
  transition: border-color .2s, color .2s; white-space: nowrap; display: inline-flex; align-items: center;
}
.btn-rev:hover { border-color: var(--gold); color: var(--gold); }

/* ── INFO CARDS ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.2rem; }
.info-card {
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: var(--rl); padding: 1.65rem;
}
.info-ico {
  width: 46px; height: 46px; background: rgba(59,130,246,.07);
  border: 1px solid rgba(59,130,246,.14); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: .9rem;
}
.info-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .45rem; }
.info-card p { font-size: .845rem; color: var(--muted); line-height: 1.6; }

/* ── MODAL ── */
.modal-ov {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.72); backdrop-filter: blur(7px);
  z-index: 1000; align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-ov.open { display: flex; }
.modal-box {
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: var(--rl); padding: 2.2rem; max-width: 450px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  animation: mIn .25s cubic-bezier(.22,1,.36,1);
}
@keyframes mIn { from { opacity:0; transform: translateY(18px) scale(.97); } }
.modal-ico {
  width: 50px; height: 50px; background: rgba(200,16,46,.1);
  border: 1px solid rgba(200,16,46,.2); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.modal-h { font-size: 1.1rem; font-weight: 700; margin-bottom: .65rem; }
.modal-p { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.65rem; }
.modal-acts { display: flex; flex-direction: column; gap: .55rem; }
.btn-accept {
  background: linear-gradient(135deg, var(--gold), var(--goldl));
  color: #07101f; font-weight: 700; font-size: .925rem;
  padding: .82rem; border: none; border-radius: 8px;
  cursor: pointer; font-family: var(--font); transition: opacity .2s;
}
.btn-accept:hover { opacity: .88; }
.btn-cancel {
  background: transparent; border: 1px solid var(--bdr);
  color: var(--muted); font-size: .875rem; padding: .72rem;
  border-radius: 8px; cursor: pointer; font-family: var(--font); transition: border-color .2s;
}
.btn-cancel:hover { border-color: var(--muted); }

/* ── FOOTER ── */
.ftr {
  background: var(--surf); border-top: 1px solid var(--bdr);
  padding: 3rem 0 2rem; margin-top: 2rem;
}
.ftr-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.25rem;
}
.ftr-about p { font-size: .845rem; color: var(--dim); line-height: 1.6; margin: .9rem 0; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: var(--red);
  color: #fff; font-weight: 800; font-size: .7rem; border-radius: 6px;
}
.ftr-col-h {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .9rem;
}
.ftr-ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.ftr-ul a { font-size: .845rem; color: var(--dim); transition: color .2s; }
.ftr-ul a:hover { color: var(--gold); }
.rg-row {
  display: flex; flex-wrap: wrap; gap: .9rem; align-items: center;
  padding: 1.25rem 0; border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr); margin-bottom: 1.5rem;
}
.rg-row span { font-size: .78rem; color: var(--muted); font-weight: 700; }
.rg-row a { font-size: .78rem; color: var(--dim); transition: color .2s; }
.rg-row a:hover { color: var(--gold); }
.ftr-bot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem; font-size: .76rem; color: var(--dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .nav { display: none; }
  .ftr-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .stats { gap: 1.75rem; }
}
  
/* ── AGE GATE ── */
.agegate-ov.hidden { display: none; }
.agegate-ov {
  display: flex;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.agegate-box {
  background: #0d1a2e;
  border: 1px solid rgba(59,130,246,.3);
  border-radius: 20px;
  max-width: 440px; width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
}
.agegate-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 20px 26px 0;
  font-size: .95rem; font-weight: 800; color: var(--txt);
}
.agegate-logo img { width:30px;height:30px;border-radius:7px;object-fit:cover; }
.agegate-logo em { color: var(--gold); font-style: normal; }
.agegate-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(59,130,246,.12); border: 2px solid rgba(59,130,246,.4);
  display: flex; align-items: center; justify-content: center;
  margin: 16px auto 12px; font-weight: 800; font-size: 1.1rem; color: var(--gold);
}
.agegate-box h2 {
  font-size: 1.25rem; font-weight: 700; color: var(--txt);
  text-align: center; margin-bottom: 4px; padding: 0 26px;
}
.agegate-sub { font-size: .82rem; color: var(--muted); text-align: center; padding: 0 26px 16px; }
.agegate-body { padding: 0 26px 20px; border-top: 1px solid var(--bdr); padding-top: 16px; }
.agegate-body ul { list-style: none; margin-bottom: 14px; }
.agegate-body li { font-size: .82rem; color: var(--muted); padding: 3px 0; display: flex; gap: 8px; align-items: flex-start; }
.agegate-body li span { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.agegate-check {
  display: flex; align-items: flex-start; gap: .65rem;
  background: rgba(59,130,246,.05); border: 1px solid rgba(59,130,246,.15);
  border-radius: 10px; padding: .85rem; margin-bottom: 14px;
}
.agegate-check input[type=checkbox] { width:18px;height:18px;accent-color:var(--gold);flex-shrink:0;margin-top:2px;cursor:pointer; }
.agegate-check label { font-size: .8rem; color: var(--muted); line-height: 1.55; cursor: pointer; }
.agegate-check label a { color: var(--gold); }
.agegate-btns { display: flex; flex-direction: column; gap: .5rem; }
.agegate-enter {
  width: 100%; background: linear-gradient(135deg,var(--gold),var(--goldl));
  color: #07101f; font-weight: 700; font-size: .9rem;
  padding: .82rem; border: none; border-radius: 9px;
  cursor: pointer; font-family: var(--font); transition: opacity .2s;
  opacity: .4; pointer-events: none;
}
.agegate-enter.active, .agegate-enter:not(:disabled) { opacity: 1; pointer-events: auto; }
.agegate-enter.active:hover { opacity: .88; }
.agegate-exit {
  width: 100%; background: transparent; color: var(--muted);
  font-size: .85rem; font-weight: 600;
  padding: .7rem; border: 1px solid var(--bdr); border-radius: 9px;
  cursor: pointer; font-family: var(--font); transition: border-color .2s;
}
.agegate-exit:hover { border-color: var(--muted); }
.agegate-disclaimer {
  font-size: .72rem; color: var(--dim);
  text-align: center; padding: 12px 26px 20px;
  border-top: 1px solid var(--bdr); line-height: 1.6;
}
.agegate-disclaimer a { color: var(--dim); text-decoration: underline; }
@media (max-width: 480px) {
  .agegate-box { border-radius: 16px; }
}

/* ── MOBILE BURGER MENU ── */
.burger {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: 1px solid rgba(255,255,255,.15);
  cursor: pointer; padding: 7px; border-radius: 7px;
  transition: border-color .2s;
}
.burger:hover { border-color: var(--gold); }
.burger span {
  display: block; width: 18px; height: 2px;
  background: rgba(255,255,255,.6); border-radius: 2px;
  transition: transform .25s, opacity .2s, background .2s;
}
.burger:hover span { background: var(--gold); }
.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 drawer — FR pattern: slides in from top, full screen */
#mobileNav {
  position: relative;
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,16,31,.99);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 80px 1.5rem 1.5rem;
  overflow-y: auto;
  flex-direction: column; gap: .5rem;
}
#mobileNav.mobile-open { display: flex; }
/* Close button inside mobile nav */
.mobile-nav-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--surf2); border: 1px solid var(--bdr);
  border-radius: 8px; cursor: pointer; color: var(--txt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1; transition: border-color .2s, color .2s;
}
.mobile-nav-close:hover { border-color: var(--gold); color: var(--gold); }


.mobile-submenu-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1rem;
  color: var(--txt); font-size: 1rem; font-weight: 600;
  border-radius: 10px; cursor: pointer;
  border: 1px solid var(--bdr); background: var(--surf2);
  margin-bottom: .25rem; font-family: var(--font);
}
.mobile-submenu-toggle svg { transition: transform .25s; }
.mobile-submenu-toggle.open svg { transform: rotate(180deg); }

#mobileSub {
  display: none;
  background: rgba(59,130,246,.03);
  border: 1px solid rgba(59,130,246,.12);
  border-radius: 10px; overflow: hidden;
  margin-bottom: .5rem;
}
#mobileSub.open { display: block; }
#mobileSub a {
  display: flex; align-items: center; gap: 10px;
  padding: .75rem 1rem;
  color: var(--muted); font-size: .9rem;
  border-bottom: 1px solid var(--bdr);
  transition: background .12s, color .12s;
}
#mobileSub a:last-child { border-bottom: none; }
#mobileSub a:hover { background: var(--surf2); color: var(--gold); }

.mobile-nav-links { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1.5rem; }
.mobile-nav-links a {
  display: block; padding: .85rem 1rem;
  color: var(--txt); font-size: .95rem; font-weight: 600;
  border-radius: 8px; border: 1px solid var(--border);
  transition: color .15s, border-color .15s;
}
.mobile-nav-links a:hover { color: var(--gold); border-color: rgba(59,130,246,.3); }

.mobile-nav-rg {
  border-top: 1px solid var(--bdr); padding-top: 1.25rem;
  font-size: .78rem; color: var(--dim); line-height: 1.65;
}
.mobile-nav-rg a { color: var(--dim); text-decoration: underline; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 2px solid var(--gold);
  padding: 14px 24px; z-index: 500; display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.cookie-banner-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.cookie-banner p { color: #475569; font-size: .8rem; flex: 1; min-width: 200px; line-height: 1.6; margin: 0; }
.cookie-banner a { color: #07101f; text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.btn-cookie-accept { padding: 8px 18px; background: var(--gold); color: #07101f; font-weight: 700; font-size: .8rem; border: none; border-radius: 7px; cursor: pointer; font-family: var(--font); }
.btn-cookie-decline { padding: 8px 14px; background: transparent; color: #64748b; font-weight: 600; font-size: .8rem; border: 1px solid #cbd5e1; border-radius: 7px; cursor: pointer; font-family: var(--font); }

/* ── FAQ SECTION ── */
.faq-list { display: flex; flex-direction: column; gap: .6rem; }
.faq-item {
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.2rem 1.4rem;
  cursor: pointer; font-weight: 600; font-size: .925rem;
  color: var(--txt); transition: background .15s;
  user-select: none;
}
.faq-q:hover { background: var(--surf2); }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: .8rem;
  transition: transform .25s, background .15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(59,130,246,.2); }
.faq-a {
  display: none;
  padding: 0 1.4rem 1.2rem;
  font-size: .875rem; color: var(--muted); line-height: 1.7;
}
.faq-a a { color: var(--gold); }
.faq-item.open .faq-a { display: block; }

@media (max-width: 860px) {
  .burger { display: flex !important; }
  .nav { display: none !important; }
  .dd { display: none !important; }
}

/* ── FOOTER SAFER GAMBLING BAR (like FR) ── */
.ftr-rg-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 0 0;
  margin-top: 16px;
  border-top: 1px solid var(--bdr);
}
.ftr-rg-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  text-decoration: none;
  transition: color .2s;
}
.ftr-rg-18 {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  font-weight: 800; font-size: .72rem; color: rgba(255,255,255,.35);
  padding: 0;
}
.ftr-rg-label {
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.3);
  transition: color .2s;
}
a.ftr-rg-item:hover .ftr-rg-label { color: var(--gold); }
.ftr-rg-div {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.1);
  margin: 0 2px;
}

/* ── REVIEW PAGE LAYOUT ── */
.rev-hero {
  padding: 3.5rem 0 3rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--bdr);
}
.rev-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 0% 50%, color-mix(in srgb, var(--cc, var(--gold)) 12%, transparent) 0%, transparent 65%);
}
.hero-in {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 2rem;
}
.breadcrumb { font-size: .78rem; color: var(--dim); margin-bottom: 1rem; }
.breadcrumb a { color: var(--dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 .35rem; }
.hero-logo {
  width: 68px; height: 68px; border-radius: 14px;
  background: var(--surf2); border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: var(--cc, var(--gold));
  object-fit: cover;
}
.hero-meta { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: .9rem; }
.rev-hero h1 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: .55rem; }
.rev-hero p { font-size: .95rem; color: var(--muted); max-width: 580px; line-height: 1.65; }
.hero-cta { display: flex; flex-direction: column; align-items: flex-end; gap: .65rem; flex-shrink: 0; z-index: 500;}
.btn-main {
  background: linear-gradient(135deg, var(--cc, var(--gold)), color-mix(in srgb, var(--cc, var(--gold)) 75%, #fff));
  color: #fff; font-weight: 700; font-size: .925rem; padding: .78rem 1.6rem;
  border: none; border-radius: 9px; cursor: pointer; font-family: var(--font);
  transition: opacity .2s, transform .15s; white-space: nowrap;
}
.btn-main:hover { opacity: .88; transform: scale(1.02); }
.hero-disc { font-size: .72rem; color: var(--dim); text-align: right; max-width: 200px; }

.page-body {
  max-width: 1200px; margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 2.5rem; align-items: start;
}
.content-col > * + * { margin-top: 2rem; }
.sidebar > * + * { margin-top: 1.25rem; }

.block {
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: var(--rl); padding: 1.75rem;
}
.block-h { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.block-h .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cc, var(--gold)); flex-shrink: 0; }
.block p { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.block p + p { margin-top: .65rem; }

.bonus-block {
  background: var(--surf); border: 1px solid var(--bdr);
  border-left: 3px solid var(--cc, var(--gold)); border-radius: var(--rl); padding: 1.65rem;
}
.bonus-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cc, var(--gold)); margin-bottom: .5rem; }
.bonus-text { font-size: .925rem; color: var(--muted); line-height: 1.65; }
.bonus-note { font-size: .75rem; color: var(--dim); margin-top: .75rem; border-top: 1px solid var(--bdr); padding-top: .75rem; }

.lic-block {
  background: rgba(59,130,246,.04); border: 1px solid rgba(59,130,246,.18);
  border-radius: var(--rl); padding: 1.65rem;
}
.lic-row { display: flex; gap: .5rem; align-items: flex-start; font-size: .855rem; margin-bottom: .6rem; }
.lic-row:last-child { margin-bottom: 0; }
.lic-key { color: var(--dim); min-width: 110px; flex-shrink: 0; }
.lic-val { color: var(--muted); }
.lic-disclaimer { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--bdr); font-size: .8rem; color: var(--dim); line-height: 1.55; }

.side-block { background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r); padding: 1.25rem; }
.side-h { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
.side-link { display: block; font-size: .845rem; color: var(--dim); padding: .42rem 0; border-bottom: 1px solid var(--bdr); transition: color .2s; }
.side-link:last-child { border-bottom: none; }
.side-link:hover { color: var(--gold); }
.rg-block { background: rgba(200,16,46,.05); border: 1px solid rgba(200,16,46,.14); border-radius: var(--r); padding: 1.25rem; }
.rg-h { font-size: .8rem; font-weight: 700; color: var(--red); margin-bottom: .75rem; }
.rg-link { display: block; font-size: .82rem; color: var(--muted); padding: .32rem 0; border-bottom: 1px solid var(--bdr); }
.rg-link:last-child { border-bottom: none; }
.rg-link:hover { color: var(--gold); }

/* ── STATIC PAGE LAYOUT ── */
.page-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 1.5rem; }
.page-h { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; letter-spacing: -.03em; color: #fff; margin-bottom: 16px; }
.page-sub { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.page-body-text { font-size: 15px; color: var(--muted); line-height: 1.75; }
.page-body-text h2 { font-size: 1.3rem; font-weight: 700; color: #fff; margin: 32px 0 12px; }
.page-body-text h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin: 24px 0 10px; }
.page-body-text p { margin-bottom: 14px; }
.page-body-text a { color: var(--gold); }
.page-body-text ul { margin: 10px 0 14px 20px; }
.page-body-text ul li { margin-bottom: 6px; }
.card-info { background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r); padding: 24px; margin-bottom: 16px; }
.breadcrumb-static { font-size: 13px; color: var(--dim); margin-bottom: 28px; }
.breadcrumb-static a { color: var(--dim); text-decoration: underline; }
.breadcrumb-static a:hover { color: var(--gold); }

/* ── MOBILE REVIEW / STATIC PAGE ── */
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-cta { align-items: flex-start; }
  .page-body { grid-template-columns: 1fr; padding: 2rem 1rem; }
  .sidebar { margin-top: 0; }
  .rev-hero { padding: 2rem 1rem; }
  .page-wrap { padding: 2rem 1rem; }
}

/* ── STATIC PAGE HERO ── */
.page-hero {
  background: var(--surf);
  border-bottom: 1px solid var(--bdr);
  padding: 3rem 1.5rem 2.5rem;
}
.page-hero-in {
  max-width: 860px;
  margin: 0 auto;
}
.page-hero-in h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -.03em;
  color: #fff; margin: .75rem 0 .6rem;
}
.page-hero-in p {
  font-size: .95rem; color: var(--muted); line-height: 1.65;
}

/* ── PROSE (static page content) ── */
.prose {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 0;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}
.prose h2 {
  font-size: 1.25rem; font-weight: 700; color: #fff;
  margin: 2rem 0 .75rem; letter-spacing: -.02em;
}
.prose h3 {
  font-size: 1rem; font-weight: 700; color: var(--gold);
  margin: 1.5rem 0 .5rem;
}
.prose p { margin-bottom: .9rem; }
.prose a { color: var(--gold); }
.prose a:hover { color: var(--goldl); }
.prose ul { margin: .5rem 0 1rem 1.25rem; }
.prose ul li { margin-bottom: .4rem; }
.prose strong { color: var(--txt); font-weight: 600; }

/* Static page-body for non-review pages */
.page-body > .prose { width: 100%; }

@media (max-width: 640px) {
  .page-hero { padding: 2rem 1rem 1.5rem; }
  .prose { padding: 1.5rem 0; }
}

/* ── ERROR PAGES ── */
.err-page {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1.5rem;
}
.err-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.err-code {
  font-size: clamp(5rem, 15vw, 8rem);
  font-weight: 800; letter-spacing: -.05em;
  color: var(--gold); line-height: 1;
  margin-bottom: .5rem;
}
.err-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700; color: #fff;
  margin-bottom: 1rem;
}
.err-msg {
  font-size: .95rem; color: var(--muted);
  max-width: 480px; line-height: 1.65;
  margin-bottom: 2rem;
}
.err-quick-links { margin-top: 2rem; }
.err-link {
  display: inline-block;
  background: var(--surf); border: 1px solid var(--bdr);
  color: var(--muted); font-size: .8rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 20px;
  transition: border-color .15s, color .15s;
}
.err-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── CONTACT PAGE ── */
.contact-wrap {
  max-width: 1060px; margin: 0 auto;
  padding: 3rem 1.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.contact-form-col {}
.cf-fields { display: flex; flex-direction: column; gap: .85rem; }
.cf-group { display: flex; flex-direction: column; }
.cf-label {
  font-size: .78rem; font-weight: 700;
  color: var(--muted); margin-bottom: .35rem;
}
.cf-req { color: var(--gold); }
.cf-input {
  width: 100%; background: var(--surf2);
  border: 1px solid var(--bdr); color: var(--txt);
  padding: .6rem .85rem; border-radius: 8px;
  font-family: var(--font); font-size: .875rem;
  outline: none; transition: border-color .2s;
}
.cf-input:focus { border-color: var(--gold); }
.cf-input-err { border-color: var(--red) !important; }
.cf-textarea { resize: vertical; min-height: 120px; }
.cf-err {
  display: none; font-size: .72rem;
  color: var(--red); margin-top: .25rem;
}
.cf-submit {
  background: linear-gradient(135deg, var(--gold), var(--goldl));
  color: #07101f; font-weight: 700; font-size: .9rem;
  padding: .75rem; border: none; border-radius: 8px;
  cursor: pointer; font-family: var(--font);
  transition: opacity .2s;
}
.cf-submit:hover { opacity: .88; }
.cf-note { font-size: .72rem; color: var(--dim); text-align: center; }

/* ── PAGE BODY VARIANTS ── */
.page-body-single {
  display: block !important;
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.page-body-single .prose { max-width: 100% !important; padding: 0; }
.page-body-single > div[style*="overflow-x"] { width: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap { padding: 2rem 1rem; }
  .contact-form-col .block { margin-top: 0; }
  .err-page { padding: 3rem 1rem; min-height: 50vh; }
}

/* ── UKS SUBPAGE LAYOUT ── */
.topbar{background:var(--surf);border-bottom:1px solid var(--bdr);padding:.5rem 1.5rem;font-size:.72rem;color:var(--dim);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem;}
.topbar a{color:var(--dim);text-decoration:underline;}
.topbar strong{color:var(--gold);}

.sp-hero{background:var(--surf);border-bottom:1px solid var(--bdr);padding:2.5rem 0;}
.sp-hero-in{max-width:1200px;margin:0 auto;padding:0 1.5rem;display:grid;grid-template-columns:1fr auto;align-items:end;gap:2rem;}
.sp-bc{font-size:.72rem;color:var(--dim);margin-bottom:.6rem;}
.sp-bc a{color:var(--dim);text-decoration:underline;}
.sp-bc a:hover{color:var(--gold);}
.sp-bc span{margin:0 .4rem;}
.sp-hero h1{font-family:'Space Grotesk',sans-serif;font-size:clamp(1.8rem,4vw,2.5rem);font-weight:800;color:#fff;margin-bottom:.5rem;letter-spacing:-.02em;}
.sp-hero p{font-size:.9rem;color:var(--muted);max-width:560px;line-height:1.65;}
.sp-hero-tag{background:rgba(59,130,246,.08);border:1px solid rgba(59,130,246,.2);border-radius:var(--r);padding:.85rem 1.5rem;text-align:center;flex-shrink:0;}
.sp-hero-tag strong{font-family:'Space Grotesk',sans-serif;font-size:1.8rem;font-weight:800;color:var(--gold);display:block;line-height:1;}
.sp-hero-tag span{font-size:.68rem;color:var(--dim);text-transform:uppercase;letter-spacing:.08em;}

.sp-body{max-width:1200px;margin:2.5rem auto 3rem;padding:0 1.5rem;display:grid;grid-template-columns:1fr 260px;gap:2.5rem;align-items:start;}
.sp-main{}
.sp-sec{margin-bottom:2rem;}
.sp-sec:last-child{margin-bottom:0;}
.sp-sec h2{font-family:'Space Grotesk',sans-serif;font-size:1.05rem;font-weight:700;color:#fff;margin-bottom:.65rem;padding-left:.75rem;border-left:3px solid var(--gold);}
.sp-sec p{font-size:.875rem;color:var(--muted);line-height:1.75;margin-bottom:.75rem;}
.sp-sec p:last-child{margin-bottom:0;}
.sp-sec a{color:var(--gold);}
.sp-sec ul{margin:.4rem 0 .75rem 1rem;}
.sp-sec li{font-size:.875rem;color:var(--muted);line-height:1.7;margin-bottom:.3rem;}
.sp-sec strong{color:var(--txt);font-weight:600;}
.sp-sec table{width:100%;border-collapse:collapse;font-size:.82rem;}
.sp-sec table th{text-align:left;padding:.55rem .75rem;font-size:.68rem;font-weight:600;color:var(--gold);text-transform:uppercase;letter-spacing:.08em;border-bottom:2px solid var(--gold);font-family:'Space Grotesk',sans-serif;}
.sp-sec table td{padding:.6rem .75rem;color:var(--muted);border-bottom:1px solid var(--bdr);}
.sp-sec table td:first-child{font-weight:600;color:var(--txt);}
.sp-sec table td a{color:var(--gold);}

.sp-hl{background:rgba(59,130,246,.06);border:1px solid rgba(59,130,246,.15);border-left:3px solid var(--gold);border-radius:0 var(--r) var(--r) 0;padding:1rem 1.25rem;margin-bottom:1.5rem;}
.sp-hl p{font-size:.85rem;color:var(--muted);line-height:1.65;margin:0;}
.sp-hl p strong{color:var(--gold);}

.sp-aside{display:flex;flex-direction:column;gap:1rem;}
.ac{background:var(--surf);border:1px solid var(--bdr);border-radius:var(--r);padding:1.1rem;}
.ac-title{font-family:'Space Grotesk',sans-serif;font-size:.7rem;font-weight:700;color:var(--gold);text-transform:uppercase;letter-spacing:.1em;margin-bottom:.65rem;}
.ac a{display:block;font-size:.8rem;color:var(--muted);padding:.3rem 0;border-bottom:1px solid var(--bdr);text-decoration:none;transition:color .15s,padding-left .15s;}
.ac a:last-child{border-bottom:none;}
.ac a:hover{color:var(--gold);padding-left:4px;}
.rg-box{background:rgba(239,68,68,.05);border:1px solid rgba(239,68,68,.15);border-radius:var(--r);padding:1.1rem;}
.rg-box-title{font-size:.7rem;font-weight:700;color:#f87171;text-transform:uppercase;letter-spacing:.1em;margin-bottom:.6rem;}
.rg-box a{display:block;font-size:.78rem;color:var(--muted);padding:.28rem 0;border-bottom:1px solid var(--bdr);text-decoration:none;}
.rg-box a:last-child{border-bottom:none;}
.rg-box a:hover{color:var(--gold);}
.rg-box p{font-size:.75rem;color:var(--dim);line-height:1.6;margin-bottom:.4rem;}

/* ── CONTACT FORM ON SUBPAGES ── */
.ct-body{max-width:1200px;margin:2.5rem auto 3rem;padding:0 1.5rem;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;}
.ct-info h2{font-family:'Space Grotesk',sans-serif;font-size:1.05rem;font-weight:700;color:#fff;margin-bottom:.65rem;padding-left:.75rem;border-left:3px solid var(--gold);}
.ct-info p,.ct-info li{font-size:.875rem;color:var(--muted);line-height:1.75;margin-bottom:.75rem;}
.ct-info a{color:var(--gold);}
.ct-info ul{margin:.4rem 0 .75rem 1rem;}
.ct-info strong{color:var(--txt);font-weight:600;}
.ct-detail{display:flex;gap:.6rem;align-items:flex-start;padding:.6rem 1.5rem;border-bottom:1px solid var(--bdr);}
.ct-detail:last-child{border-bottom:none;}
.ct-detail-icon{font-size:1rem;flex-shrink:0;width:1.5rem;text-align:center;margin-top:2px;}
.ct-detail-body{font-size:.82rem;color:var(--muted);line-height:1.6;}
.ct-detail-body strong{color:var(--txt);}
.ct-detail-body a{color:var(--gold);}
.ct-form-box{background:var(--surf);border:1px solid var(--bdr);border-radius:var(--r);padding:1.75rem;}
.ct-form-box h2{font-family:'Space Grotesk',sans-serif;font-size:1.05rem;font-weight:700;color:#fff;margin-bottom:1.25rem;padding-bottom:.6rem;border-bottom:1px solid var(--bdr);}
.cf-group{margin-bottom:.85rem;}
.cf-label{display:block;font-size:.75rem;font-weight:600;color:var(--muted);margin-bottom:.3rem;}
.cf-req{color:var(--gold);}
.cf-input{width:100%;background:var(--surf2);border:1px solid var(--bdr);color:var(--txt);padding:.55rem .85rem;border-radius:var(--r);font-family:inherit;font-size:.85rem;outline:none;transition:border-color .2s;}
.cf-input:focus{border-color:var(--gold);}
.cf-input-err{border-color:var(--red)!important;}
.cf-textarea{resize:vertical;min-height:110px;}
.cf-err{display:none;font-size:.7rem;color:var(--red);margin-top:.25rem;}
.cf-submit{width:100%;background:var(--gold);color:#0b0f1a;font-weight:700;font-size:.875rem;padding:.75rem;border:none;border-radius:var(--r);cursor:pointer;font-family:inherit;transition:background .15s;margin-top:.25rem;}
.cf-submit:hover{background:var(--goldl);}
.cf-note{font-size:.7rem;color:var(--dim);text-align:center;margin-top:.6rem;}

/* ── REVIEW PAGE ── */
.rev-hero{padding:2.5rem 0;background:var(--surf);border-bottom:1px solid var(--bdr);position:relative;overflow:hidden;}
.rev-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 0% 50%,color-mix(in srgb,var(--cc,var(--gold)) 8%,transparent) 0%,transparent 65%);}
.hero-in{max-width:1200px;margin:0 auto;padding:0 1.5rem;display:grid;grid-template-columns:1fr auto;align-items:center;gap:2rem;}
.breadcrumb{font-size:.72rem;color:var(--dim);margin-bottom:.75rem;}
.breadcrumb a{color:var(--dim);}
.breadcrumb a:hover{color:var(--gold);}
.breadcrumb span{margin:0 .35rem;}
.hero-logo{width:64px;height:64px;border-radius:10px;object-fit:cover;border:1px solid var(--bdr);}
.hero-meta{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:.75rem;}
.rev-hero h1{font-family:'Space Grotesk',sans-serif;font-size:clamp(1.6rem,3.5vw,2.3rem);font-weight:800;letter-spacing:-.02em;margin-bottom:.5rem;}
.rev-hero p{font-size:.9rem;color:var(--muted);max-width:560px;line-height:1.65;}
.hero-cta{display:flex;flex-direction:column;align-items:flex-end;gap:.6rem;flex-shrink:0;}
.btn-main{background:var(--gold);color:#0b0f1a;font-weight:700;font-size:.9rem;padding:.75rem 1.6rem;border:none;border-radius:var(--r);cursor:pointer;font-family:inherit;transition:background .15s;white-space:nowrap;}
.btn-main:hover{background:var(--goldl);}
.hero-disc{font-size:.7rem;color:var(--dim);text-align:right;max-width:200px;}
.page-body{max-width:1200px;margin:0 auto;padding:2.5rem 1.5rem;display:grid;grid-template-columns:1fr 280px;gap:2.5rem;align-items:start;}
.content-col>*+*{margin-top:1.75rem;}
.sidebar>*+*{margin-top:1rem;}
.block{background:var(--surf);border:1px solid var(--bdr);border-radius:var(--r);padding:1.5rem;}
.block-h{font-family:'Space Grotesk',sans-serif;font-size:.95rem;font-weight:700;margin-bottom:.9rem;display:flex;align-items:center;gap:.5rem;}
.block-h .dot{width:8px;height:8px;border-radius:50%;background:var(--gold);flex-shrink:0;}
.block p{font-size:.85rem;color:var(--muted);line-height:1.65;}
.block p+p{margin-top:.6rem;}
.bonus-block{background:var(--surf);border:1px solid var(--bdr);border-left:3px solid var(--cc,var(--gold));border-radius:0 var(--r) var(--r) 0;padding:1.5rem;}
.bonus-label{font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--cc,var(--gold));margin-bottom:.5rem;}
.bonus-text{font-size:.9rem;color:var(--muted);line-height:1.65;}
.bonus-note{font-size:.72rem;color:var(--dim);margin-top:.7rem;border-top:1px solid var(--bdr);padding-top:.7rem;}
.lic-block{background:rgba(59,130,246,.04);border:1px solid rgba(59,130,246,.18);border-radius:var(--r);padding:1.5rem;}
.lic-row{display:flex;gap:.5rem;align-items:flex-start;font-size:.84rem;margin-bottom:.55rem;}
.lic-row:last-child{margin-bottom:0;}
.lic-key{color:var(--dim);min-width:110px;flex-shrink:0;}
.lic-val{color:var(--muted);}
.lic-disclaimer{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--bdr);font-size:.78rem;color:var(--dim);line-height:1.55;}
.side-block{background:var(--surf);border:1px solid var(--bdr);border-radius:var(--r);padding:1.1rem;}
.side-h{font-family:'Space Grotesk',sans-serif;font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-bottom:.8rem;}
.side-link{display:block;font-size:.82rem;color:var(--dim);padding:.38rem 0;border-bottom:1px solid var(--bdr);text-decoration:none;transition:color .15s;}
.side-link:last-child{border-bottom:none;}
.side-link:hover{color:var(--gold);}
.rg-block{background:rgba(239,68,68,.05);border:1px solid rgba(239,68,68,.15);border-radius:var(--r);padding:1.1rem;}
.rg-h{font-size:.78rem;font-weight:700;color:#f87171;margin-bottom:.7rem;}
.rg-link{display:block;font-size:.8rem;color:var(--muted);padding:.3rem 0;border-bottom:1px solid var(--bdr);text-decoration:none;}
.rg-link:last-child{border-bottom:none;}
.rg-link:hover{color:var(--gold);}

/* ── ERROR PAGES ── */
.err-page{min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:4rem 1.5rem;}
.err-icon{font-size:3.5rem;margin-bottom:1rem;}
.err-code{font-family:'Space Grotesk',sans-serif;font-size:clamp(5rem,15vw,8rem);font-weight:800;letter-spacing:-.05em;color:var(--gold);line-height:1;margin-bottom:.5rem;}
.err-title{font-family:'Space Grotesk',sans-serif;font-size:clamp(1.5rem,4vw,2rem);font-weight:700;color:#fff;margin-bottom:1rem;}
.err-msg{font-size:.9rem;color:var(--muted);max-width:480px;line-height:1.65;margin-bottom:2rem;}
.err-link{display:inline-block;background:var(--surf);border:1px solid var(--bdr);color:var(--muted);font-size:.78rem;font-weight:600;padding:.38rem .85rem;border-radius:20px;text-decoration:none;transition:border-color .15s,color .15s;margin:.25rem;}
.err-link:hover{border-color:var(--gold);color:var(--gold);}

/* ── PAGE BODY SINGLE (licences, etc.) ── */
.page-body-single{display:block!important;max-width:960px;margin:0 auto;padding:2.5rem 1.5rem;}
.page-body-single .prose{max-width:100%!important;padding:0;}
.prose{font-size:.875rem;color:var(--muted);line-height:1.75;}
.prose h2{font-family:'Space Grotesk',sans-serif;font-size:1.1rem;font-weight:700;color:#fff;margin:1.75rem 0 .65rem;padding-left:.75rem;border-left:3px solid var(--gold);}
.prose h3{font-family:'Space Grotesk',sans-serif;font-size:.95rem;font-weight:700;color:var(--gold);margin:1.25rem 0 .5rem;}
.prose p{margin-bottom:.85rem;}
.prose a{color:var(--gold);}
.prose ul{margin:.4rem 0 .85rem 1.1rem;}
.prose ul li{margin-bottom:.35rem;}
.prose strong{color:var(--txt);font-weight:600;}
.page-hero{background:var(--surf);border-bottom:1px solid var(--bdr);padding:2.5rem 0;}
.page-hero-in{max-width:960px;margin:0 auto;padding:0 1.5rem;}
.page-hero-in h1{font-family:'Space Grotesk',sans-serif;font-size:clamp(1.8rem,4vw,2.5rem);font-weight:800;color:#fff;margin:.5rem 0;}
.page-hero-in p{font-size:.9rem;color:var(--muted);line-height:1.65;}
.page-hero-in .breadcrumb{font-size:.72rem;color:var(--dim);margin-bottom:.6rem;}
.page-hero-in .breadcrumb a{color:var(--dim);text-decoration:underline;}

/* ── BADGES ── */
.badge{display:inline-flex;align-items:center;gap:4px;padding:.2rem .5rem;border-radius:3px;font-size:.68rem;font-weight:600;}
.badge-ukgc{background:rgba(59,130,246,.1);border:1px solid rgba(59,130,246,.25);color:var(--gold);}
.badge-type{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);color:var(--muted);}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .sp-hero-in{grid-template-columns:1fr;}
  .sp-hero-tag{display:none;}
  .sp-body{grid-template-columns:1fr;}
  .sp-aside{order:2;}
  .ct-body{grid-template-columns:1fr;}
  .hero-in{grid-template-columns:1fr;}
  .hero-cta{align-items:flex-start;}
  .page-body{grid-template-columns:1fr;padding:2rem 1rem;}
  .rev-hero{padding:2rem 1rem;}
}
@media(max-width:640px){
  .sp-hero{padding:1.75rem 0;}
  .sp-body{margin:1.5rem auto 2rem;padding:0 1rem;}
  .page-body-single{padding:1.75rem 1rem;}
  .page-hero{padding:1.75rem 0;}
}
