/* Top Game Reviewed — UK licensed casino comparison */

:root {
  --teal-950: #063535;
  --teal-900: #0d4f4f;
  --teal-800: #156969;
  --teal-100: #e6f4f4;
  --orange-500: #ff8c42;
  --orange-600: #e67428;
  --sky-400: #4dabf7;
  --text: #1a2e2e;
  --text-soft: #5a7272;
  --bg: #faf9f7;
  --bg-2: #f2f0ec;
  --white: #ffffff;
  --border: #ddd9d2;
  --shadow: 0 3px 16px rgba(13,79,79,.07);
  --shadow-lg: 0 14px 40px rgba(13,79,79,.13);
  --r: 12px;
  --r-lg: 18px;
  --w: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Bitter", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.shell { max-width: var(--w); margin: 0 auto; padding: 0 24px; }
.shell--sm { max-width: 740px; }

.tagline {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 10px;
}
.tagline--inv { color: var(--sky-400); }

/* Buttons */
.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: .9rem;
  font-family: inherit;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.action:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.action:focus-visible { outline: 3px solid var(--sky-400); outline-offset: 2px; }
.action--fill { background: var(--orange-500); color: #fff; }
.action--fill:hover { background: var(--orange-600); }
.action--teal { background: var(--teal-900); color: #fff; }
.action--teal:hover { background: var(--teal-800); }
.action--line { background: transparent; border-color: var(--teal-900); color: var(--teal-900); }
.action--line:hover { background: var(--teal-900); color: #fff; }
.action--ghost { background: var(--teal-100); color: var(--teal-800); }
.action--xs { padding: 7px 14px; font-size: .8rem; }

.badge {
  display: inline-flex;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 5px;
}
.badge--soft { background: var(--teal-100); color: var(--teal-800); }

/* Alert strip */
.alert {
  background: var(--teal-950);
  color: #a8c4c4;
  font-size: .78rem;
}
.alert__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.alert__age {
  background: var(--orange-500);
  color: #fff;
  font-weight: 800;
  font-size: .66rem;
  padding: 3px 8px;
  border-radius: 4px;
}
.alert p { margin: 0; flex: 1; min-width: 200px; }
.alert strong { color: #fff; }
.alert a { color: var(--orange-500); font-weight: 700; }

/* Topbar */
.topbar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.topbar__flex {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 13px 0;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo__svg svg { border-radius: 9px; }
.logo__title {
  font-family: "Bitter", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1;
}
.logo__desc {
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-soft);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.menu { display: flex; gap: 24px; margin-left: auto; }
.menu a {
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-soft);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.menu a:hover { color: var(--teal-900); border-color: var(--orange-500); }

.topbar__right { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.hamburger i { display: block; width: 22px; height: 2px; background: var(--teal-900); border-radius: 2px; }

.panel-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 2px solid var(--border);
}
.panel-nav a { padding: 13px 24px; border-top: 1px solid var(--border); font-weight: 600; }
.panel-nav.open { display: flex; }

/* Hero — split, content left, aside right */
.intro {
  background: linear-gradient(135deg, var(--white) 55%, var(--teal-100) 100%);
  padding: clamp(44px, 7vw, 84px) 0;
}
.intro__cols {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.intro__main h1 { font-size: clamp(2rem, 4.5vw, 3.3rem); margin-bottom: 14px; }
.intro__text { font-size: 1.06rem; color: var(--text-soft); margin-bottom: 24px; max-width: 540px; }
.intro__btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.intro__metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.metric strong {
  display: block;
  font-family: "Bitter", serif;
  font-size: 1.45rem;
  color: var(--teal-900);
}
.metric span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); }

.intro__aside {
  background: var(--teal-900);
  color: #c5e0e0;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--orange-500);
}
.intro__aside h2 { color: #fff; font-size: 1.1rem; margin-bottom: 16px; }
.facts { list-style: none; margin: 0; padding: 0; }
.facts li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .86rem;
}
.facts li:last-child { border-bottom: 0; }
.facts b { color: var(--orange-500); font-weight: 700; }
.intro__aside p { font-size: .76rem; color: rgba(197,224,224,.6); margin: 14px 0 0; }

/* Regulators strip */
.bodies {
  background: var(--bg-2);
  border-block: 1px solid var(--border);
  padding: 16px 0;
}
.bodies__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bodies__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-soft);
  margin: 0;
}
.bodies__imgs { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.bodies__imgs img { max-height: 30px; opacity: .72; transition: .2s; }
.bodies__imgs img:hover { opacity: 1; }
.bodies__imgs img.logo-ukgc { filter: invert(1); opacity: .65; }
.bodies__imgs img.logo-ukgc:hover { opacity: 1; }

/* Blocks */
.block { padding: clamp(48px, 7vw, 84px) 0; }
.block--white { background: var(--white); }
.block--teal { background: linear-gradient(155deg, var(--teal-950), var(--teal-900)); color: #c5e0e0; }

.block__top { margin-bottom: 36px; }
.block__top--mid { text-align: center; max-width: 660px; margin-inline: auto; }
.block__top h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.block__top--inv h2 { color: #fff; }
.block__sub { color: var(--text-soft); margin: 8px 0 0; font-size: .94rem; }
.block__top--mid .block__sub { margin-inline: auto; }
.block__sub--inv { color: rgba(197,224,224,.8); }
.block__top--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.block__top--row .block__sub { max-width: 420px; margin: 0; text-align: right; }

/* Venues — full-width stacked cards */
.venues { display: flex; flex-direction: column; gap: 14px; }
.venue {
  display: grid;
  grid-template-columns: 56px 120px 1fr 90px 150px;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.venue:hover {
  transform: scale(1.005);
  border-color: var(--orange-500);
  box-shadow: var(--shadow-lg);
}
.venue__num {
  font-family: "Bitter", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-500);
  text-align: center;
}
.venue__logo {
  height: 60px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.venue__logo--inv { background: var(--teal-900); border-color: var(--teal-800); }
.venue__logo img { max-height: 44px; object-fit: contain; }
.venue__info h3 { font-size: 1.1rem; margin-bottom: 3px; }
.venue__info p { margin: 0 0 6px; font-size: .84rem; color: var(--text-soft); }
.venue__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.venue__chips span {
  font-size: .68rem;
  font-weight: 700;
  background: var(--teal-100);
  color: var(--teal-800);
  padding: 2px 7px;
  border-radius: 4px;
}
.venue__score { text-align: center; }
.venue__score-val { font-weight: 800; font-size: 1.05rem; color: var(--teal-900); }
.venue .action { width: 100%; }
.venue__legal { grid-column: 2 / -1; font-size: .68rem; color: var(--text-soft); margin: 0; text-align: right; }

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

/* Pillars — methodology */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pillar {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow);
}
.pillar__n {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--teal-900);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-family: "Bitter", serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.pillar h3 { font-size: 1rem; margin-bottom: 4px; }
.pillar p { margin: 0; font-size: .84rem; color: var(--text-soft); }

/* Genres */
.genres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.genre {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--orange-500);
  border-radius: var(--r);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.genre:hover { transform: translateY(-3px); }
.genre__ico {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--teal-100);
  color: var(--teal-800);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.genre h3 { font-size: 1rem; margin-bottom: 5px; }
.genre p { margin: 0; font-size: .82rem; color: var(--text-soft); }

/* Deals */
.deals { display: flex; flex-direction: column; gap: 10px; }
.deal {
  display: grid;
  grid-template-columns: 100px 1fr 80px auto;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 16px 20px;
}
.deal__logo img {
  max-height: 30px;
  background: #fff;
  border-radius: 6px;
  padding: 5px 8px;
}
.deal__logo img.deal__logo--inv { background: var(--teal-950); }
.deal__text h3 { color: #fff; font-size: .92rem; font-family: "Manrope", sans-serif; font-weight: 700; margin-bottom: 2px; }
.deal__text p { margin: 0; font-size: .8rem; color: rgba(197,224,224,.75); }
.deal__wag { font-weight: 800; color: var(--orange-500); text-align: center; font-size: .88rem; }
.deal__wag small { display: block; font-size: .62rem; color: rgba(197,224,224,.55); font-weight: 500; }
.deal-note { margin-top: 16px; font-size: .76rem; color: rgba(197,224,224,.65); }

/* Notes / testimonials */
.notes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.note {
  background: var(--white);
  border-left: 4px solid var(--orange-500);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 22px 20px;
  margin: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 170px;
}
.note blockquote { margin: 0 0 14px; font-size: .88rem; line-height: 1.55; flex: 1; font-style: italic; }
.note figcaption { display: flex; align-items: center; gap: 10px; }
.note img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal-800); }
.note figcaption div { line-height: 1.25; }
.note strong { font-size: .82rem; }
.note small { font-size: .72rem; color: var(--text-soft); }

/* Body cards — regulators */
.body-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.body-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.body-card:hover { border-color: var(--orange-500); transform: translateY(-2px); }
.body-card__img { height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.body-card__img img { max-height: 30px; }
.body-card__img img.logo-ukgc { filter: invert(1); }
.body-card h3 { font-size: .92rem; margin-bottom: 5px; }
.body-card p { margin: 0; font-size: .78rem; color: var(--text-soft); }

/* FAQ */
.qa { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qa-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.qa-item[open] { border-color: var(--orange-500); }
.qa-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary::after { content: "▾"; color: var(--orange-500); transition: transform .2s; }
.qa-item[open] summary::after { transform: rotate(180deg); }
.qa-item__a { padding: 0 18px 14px; }
.qa-item__a p { margin: 0; font-size: .86rem; color: var(--text-soft); }
.qa-item__a a { color: var(--teal-800); font-weight: 700; text-decoration: underline; }

/* Dual panels */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dual__box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.dual__box h2 { font-size: 1.4rem; margin-bottom: 10px; }
.dual__box h3 { font-size: 1.05rem; margin: 6px 0 8px; }
.dual__box p { font-size: .88rem; color: var(--text-soft); margin: 0 0 10px; }
.dual__box ul { margin: 0 0 16px; padding: 0; list-style: none; display: grid; gap: 7px; }
.dual__box li { padding-left: 18px; position: relative; font-size: .84rem; color: var(--text-soft); }
.dual__box li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-500); font-weight: 800; }
.dual__btns { display: flex; gap: 8px; flex-wrap: wrap; }
.dual__box--inv {
  background: var(--teal-900);
  color: #c5e0e0;
  border-color: transparent;
}
.dual__box--inv h2, .dual__box--inv h3 { color: #fff; }
.dual__box--inv p { color: rgba(197,224,224,.85); }
.dual__box--inv .badge--soft { background: rgba(255,140,66,.2); color: var(--orange-500); }

/* Footer */
.foot { background: var(--teal-950); color: #8ab4b4; }
.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding: 44px 0 32px;
}
.foot .logo__title { color: #fff; }
.foot__about { font-size: .82rem; margin: 10px 0; max-width: 270px; color: #6a9494; }
.foot__age {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 6px;
  border: 2px solid var(--orange-500);
  color: var(--orange-500);
  font-weight: 800;
  font-size: .76rem;
  align-items: center;
  justify-content: center;
}
.foot-col h4 {
  font-family: "Manrope", sans-serif;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin-bottom: 10px;
}
.foot-col a { display: block; font-size: .84rem; padding: 3px 0; color: #8ab4b4; }
.foot-col a:hover { color: var(--orange-500); }
.foot-col p { font-size: .76rem; color: #6a9494; margin: 0; }
.foot__end {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
.foot__end-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.foot__end-row p { margin: 0; font-size: .74rem; }
.foot__hint { color: var(--orange-500); }

/* Age gate */
.overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,53,53,.86);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.overlay[hidden] { display: none; }
.overlay__box {
  background: var(--white);
  border-radius: var(--r-lg);
  max-width: 400px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange-500);
}
.overlay__18 {
  width: 54px; height: 54px;
  margin: 0 auto 12px;
  border-radius: 10px;
  background: var(--teal-900);
  color: var(--orange-500);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.overlay__box h2 { font-size: 1.35rem; margin-bottom: 8px; }
.overlay__box > p { font-size: .88rem; color: var(--text-soft); margin: 0 0 18px; }
.overlay__acts { display: flex; flex-direction: column; gap: 8px; }
.overlay__fine { font-size: .72rem; color: var(--text-soft); margin: 14px 0 0; }
.overlay__fine a { color: var(--teal-800); text-decoration: underline; }

/* Cookie */
.cookie {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: min(880px, calc(100% - 24px));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  border-right: 4px solid var(--orange-500);
}
.cookie[hidden] { display: none; }
.cookie__row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; flex-wrap: wrap;
}
.cookie__row p { margin: 0; flex: 1; min-width: 200px; font-size: .8rem; color: var(--text-soft); }
.cookie__row a { color: var(--teal-800); text-decoration: underline; }
.cookie__row div { display: flex; gap: 6px; }

/* Legal */
.legal-page { padding: 40px 0 68px; }
.legal-page h1 { font-size: 1.9rem; margin-bottom: 4px; }
.legal-page .meta { color: var(--text-soft); font-size: .84rem; margin-bottom: 26px; }
.legal-page h2 { font-size: 1.15rem; margin: 22px 0 8px; }
.legal-page p, .legal-page li { font-size: .9rem; color: var(--text-soft); }
.legal-page a { color: var(--teal-800); text-decoration: underline; }

@media (max-width: 960px) {
  .menu { display: none; }
  .hamburger { display: flex; }
  .intro__cols { grid-template-columns: 1fr; }
  .intro__aside { order: -1; }
  .venue { grid-template-columns: 44px 1fr; gap: 12px; }
  .venue__logo { justify-self: end; width: 90px; }
  .venue__info { grid-column: 1 / -1; }
  .venue__score { grid-column: 1; text-align: left; }
  .venue .action { grid-column: 2; }
  .venue__legal { text-align: left; }
  .genres { grid-template-columns: repeat(2, 1fr); }
  .qa { grid-template-columns: 1fr; }
  .dual { grid-template-columns: 1fr; }
  .body-cards { grid-template-columns: repeat(2, 1fr); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .block__top--row .block__sub { text-align: left; }
}

@media (max-width: 600px) {
  .pillars, .notes { grid-template-columns: 1fr; }
  .genres, .body-cards { grid-template-columns: 1fr; }
  .deal { grid-template-columns: 1fr; text-align: center; }
  .foot__grid { grid-template-columns: 1fr; }
  .foot__end-row { flex-direction: column; }
}

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