/* -------------------------------------------------------
   BaseCasinoReview — design system
   ------------------------------------------------------- */

:root {
  --color-bg: #0c0f14;
  --color-bg-elevated: #141a24;
  --color-surface: #1a2230;
  --color-border: rgba(212, 175, 95, 0.18);
  --color-gold: #d4af5f;
  --color-gold-bright: #f0d78c;
  --color-teal: #2dd4bf;
  --color-teal-dim: #14b8a6;
  --color-text: #e8edf5;
  --color-text-muted: #94a3b8;
  --color-red: #f5a0a0;

  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --container-max: 1200px;
  --nav-height: 72px;
  --radius-md: 10px;
  --shadow-nav: 0 4px 24px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

p { margin: 0 0 1rem; }

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

/* -------------------- Buttons -------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn--primary {
  color: #0c0f14;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dim) 100%);
}
.btn--primary:hover { background: linear-gradient(135deg, #5eead4 0%, var(--color-teal) 100%); transform: translateY(-1px); }

.btn--secondary {
  color: var(--color-text-muted);
  background: transparent;
  border-color: var(--color-border);
}
.btn--secondary:hover { color: var(--color-gold-bright); border-color: var(--color-gold); background: #d4af5f0f; }

.btn--gold {
  color: #1a1408;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-bright) 100%);
}
.btn--gold:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn--full { width: 100%; }
.btn--small { padding: 0.625rem 0.875rem; font-size: 0.8125rem; }

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c53030, #9b2c2c);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  border-radius: 6px;
  padding: 3px 7px;
  flex-shrink: 0;
}

/* -------------------- Navbar -------------------- */

.navbar {
  position: relative;
  background: var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-nav);
  z-index: 100;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 1rem;
}
.navbar__logo { flex-shrink: 0; display: flex; align-items: center; gap: 0.5rem; padding-block: 0.75rem; }
.navbar__logo-img { width: auto; max-height: 40px; object-fit: contain; }
.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold-bright);
  letter-spacing: -0.02em;
}
.navbar__logo-text span { color: var(--color-teal); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  z-index: 110;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.navbar__toggle:hover { border-color: var(--color-gold); background: #222c3d; }
.navbar__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold-bright);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.navbar__toggle.is-active .navbar__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-active .navbar__toggle-bar:nth-child(2) { opacity: 0; }
.navbar__toggle.is-active .navbar__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__nav { display: flex; align-items: center; }
.navbar__list { display: flex; align-items: center; gap: 0.25rem; }
.navbar__link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
}
.navbar__link:hover, .navbar__link.is-current { color: var(--color-gold-bright); background: #d4af5f14; }
.navbar__overlay { display: none; }

@media (max-width: 900px) {
  .navbar__toggle { display: flex; }
  .navbar__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg-elevated);
    border-left: 1px solid var(--color-border);
    padding: calc(var(--nav-height) + 1rem) 1.25rem 2rem;
    transform: translate(100%);
    transition: transform 0.3s ease;
    z-index: 105;
    overflow-y: auto;
  }
  .navbar__nav.is-open { transform: translate(0); }
  .navbar__list { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .navbar__link { padding: 0.875rem 1rem; font-size: 1rem; }
  .navbar__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: #0009;
    border: none;
    cursor: pointer;
    z-index: 104;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}

/* -------------------- Hero -------------------- */

.hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45, 212, 191, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(212, 175, 95, 0.1) 0%, transparent 50%),
    var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 95, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 95, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}
.hero__inner { position: relative; max-width: 720px; margin-inline: auto; }
.hero__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 480px) {
  .hero { padding: 2.25rem 0 2.75rem; }
}

/* -------------------- Offer listing -------------------- */

.listing { padding: 3rem 0 4rem; background: var(--color-bg); }
.listing__header { text-align: center; margin-bottom: 2.5rem; }
.listing__title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; margin-bottom: 0.5rem; }
.listing__intro { font-size: 1rem; color: var(--color-text-muted); max-width: 520px; margin-inline: auto; }
.listing__table { display: flex; flex-direction: column; gap: 1rem; }
.listing__head {
  display: grid;
  grid-template-columns: 56px 1.4fr 1.6fr 100px 160px;
  gap: 1rem;
  padding: 0 1.25rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.offer {
  background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-bg-elevated) 100%);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px #00000040;
}
.offer--top .offer__rank {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-bright) 100%);
  color: #1a1408;
  box-shadow: 0 0 20px #d4af5f59;
}
.offer__row {
  display: grid;
  grid-template-columns: 56px 1.4fr 1.6fr 100px 160px;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
}
.offer__col { min-width: 0; }
.offer__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-teal);
  background: #2dd4bf1f;
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 50%;
}
.offer__brand { display: flex; align-items: center; gap: 1rem; }
.offer__image {
  width: 120px;
  height: 64px;
  object-fit: contain;
  background: #00000040;
  border-radius: var(--radius-md);
  padding: 0.5rem;
  border: 1px solid var(--color-border);
}
.offer__name { display: none; font-weight: 600; font-size: 0.9375rem; }
.offer__label {
  display: none;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}
.offer__bonus { font-size: 0.9375rem; font-weight: 600; line-height: 1.45; color: var(--color-gold-bright); }
.offer__score-wrap { display: flex; align-items: baseline; gap: 0.125rem; }
.offer__score { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; line-height: 1; color: var(--color-teal); }
.offer__score-max { font-size: 0.875rem; font-weight: 500; color: var(--color-text-muted); }
.offer__col--actions { display: flex; flex-direction: column; gap: 0.5rem; }
.offer__btn {
  display: block;
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.offer__btn--primary {
  color: #0c0f14;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dim) 100%);
  border: 1px solid transparent;
}
.offer__btn--primary:hover { background: linear-gradient(135deg, #5eead4 0%, var(--color-teal) 100%); transform: translateY(-1px); }
.offer__btn--secondary { color: var(--color-text-muted); background: transparent; border: 1px solid var(--color-border); }
.offer__btn--secondary:hover { color: var(--color-gold-bright); border-color: var(--color-gold); background: #d4af5f0f; }
.offer__disclaimer {
  margin: 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  background: #0003;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 960px) {
  .listing__head { display: none; }
  .offer__row { grid-template-columns: 48px 1fr; grid-template-rows: auto auto auto; gap: 1rem 0.75rem; }
  .offer__col--rank { grid-row: 1 / 3; align-self: start; }
  .offer__col--brand { grid-column: 2; }
  .offer__name { display: block; }
  .offer__col--bonus, .offer__col--score, .offer__col--actions { grid-column: 1 / -1; }
  .offer__label { display: block; }
  .offer__col--actions { flex-direction: row; flex-wrap: wrap; }
  .offer__btn { flex: 1; min-width: 140px; }
}
@media (max-width: 480px) {
  .listing { padding: 2rem 0 3rem; }
  .offer__row { grid-template-columns: 1fr; text-align: center; }
  .offer__col--rank { grid-row: auto; display: flex; justify-content: center; }
  .offer__col--brand { grid-column: 1; }
  .offer__brand { flex-direction: column; }
  .offer__image { margin-inline: auto; }
  .offer__col--actions { flex-direction: column; }
  .offer__btn { min-width: 0; }
}

/* -------------------- Age gate -------------------- */

.site-content--locked { pointer-events: none; user-select: none; filter: blur(4px); }

.age-modal__backdrop { position: fixed; inset: 0; background: #000000bf; z-index: 9000; }
.age-modal { position: fixed; inset: 0; z-index: 9001; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.age-modal__panel {
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 24px 64px #00000080;
  text-align: center;
}
.age-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-teal);
  background: #2dd4bf1f;
  border-radius: 50%;
}
.age-modal__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.age-modal__text { font-size: 0.9375rem; color: var(--color-text-muted); margin-bottom: 0.75rem; line-height: 1.6; }
.age-modal__text--small { font-size: 0.8125rem; }
.age-modal__actions { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 1.25rem; }
.age-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.age-modal__btn--yes { color: #0c0f14; background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dim) 100%); }
.age-modal__btn--yes:hover { background: linear-gradient(135deg, #5eead4 0%, var(--color-teal) 100%); }
.age-modal__btn--no { color: var(--color-text-muted); background: var(--color-surface); border: 1px solid var(--color-border); }
.age-modal__btn--no:hover { color: var(--color-text); border-color: #f5d0d059; background: #2a1a1a; }

.age-restrict { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1.25rem; background: var(--color-bg); }
.age-restrict__inner { max-width: 480px; text-align: center; }
.age-restrict__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  color: var(--color-red);
  background: #b43c3c26;
  border: 2px solid rgba(245, 160, 160, 0.35);
  border-radius: 50%;
}
.age-restrict__title { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.age-restrict__text { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 0.75rem; }
.age-restrict__retry {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.age-restrict__retry:hover { border-color: var(--color-gold); color: var(--color-gold-bright); }

/* -------------------- Cookie bar -------------------- */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  padding: 1rem 0;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 32px #00000059;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-bar__content { display: flex; align-items: flex-start; gap: 1rem; flex: 1; min-width: 240px; }
.cookie-bar__icon { flex-shrink: 0; font-size: 1.5rem; color: var(--color-gold); margin-top: 0.125rem; }
.cookie-bar__title { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.cookie-bar__text { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.5; margin: 0; }
.cookie-bar__link { color: var(--color-teal); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar__link:hover { color: var(--color-gold-bright); }
.cookie-bar__actions { display: flex; gap: 0.625rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-bar__btn {
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0c0f14;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-bright) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.cookie-bar__btn:hover { filter: brightness(1.08); }
.cookie-bar__btn--secondary { color: var(--color-text-muted); background: transparent; border: 1px solid var(--color-border); }
.cookie-bar__btn--secondary:hover { color: var(--color-gold-bright); border-color: var(--color-gold); background: transparent; }

@media (max-width: 768px) {
  .cookie-bar__inner { flex-direction: column; align-items: stretch; }
  .cookie-bar__actions { flex-direction: column; }
  .cookie-bar__btn { width: 100%; }
}

/* -------------------- Info block / grid / strip -------------------- */

.info-block { padding: 3.5rem 0; background: var(--color-bg-elevated); border-top: 1px solid var(--color-border); }
.info-block__header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.info-block__title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; margin-bottom: 0.5rem; }
.info-block__lead { color: var(--color-text-muted); font-size: 1rem; line-height: 1.65; margin: 0; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.info-card { padding: 1.5rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 14px; }
.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--color-teal);
  background: #2dd4bf1a;
  border-radius: var(--radius-md);
}
.info-card__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; }
.info-card__text { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; }

.info-strip { padding: 3rem 0; border-top: 1px solid var(--color-border); }
.info-strip__inner { display: flex; flex-direction: column; gap: 1.5rem; }
.info-strip__item { display: flex; gap: 1rem; align-items: flex-start; }
.info-strip__item > i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-gold);
  background: #d4af5f1a;
  border-radius: var(--radius-md);
}
.info-strip__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.info-strip__text { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; }

@media (min-width: 768px) {
  .info-strip__inner { flex-direction: row; gap: 2rem; }
  .info-strip__item { flex: 1; }
}
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* -------------------- CTA panel -------------------- */

.cta-panel { padding: 3rem 0 4rem; background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(212, 175, 95, 0.08) 0%, transparent 60%), var(--color-bg); }
.cta-panel__inner { text-align: center; max-width: 600px; margin-inline: auto; }
.cta-panel__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-panel__text { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.cta-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-teal);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
}
.cta-panel__link:hover { color: #0c0f14; background: var(--color-teal); }

/* -------------------- Footer -------------------- */

.footer { padding: 3rem 0 1.5rem; background: #080a0e; border-top: 1px solid var(--color-border); }
.footer__age-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  background: #b43c3c14;
  border: 1px solid rgba(245, 160, 160, 0.2);
  border-radius: 12px;
}
.footer__age-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #c53030, #9b2c2c);
  border-radius: 10px;
  box-shadow: 0 4px 16px #c5303059;
}
.footer__age-text { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.55; margin: 0; }

.footer__badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.25rem; margin-bottom: 2rem; }
.footer__badge { display: block; opacity: 0.85; transition: opacity 0.2s ease; }
.footer__badge:hover { opacity: 1; }
.footer__badge-img { width: auto; max-height: 44px; object-fit: contain; background: #fff; border-radius: 8px; padding: 6px 10px; }
.footer__badge-img--dark { background: var(--color-bg-elevated); border: 1px solid var(--color-border); }

.footer__responsible {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.footer__responsible > i { flex-shrink: 0; margin-top: 0.125rem; color: var(--color-teal); }
.footer__responsible a { color: var(--color-teal); text-decoration: underline; text-underline-offset: 2px; }
.footer__responsible a:hover { color: var(--color-gold-bright); }

.footer__nav-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer__nav-title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-gold); margin-bottom: 0.75rem; }
.footer__nav-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav-link { font-size: 0.875rem; color: var(--color-text-muted); transition: color 0.2s ease; }
.footer__nav-link:hover { color: var(--color-gold-bright); }

.footer__affiliate { padding: 1.25rem; margin-bottom: 2rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; }
.footer__affiliate-title { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.5rem; }
.footer__affiliate-title i { color: var(--color-gold); }
.footer__affiliate-text { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; }

.footer__bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.footer__copy { display: flex; align-items: center; justify-content: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.footer__disclaimer { font-size: 0.75rem; color: var(--color-text-muted); line-height: 1.5; margin: 0; }

@media (max-width: 768px) {
  .footer__nav-grid { grid-template-columns: 1fr; }
  .footer__age-row { flex-direction: column; text-align: center; }
}

/* -------------------- Legal / page shell -------------------- */

.legal-page { padding: 2.5rem 0 4rem; }
.legal-page__inner { max-width: 720px; }
.legal-page__back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--color-teal); margin-bottom: 1.5rem; }
.legal-page__back:hover { color: var(--color-gold-bright); }
.legal-page__title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; margin-bottom: 1.5rem; }
.legal-page__body p { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1rem; }
.legal-page__heading { font-size: 1.125rem; font-weight: 600; color: var(--color-text); margin: 1.75rem 0 0.75rem; }
.legal-page__heading:first-child { margin-top: 0; }

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.875rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.policy-table th, .policy-table td {
  border-bottom: 1px solid var(--color-border);
  padding: 0.625rem 0.875rem;
  text-align: left;
  vertical-align: top;
  color: var(--color-text-muted);
}
.policy-table th { color: var(--color-gold-bright); font-weight: 600; background: var(--color-bg-elevated); }
.policy-table tr:last-child td { border-bottom: none; }

.page-shell { padding: 2.5rem 0 4rem; }
.page-shell__inner { max-width: 800px; }
.page-shell__back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--color-teal); margin-bottom: 1.5rem; }
.page-shell__back:hover { color: var(--color-gold-bright); }
.page-shell__title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; margin-bottom: 0.5rem; }
.page-shell__lead { font-size: 1rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 2rem; }
.page-shell__body p { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 1rem; }

.content-block { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--color-border); }
.content-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.content-block__title { display: flex; align-items: center; gap: 0.5rem; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.content-block__title i { color: var(--color-teal); }

.check-list, .cross-list { padding: 0; }
.check-list li, .cross-list li { position: relative; padding: 0.375rem 0 0.375rem 1.75rem; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.6; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--color-teal); font-weight: 800; }
.cross-list li::before { content: "!"; position: absolute; left: 0.125rem; color: var(--color-gold); font-weight: 800; }

.callout {
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
}
.callout h3 { margin-bottom: 0.5rem; }
.callout p { margin: 0; color: var(--color-text-muted); }

.contact-email { margin: 1rem 0; }
.contact-email a { font-size: 1.125rem; font-weight: 600; color: var(--color-gold-bright); }
.contact-email a:hover { color: var(--color-teal); }

.contact-details { margin-top: 0.5rem; }
.contact-details li { padding: 0.375rem 0; font-size: 0.9375rem; color: var(--color-text-muted); }
.contact-details strong { color: var(--color-text); }

.support-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.support-card { padding: 1.5rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 14px; text-align: center; }
.support-card img { height: 36px; width: auto; margin: 0 auto 1rem; background: #fff; border-radius: 8px; padding: 6px 10px; }
.support-card img.logo-dark { background: var(--color-bg-elevated); border: 1px solid var(--color-border); }
.support-card h3 { margin-bottom: 0.5rem; }
.support-card p { font-size: 0.875rem; color: var(--color-text-muted); }

@media (max-width: 768px) {
  .support-cards { grid-template-columns: 1fr; }
}

/* -------------------- Casino grid / cards -------------------- */

.casino-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.casino-card { padding: 1.25rem; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 14px; }
.casino-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.casino-card__img { max-height: 40px; width: auto; object-fit: contain; }
.casino-card__score { font-family: var(--font-display); font-weight: 700; color: var(--color-teal); }
.casino-card__name { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; }
.casino-card__bonus { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.5; margin-bottom: 1rem; }
.casino-card__actions { display: flex; flex-direction: column; gap: 0.5rem; }
.casino-card__home-link { display: block; font-size: 0.8125rem; color: var(--color-text-muted); text-align: center; margin-top: 0.5rem; }
.casino-card__home-link:hover { color: var(--color-gold-bright); }

/* -------------------- FAQ -------------------- */

.faq-list__item { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--color-border); }
.faq-list__item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-list__q { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; cursor: pointer; list-style: none; }
.faq-list__q::-webkit-details-marker { display: none; }
.faq-list__q i { flex-shrink: 0; margin-top: 0.2rem; color: var(--color-gold); }
.faq-list__a { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.65; margin: 0 0 0 1.625rem; }
.faq-group__title { margin-top: 2rem; }
.faq-group__title:first-child { margin-top: 0; }

@media (max-width: 768px) {
  .faq-list__a { margin-left: 0; }
}

/* -------------------- Offer review (review detail) -------------------- */

.offer-review { padding: 2.5rem 0 4rem; }
.offer-review__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}
.offer-review__brand { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.offer-review__logo { max-height: 64px; width: auto; object-fit: contain; }
.offer-review__title { font-size: clamp(1.375rem, 4vw, 1.75rem); font-weight: 700; margin-bottom: 0.375rem; }
.offer-review__bonus-line { font-size: 0.9375rem; color: var(--color-gold-bright); font-weight: 500; margin: 0; }
.offer-review__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.offer-review__score { text-align: center; }
.offer-review__score-value { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; line-height: 1; color: var(--color-teal); }
.offer-review__score-label { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.offer-review__cta { min-width: 160px; }
.offer-review__sections { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.offer-review__block { padding: 1.25rem; background: var(--color-bg-elevated); border: 1px solid var(--color-border); border-radius: 12px; }
.offer-review__block-title { display: flex; align-items: center; gap: 0.5rem; font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.75rem; }
.offer-review__block-title i { color: var(--color-teal); }
.offer-review__block-text { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.7; margin: 0; }
.offer-review__block-list { margin: 0; }
.offer-review__block-list li { position: relative; padding: 0.3rem 0 0.3rem 1.5rem; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.6; }
.offer-review__block-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--color-teal); font-weight: 800; }
.offer-review__block-list--cross li::before { content: "!"; color: var(--color-gold); left: 0.125rem; }
.offer-review__disclaimer { font-size: 0.6875rem; color: var(--color-text-muted); line-height: 1.5; margin-bottom: 1.5rem; }
.offer-review__footer-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.offer-review__footer-cta .offer__btn { width: auto; min-width: 160px; }
.offer-review__sidebar-note { font-size: 0.75rem; color: var(--color-text-muted); text-align: center; margin-top: 0.5rem; }

@media (max-width: 768px) {
  .offer-review__meta { align-items: stretch; width: 100%; }
  .offer-review__cta { width: 100%; }
}

/* -------------------- 404 -------------------- */

.not-found { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 0; }
.not-found h1 { font-size: clamp(3rem, 10vw, 5rem); color: var(--color-gold-bright); margin-bottom: 0.5rem; }
.not-found p { color: var(--color-text-muted); margin-bottom: 1.5rem; }
