/* Best Slot Scout — UK licensed casino comparison */

:root {
  --ink-950: #0e1220;
  --ink-900: #1a1f36;
  --ink-800: #2a3150;
  --ink-600: #5c6380;
  --mint-500: #3ee8c5;
  --mint-600: #2bc9a8;
  --gold-400: #f5c842;
  --coral-500: #ff6b4a;
  --sand: #f7f5f2;
  --sand-2: #efecea;
  --white: #ffffff;
  --line: #e4e1dc;
  --shadow: 0 4px 20px rgba(26, 31, 54, .08);
  --shadow-lg: 0 16px 48px rgba(26, 31, 54, .14);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.wrap--tight { max-width: 760px; }

.kicker {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mint-600);
  margin-bottom: 10px;
}
.kicker--light { color: var(--gold-400); }

/* Buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: .92rem;
  font-family: inherit;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.cta:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cta:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; }
.cta--mint { background: var(--mint-500); color: var(--ink-950); }
.cta--mint:hover { background: var(--mint-600); }
.cta--dark { background: var(--ink-900); color: #fff; }
.cta--dark:hover { background: var(--ink-800); }
.cta--gold { background: var(--gold-400); color: var(--ink-950); }
.cta--outline { background: transparent; border-color: var(--ink-900); color: var(--ink-900); }
.cta--outline:hover { background: var(--ink-900); color: #fff; }
.cta--ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; }
.cta--sm { padding: 8px 16px; font-size: .82rem; }

.chip {
  display: inline-flex;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}
.chip--dark { background: rgba(62,232,197,.15); color: var(--mint-500); }
.chip--muted { background: var(--sand-2); color: var(--ink-600); }

/* Notice bar */
.notice {
  background: var(--ink-950);
  color: #9aa3be;
  font-size: .78rem;
}
.notice__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.notice__18 {
  background: var(--coral-500);
  color: #fff;
  font-weight: 800;
  font-size: .68rem;
  padding: 3px 8px;
  border-radius: 4px;
}
.notice p { margin: 0; flex: 1; min-width: 200px; }
.notice strong { color: #fff; }
.notice a { color: var(--mint-500); font-weight: 600; }

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; justify-self: start; }
.brand__icon svg { border-radius: 10px; }
.brand__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
}
.brand__sub {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-600);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.nav { display: flex; gap: 26px; justify-self: center; }
.nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-600);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--mint-500);
  transition: width .25s;
}
.nav a:hover { color: var(--ink-900); }
.nav a:hover::after { width: 100%; }

.header__end { display: flex; align-items: center; gap: 10px; justify-self: end; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.burger span { width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px; }

.drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.drawer a { padding: 14px 22px; border-top: 1px solid var(--line); font-weight: 500; }
.drawer.is-open { display: flex; }

/* Hero — centred */
.masthead {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(62,232,197,.18), transparent),
    var(--white);
  padding: clamp(48px, 8vw, 96px) 0 clamp(36px, 5vw, 56px);
  text-align: center;
}
.masthead h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 720px;
  margin: 0 auto 16px;
}
.masthead__lead {
  font-size: 1.1rem;
  color: var(--ink-600);
  max-width: 600px;
  margin: 0 auto 28px;
}
.masthead__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.masthead__chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-chip {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  min-width: 120px;
}
.stat-chip strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--ink-900);
}
.stat-chip span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-600);
}

/* Trust band */
.trust {
  background: var(--ink-900);
  padding: 18px 0;
}
.trust__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust__label {
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin: 0;
}
.trust__logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust__logos img { max-height: 32px; opacity: .7; filter: grayscale(.3); transition: .25s; }
.trust__logos img:hover { opacity: 1; filter: grayscale(0); }
.trust__logos img.logo-ukgc { filter: invert(1) grayscale(.3); }
.trust__logos img.logo-ukgc:hover { filter: invert(1) grayscale(0); }

/* Sections */
.sect { padding: clamp(52px, 7vw, 88px) 0; }
.sect--white { background: var(--white); }
.sect--dark { background: linear-gradient(160deg, var(--ink-950), var(--ink-900)); color: #c8d0e4; }

.sect-head { margin-bottom: 36px; }
.sect-head--center { text-align: center; max-width: 680px; margin-inline: auto; }
.sect-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.sect-head--light h2 { color: #fff; }
.sect-desc { color: var(--ink-600); margin: 10px 0 0; font-size: .96rem; }
.sect-head--center .sect-desc { margin-inline: auto; }
.sect-desc--light { color: rgba(200,208,228,.8); }
.sect-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}
.sect-head--split .sect-desc { max-width: 440px; margin: 0; text-align: right; }

/* Pick cards — 2-col grid */
.picks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pick-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  display: grid;
  grid-template-columns: 6px 1fr;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  min-height: 380px;
}
.pick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pick-card__accent {
  background: linear-gradient(180deg, var(--mint-500), var(--mint-600));
}
.pick-card:nth-child(2) .pick-card__accent { background: linear-gradient(180deg, var(--gold-400), #e0b030); }
.pick-card:nth-child(3) .pick-card__accent { background: linear-gradient(180deg, var(--coral-500), #e85538); }
.pick-card:nth-child(4) .pick-card__accent { background: linear-gradient(180deg, #8b9cf7, #6b7fd4); }
.pick-card:nth-child(5) .pick-card__accent { background: linear-gradient(180deg, var(--mint-500), #25a88c); }
.pick-card:nth-child(6) .pick-card__accent { background: linear-gradient(180deg, var(--gold-400), #d4a82e); }
.pick-card:nth-child(7) .pick-card__accent { background: linear-gradient(180deg, #c084fc, #a855f7); }

.pick-card__body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
}
.pick-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.pick-card__rank {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-600);
}
.pick-card__logo {
  width: 110px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--sand);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.pick-card__logo--dark { background: var(--ink-900); border-color: var(--ink-800); }
.pick-card__logo img { max-height: 48px; object-fit: contain; }

.pick-card__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.pick-card__score { font-weight: 700; font-size: .9rem; }
.pick-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.pick-card p { font-size: .88rem; color: var(--ink-600); margin: 0 0 14px; flex: 1; }
.pick-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pick-card__tags span {
  font-size: .7rem;
  font-weight: 600;
  background: var(--sand);
  color: var(--ink-600);
  padding: 3px 8px;
  border-radius: 4px;
}
.pick-card .cta { width: 100%; }
.pick-card__fine { font-size: .68rem; color: var(--ink-600); text-align: center; margin: 8px 0 0; }

.stars {
  --rating: 5;
  --pct: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: .85rem;
  letter-spacing: 1px;
  position: relative;
}
.stars::before { content: "★★★★★"; color: var(--line); }
.stars::after {
  content: "★★★★★";
  color: var(--gold-400);
  position: absolute;
  left: 0; top: 0;
  width: var(--pct);
  overflow: hidden;
  white-space: nowrap;
}

/* Slot types — numbered list */
.slot-types { display: flex; flex-direction: column; gap: 12px; }
.slot-type {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.slot-type:hover { transform: translateX(4px); }
.slot-type__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mint-600);
  line-height: 1;
}
.slot-type h3 { font-size: 1.08rem; margin-bottom: 4px; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; }
.slot-type p { margin: 0; font-size: .86rem; color: var(--ink-600); }
.slot-type__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(62,232,197,.12);
  color: var(--mint-600);
  display: flex; align-items: center; justify-content: center;
}

/* Offers */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.offer-card__logo img {
  max-height: 32px;
  background: var(--sand);
  border-radius: 8px;
  padding: 6px 10px;
}
.offer-card__logo img.offer-card__logo--dark { background: var(--ink-900); }
.offer-card__info { flex: 1; }
.offer-card__info h3 { font-size: .95rem; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; margin-bottom: 2px; }
.offer-card__info p { margin: 0; font-size: .82rem; color: var(--ink-600); }
.offer-card__wager {
  font-weight: 700;
  font-size: .88rem;
  color: var(--mint-600);
  text-align: center;
}
.offer-card__wager small { display: block; font-size: .65rem; color: var(--ink-600); font-weight: 500; }
.offer-note { margin-top: 18px; font-size: .78rem; color: var(--ink-600); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.step-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--mint-500);
  display: flex; align-items: center; justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.step-card h3 { font-size: 1rem; margin-bottom: 6px; }
.step-card p { margin: 0; font-size: .84rem; color: var(--ink-600); }

/* Voices */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.voice-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  margin: 0;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 210px;
}
.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 12px; left: 18px;
  font-size: 3rem;
  line-height: 1;
  color: var(--mint-500);
  opacity: .35;
  font-family: Georgia, serif;
}
.voice-card blockquote {
  margin: 20px 0 16px;
  font-size: .9rem;
  line-height: 1.55;
  flex: 1;
  position: relative;
  z-index: 1;
}
.voice-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice-card img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mint-500);
}
.voice-card figcaption span { display: flex; flex-direction: column; line-height: 1.25; }
.voice-card strong { font-size: .84rem; }
.voice-card small { font-size: .74rem; color: var(--ink-600); }

/* Orgs */
.orgs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.org-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.org-card:hover { background: rgba(255,255,255,.09); border-color: var(--mint-500); }
.org-card__img {
  height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.org-card__img img { max-height: 32px; }
.org-card__img img.logo-ukgc { filter: invert(1); }
.org-card h3 { font-size: .95rem; color: #fff; margin-bottom: 6px; }
.org-card p { margin: 0; font-size: .8rem; color: rgba(200,208,228,.75); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--mint-500); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--mint-600);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 20px 16px; }
.faq-item__body p { margin: 0; font-size: .9rem; color: var(--ink-600); }
.faq-item__body a { color: var(--mint-600); font-weight: 600; text-decoration: underline; }

/* Safety panels */
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.safety-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.safety-box h2 { font-size: 1.5rem; margin-bottom: 12px; }
.safety-box h3 { font-size: 1.1rem; margin: 8px 0 10px; }
.safety-box p { font-size: .9rem; color: var(--ink-600); margin: 0 0 12px; }
.safety-box ul { margin: 0 0 18px; padding: 0; list-style: none; display: grid; gap: 8px; }
.safety-box li {
  padding-left: 20px;
  position: relative;
  font-size: .86rem;
  color: var(--ink-600);
}
.safety-box li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--mint-600);
  font-weight: 700;
}
.safety-box__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.safety-box--accent {
  background: var(--ink-900);
  color: #c8d0e4;
  border-color: transparent;
}
.safety-box--accent h2, .safety-box--accent h3 { color: #fff; }
.safety-box--accent p { color: rgba(200,208,228,.85); }

/* Footer */
.footer { background: var(--ink-950); color: #8891a8; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 48px 0 36px;
}
.footer .brand__name { color: #fff; }
.footer__text { font-size: .84rem; margin: 12px 0; max-width: 280px; color: #6d7690; }
.footer__18 {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--mint-500);
  color: var(--mint-500);
  font-weight: 800;
  font-size: .78rem;
  align-items: center;
  justify-content: center;
}
.footer-col h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin-bottom: 12px;
}
.footer-col a { display: block; font-size: .86rem; padding: 3px 0; color: #8891a8; }
.footer-col a:hover { color: var(--mint-500); }
.footer-col p { font-size: .78rem; color: #6d7690; margin: 0; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.footer__bar-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__bar-row p { margin: 0; font-size: .76rem; }
.footer__tag { color: var(--gold-400); }

/* Age gate */
.gate {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14,18,32,.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.gate[hidden] { display: none; }
.gate__panel {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.gate__badge {
  width: 58px; height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--mint-500);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
}
.gate__panel h2 { font-size: 1.45rem; margin-bottom: 10px; }
.gate__panel > p { color: var(--ink-600); font-size: .9rem; margin: 0 0 20px; }
.gate__btns { display: flex; flex-direction: column; gap: 10px; }
.gate__fine { font-size: .74rem; color: var(--ink-600); margin: 16px 0 0; }
.gate__fine a { color: var(--mint-600); text-decoration: underline; }

/* Cookie */
.cookies {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: min(900px, calc(100% - 28px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.cookies[hidden] { display: none; }
.cookies__inner {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px; flex-wrap: wrap;
}
.cookies__inner p { margin: 0; flex: 1; min-width: 220px; font-size: .82rem; color: var(--ink-600); }
.cookies__inner a { color: var(--mint-600); text-decoration: underline; }
.cookies__btns { display: flex; gap: 8px; }

/* Legal pages */
.legal { padding: 44px 0 72px; }
.legal h1 { font-size: 2rem; margin-bottom: 6px; }
.legal .updated { color: var(--ink-600); font-size: .86rem; margin-bottom: 28px; }
.legal h2 { font-size: 1.2rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-600); font-size: .92rem; }
.legal a { color: var(--mint-600); text-decoration: underline; }

@media (max-width: 960px) {
  .header__row { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .header__end .chip--muted { display: none; }
  .burger { display: flex; }
  .picks { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .voices { grid-template-columns: 1fr 1fr; }
  .orgs { grid-template-columns: repeat(2, 1fr); }
  .offers { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .sect-head--split .sect-desc { text-align: left; }
}

@media (max-width: 600px) {
  .slot-type { grid-template-columns: 40px 1fr; }
  .slot-type__icon { display: none; }
  .steps { grid-template-columns: 1fr; }
  .voices { grid-template-columns: 1fr; }
  .orgs { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
