/* ============================================================
   sportwettenanbet.com — design system
   Palette: Tricolore moderne (cobalt + ruby + light)
   Typography: Fraunces (display) + Inter (text)
   ============================================================ */

:root {
  --c-bg: #fafafa;
  --c-bg-soft: #f3f4f7;
  --c-bg-card: #ffffff;
  --c-ink: #0a0e1f;
  --c-ink-2: #1f2438;
  --c-muted: #5b6172;
  --c-line: #e6e8ef;
  --c-line-2: #d9dde6;

  --c-primary: #1d3eb8;
  --c-primary-2: #2952d9;
  --c-primary-deep: #102675;
  --c-accent: #d62828;
  --c-accent-2: #ef3b3b;
  --c-gold: #c89a3f;

  --c-ok: #1f8a45;
  --c-warn: #c87a14;

  --grad-primary: linear-gradient(135deg, #1d3eb8 0%, #2952d9 50%, #4a72e8 100%);
  --grad-accent: linear-gradient(135deg, #d62828 0%, #ef3b3b 100%);
  --grad-flag: linear-gradient(90deg, #1d3eb8 0%, #1d3eb8 33%, #ffffff 33%, #ffffff 66%, #d62828 66%, #d62828 100%);

  --shadow-sm: 0 1px 2px rgba(10,14,31,.06), 0 1px 1px rgba(10,14,31,.04);
  --shadow-md: 0 10px 24px rgba(10,14,31,.08), 0 2px 6px rgba(10,14,31,.05);
  --shadow-lg: 0 30px 60px -20px rgba(10,14,31,.22), 0 12px 24px -12px rgba(29,62,184,.18);
  --shadow-glow: 0 24px 60px -16px rgba(29,62,184,.35);
  --shadow-ruby: 0 18px 38px -12px rgba(214,40,40,.32);

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  --container: 1280px;
}

/* ============================================================
   Reset
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { flex: 1; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", "Times New Roman", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -.015em;
  overflow-wrap: break-word;
  word-break: break-word;
  color: var(--c-ink);
}
a { overflow-wrap: break-word; word-break: break-word; }
p { margin: 0; overflow-wrap: break-word; }
ul, ol { margin: 0; padding: 0; list-style: none; }

button, [role="button"], a.btn, .btn {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

::selection { background: var(--c-primary); color: #fff; }

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}
@media (max-width: 820px) { .container { padding-inline: 20px; } }
@media (max-width: 430px) { .container { padding-inline: 16px; } }

.section {
  padding-block: 96px;
  position: relative;
}
@media (max-width: 1100px) { .section { padding-block: 76px; } }
@media (max-width: 820px) { .section { padding-block: 60px; } }
@media (max-width: 430px) { .section { padding-block: 48px; } }

.section__head {
  margin-bottom: 30px;
}
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -.02em;
}
.section__title em {
  font-style: italic;
  color: var(--c-primary);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.section__lead {
  margin-top: 16px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--c-muted);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 32px 70px -20px rgba(29,62,184,.5); }
.btn--primary:hover::after { transform: translateX(100%); }

.btn--ruby {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-ruby);
}
.btn--ruby::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
}
.btn--ruby:hover { transform: translateY(-2px); box-shadow: 0 28px 60px -16px rgba(214,40,40,.55); }
.btn--ruby:hover::after { transform: translateX(100%); }

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-line-2);
}
.btn--ghost:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); transform: translateY(-2px); }

.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn .ico { width: 18px; height: 18px; }

/* ============================================================
   Header + Nav + Burger
   ============================================================ */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,250,250,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
  overflow: visible;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
@media (max-width: 820px) {
  .site-header {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 1px 0 var(--c-line);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 18px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--c-ink);
}
.brand svg { width: 36px; height: 36px; flex-shrink: 0; }
.brand__name em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--c-primary);
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink-2);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color .2s var(--ease), background .25s var(--ease);
}
.nav a::before {
  content: "";
  position: absolute;
  inset: 6px 0;
  background: var(--c-primary);
  opacity: 0;
  border-radius: 12px;
  transform: scale(.85);
  transition: opacity .3s var(--ease), transform .35s var(--ease-out);
  z-index: -1;
}
.nav a:hover, .nav a.is-active {
  color: #fff;
}
.nav a:hover::before, .nav a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--grad-accent);
  border-radius: 999px;
  box-shadow: 0 10px 22px -10px rgba(214,40,40,.5);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 16px 30px -10px rgba(214,40,40,.6); color: #fff; }
.header-cta .ico { width: 14px; height: 14px; }
.nav a.header-cta,
.nav a.header-cta:hover,
.nav a.header-cta.is-active { color: #fff; }
.nav a.header-cta::before,
.nav a.header-cta.is-active::before { display: none; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .header-cta { display: none; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 72px));
    z-index: 100;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f7 100%);
    border-top: 1px solid var(--c-line);
    box-shadow: 0 24px 50px rgba(10,14,31,.16);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }
  .nav a {
    width: 100%;
    padding: 16px 8px;
    font-size: 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--c-line);
  }
  .nav a::before { display: none; }
  .nav a:hover, .nav a.is-active { color: var(--c-primary); background: transparent; }
  .nav .header-cta {
    display: inline-flex;
    margin-top: 16px;
    align-self: flex-start;
    font-size: 16px;
    padding: 14px 22px;
  }
}

/* ============================================================
   Hero — full-bleed bg + scroll parallax shapes
   ============================================================ */

.hero {
  position: relative;
  padding-block: 110px 110px;
  overflow: hidden;
  isolation: isolate;
  background-color: #0a0e1f;
  background-image: url('/assets/img/hero/hero-bg.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fafafa;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,14,31,.55) 0%, rgba(10,14,31,.4) 40%, rgba(10,14,31,.85) 100%),
    linear-gradient(120deg, rgba(29,62,184,.5) 0%, rgba(214,40,40,.25) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
}

.hero__copy {
  position: relative;
  z-index: 3;
}
.hero__title {
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.02;
  color: #ffffff;
}
.hero__title .accent {
  color: #c89a3f;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.hero__title .year {
  display: inline-block;
  background: #ffffff;
  color: var(--c-ink);
  padding: 0 .3em;
  border-radius: 14px;
  font-style: normal;
  font-weight: 600;
  transform: rotate(-1.5deg);
  margin-left: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.hero__lead {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(255,255,255,.82);
}
.hero__meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.hero__meta-flag {
  display: inline-flex;
  width: 28px; height: 18px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.hero__meta-flag svg { width: 100%; height: 100%; display: block; }

/* Hero parallax — monotone golden stars, diagonal flow */
.hero__shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.4));
  color: #c89a3f;
}
.hero__shape svg { display: block; width: 100%; height: 100%; fill: currentColor; }
.hero__shape--1 { top: 5%;  left: 4%;   width: 90px;  height: 90px;  opacity: .9;  }
.hero__shape--2 { top: 12%; left: 18%;  width: 54px;  height: 54px;  opacity: .8;  }
.hero__shape--3 { top: 22%; left: 38%;  width: 70px;  height: 70px;  opacity: .65; }
.hero__shape--4 { top: 8%;  left: 62%;  width: 60px;  height: 60px;  opacity: .85; }
.hero__shape--5 { top: 18%; left: 82%;  width: 100px; height: 100px; opacity: .9;  }
.hero__shape--6 { top: 38%; left: 8%;   width: 46px;  height: 46px;  opacity: .55; }
.hero__shape--7 { top: 44%; left: 92%;  width: 75px;  height: 75px;  opacity: .8;  }
.hero__shape--8 { top: 58%; left: 28%;  width: 64px;  height: 64px;  opacity: .65; }
.hero__shape--9 { top: 62%; left: 70%;  width: 110px; height: 110px; opacity: .9;  }
.hero__shape--10 { top: 76%; left: 14%; width: 50px;  height: 50px;  opacity: .55; }
.hero__shape--11 { top: 78%; left: 48%; width: 72px;  height: 72px;  opacity: .75; }
.hero__shape--12 { top: 88%; left: 86%; width: 56px;  height: 56px;  opacity: .65; }

@media (max-width: 1100px) {
  .hero__shape--2, .hero__shape--6, .hero__shape--8, .hero__shape--11 { display: none; }
  .hero__shape--1  { width: 70px;  height: 70px;  }
  .hero__shape--5  { width: 80px;  height: 80px;  }
  .hero__shape--9  { width: 90px;  height: 90px;  }
}
@media (max-width: 520px) {
  .hero { padding-block: 20px 0; }
  .hero .container { gap: 16px; }
  .hero__title { font-size: clamp(28px, 7vw, 36px); }
  .hero__shape--3, .hero__shape--4, .hero__shape--7, .hero__shape--10, .hero__shape--12 { display: none; }
  .hero__shape--1  { width: 52px;  height: 52px;  top: 4%; }
  .hero__shape--5  { width: 60px;  height: 60px;  }
  .hero__shape--9  { width: 70px;  height: 70px;  }
}

/* ============================================================
   Advantages — compact strip inside hero
   ============================================================ */

.advantages {
  position: relative;
  z-index: 5;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5);
}
.advantage {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.95);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.advantage:hover {
  background: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 6px 14px -6px rgba(10,14,31,.18);
}
.advantage__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 16px -8px rgba(29,62,184,.55);
  transition: transform .35s var(--ease);
}
.advantage:nth-child(2) .advantage__icon { background: var(--grad-accent); box-shadow: 0 8px 16px -8px rgba(214,40,40,.55); }
.advantage:nth-child(3) .advantage__icon { background: linear-gradient(135deg, #0a0e1f, #2a2f47); box-shadow: 0 8px 16px -8px rgba(10,14,31,.5); }
.advantage:nth-child(4) .advantage__icon { background: linear-gradient(135deg, #1f8a45 0%, #2db968 100%); box-shadow: 0 8px 16px -8px rgba(31,138,69,.55); }
.advantage:hover .advantage__icon { transform: rotate(-6deg) scale(1.06); }
.advantage__icon svg { width: 20px; height: 20px; }
.advantage__label {
  font-family: "Fraunces", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.advantage__sub {
  font-size: 11.5px;
  color: var(--c-muted);
  margin-top: 1px;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .hero__lead,
  .hero__meta { display: none; }
  .advantage__sub { display: none; }
}
@media (max-width: 520px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 8px; }
  .advantage { padding: 4px 8px; gap: 8px; border-radius: 10px; }
  .advantage__icon { width: 32px; height: 32px; border-radius: 8px; }
  .advantage__icon svg { width: 16px; height: 16px; }
  .advantage__label { font-size: 12.5px; line-height: 1.15; }
  .advantage__sub { font-size: 10.5px; line-height: 1.25; }
}
@media (max-width: 360px) {
  .advantages__grid { gap: 5px; padding: 6px; }
  .advantage { padding: 7px; gap: 6px; }
  .advantage__icon { width: 28px; height: 28px; border-radius: 7px; }
  .advantage__icon svg { width: 14px; height: 14px; }
  .advantage__label { font-size: 11.5px; }
}

/* ============================================================
   Ranking section — casino cards
   ============================================================ */

.ranking {
  padding-top: 60px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(29,62,184,.04) 50%, transparent 100%);
}
@media (max-width: 520px) {
  .ranking { padding-top: 20px; }
}
.ranking__note {
  margin-top: 40px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--c-muted);
}
.ranking__updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
}
.ranking__updated svg {
  width: 16px; height: 16px;
  color: var(--c-ink);
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,138,69,.18); }
  50% { box-shadow: 0 0 0 8px rgba(31,138,69,.06); }
}

.casinos { display: grid; gap: 24px; }

.casino {
  display: grid;
  grid-template-columns: 90px 1.2fr 1.5fr 1.5fr 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  padding: 28px 32px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.casino:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.casino:hover .casino__rank-num {
  background-position: 100% 50%;
}

.casino__rank {
  display: grid;
  place-items: center;
  position: relative;
}
.casino__rank-num {
  font-family: "Fraunces", serif;
  font-size: 80px;
  font-weight: 600;
  background: linear-gradient(120deg, var(--c-primary) 0%, var(--c-primary) 40%, var(--c-accent) 50%, var(--c-primary) 60%, var(--c-primary) 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -.06em;
  transition: background-position .8s var(--ease);
}
.casino__rank-label {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 700;
  text-align: center;
}

.casino__brand { display: flex; flex-direction: column; gap: 14px; }
.casino__logo {
  display: inline-flex;
  align-items: center;
  height: 50px;
  text-decoration: none;
  transition: transform .3s var(--ease);
}
.casino__logo:hover { transform: translateY(-2px); }
.casino__logo svg,
.casino__logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.08));
}
.casino__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--c-ok);
  font-weight: 600;
}
.casino__verified svg { width: 14px; height: 14px; }

.casino__bonus {
  display: flex; flex-direction: column; gap: 6px;
}
.casino__bonus-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 700;
}
.casino__bonus-value {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -.015em;
  line-height: 1.2;
}
.casino__bonus-value em {
  font-style: italic;
  color: var(--c-accent);
}

.casino__perks {
  display: flex; flex-direction: column; gap: 8px;
}
.casino__perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--c-ink-2);
}
.casino__perk svg { width: 14px; height: 14px; color: var(--c-primary); flex-shrink: 0; }

.casino__cta { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.casino__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.casino__rating-num {
  font-family: "Fraunces", serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: -.04em;
  line-height: 1;
}
.casino__rating-stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.casino__rating-stars-row {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
}
.casino__rating-stars-row svg { width: 14px; height: 14px; }
.casino__rating-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 700;
}
.casino__btn {
  font-size: 13px;
  padding: 13px 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 1100px) {
  .casino {
    grid-template-columns: 80px 1fr 1fr;
    grid-template-areas:
      "rank brand brand"
      "rank bonus bonus"
      "rank perks cta";
    gap: 18px 24px;
    padding: 24px;
  }
  .casino__rank { grid-area: rank; align-self: start; }
  .casino__brand { grid-area: brand; }
  .casino__bonus { grid-area: bonus; }
  .casino__perks { grid-area: perks; }
  .casino__cta { grid-area: cta; }
  .casino__rank-num { font-size: 64px; }
}
@media (max-width: 820px) {
  .section__head {
    margin-bottom: 0px;
  }
  .casino {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "bonus"
      "cta";
    text-align: center;
    margin-top: 32px;
  }
  .casino__brand { align-items: center; }
  .casino__bonus { align-items: center; }
  .casino__perks { display: none; }
  .ranking__updated {
    padding: 3px 8px;
    font-size: 10px;
    gap: 4px;
    line-height: 1.25;
    letter-spacing: -.01em;
  }
  .ranking__updated svg { width: 10px; height: 10px; }
  .casino__rank {
    position: absolute;
    top: -24px;
    left: 16px;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 1px solid var(--c-line);
    border-radius: 50%;
    box-shadow: 0 12px 24px -6px rgba(10,14,31,.18);
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 0;
  }
  .casino__rank-num { font-size: 36px; }
  .casino__rank-label { display: none; }
}

/* ============================================================
   Reviews
   ============================================================ */

.reviews {
  background: var(--c-bg-soft);
  position: relative;
}
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/img/sections/about-bg.avif') center/cover no-repeat;
  opacity: .4;
  pointer-events: none;
}
.reviews .container { position: relative; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .reviews__grid { grid-template-columns: 1fr; } }

.review {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review__quote {
  position: absolute;
  top: 24px; right: 28px;
  width: 36px; height: 36px;
  color: var(--c-primary);
  opacity: .14;
}
.review__head { display: flex; align-items: center; gap: 16px; }
.review__avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 14px rgba(10,14,31,.12);
}
.review__name {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
  display: flex; align-items: center; gap: 8px;
}
.review__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--c-ok);
  background: rgba(31,138,69,.1);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.review__verified svg { width: 11px; height: 11px; }
.review__date {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 2px;
}
.review__stars {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
  margin: 16px 0 12px;
}
.review__stars svg { width: 16px; height: 16px; }
.review__text {
  color: var(--c-ink-2);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============================================================
   SEO content
   ============================================================ */

.info {
  background: #fff;
}
.info__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
}
@media (max-width: 1100px) { .info__grid { grid-template-columns: 1fr; gap: 32px; } }

.info__nav {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px;
  background: var(--c-bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
}
.info__nav-title {
  font-family: "Fraunces", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 12px;
  padding: 0 10px;
}
.info__nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--c-ink-2);
  font-weight: 500;
  transition: background .25s var(--ease), color .25s var(--ease);
  position: relative;
}
.info__nav a::before {
  content: ""; position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 0;
  background: var(--c-primary);
  border-radius: 3px;
  transform: translateY(-50%);
  transition: height .25s var(--ease);
}
.info__nav a:hover { background: #fff; color: var(--c-primary); }
.info__nav a:hover::before { height: 70%; }

@media (max-width: 1100px) {
  .info__nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; padding: 14px; }
  .info__nav-title { width: 100%; }
}

.info__body { display: flex; flex-direction: column; gap: 48px; }
.info__block { scroll-margin-top: 100px; }
.info__block-title {
  display: flex; align-items: center; gap: 14px;
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 16px;
}
.info__block-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-primary);
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 10px 22px -8px rgba(29,62,184,.5);
}
.info__block p {
  font-size: 16.5px;
  color: var(--c-ink-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.info__block ul {
  display: flex; flex-direction: column; gap: 12px;
  margin: 16px 0;
}
.info__block ul li {
  position: relative;
  padding-left: 28px;
  color: var(--c-ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.info__block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--c-primary);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12 L10 17 L19 8' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12 L10 17 L19 8' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center/contain;
}

/* ============================================================
   CTA banner
   ============================================================ */

.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--c-ink);
  color: #fff;
  padding-block: 96px;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/img/sections/cta-bg.avif') center/cover no-repeat;
  opacity: .35;
  z-index: -2;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,14,31,.92) 0%, rgba(29,62,184,.7) 60%, rgba(214,40,40,.55) 100%);
  z-index: -1;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .cta-banner__inner { grid-template-columns: 1fr; text-align: center; } }
.cta-banner h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  color: #fff;
}
.cta-banner h2 em {
  color: #fff;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  background: linear-gradient(120deg, #ffffff, #c89a3f 60%, #ffffff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cta-banner p {
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}
.cta-banner__actions {
  display: flex; gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 820px) { .cta-banner__actions { justify-content: center; } }
.cta-banner .btn--ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.cta-banner .btn--ghost:hover { background: #fff; color: var(--c-ink); border-color: #fff; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: #0a0e1f;
  color: rgba(255,255,255,.7);
  padding-block: 64px 32px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-flag);
}
.footer__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 1100px) {
  .footer__row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .footer__row { grid-template-columns: 1fr; }
}

.footer__brand .brand { color: #fff; font-size: 22px; }
.footer__brand .brand__name em { color: #ef3b3b; }
.footer__about {
  margin-top: 20px;
  color: rgba(255,255,255,.6);
  font-size: 14.5px;
  line-height: 1.7;
}

.footer__title {
  font-family: "Fraunces", serif;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,.7);
  font-size: 14.5px;
  transition: color .2s var(--ease), padding-left .25s var(--ease);
  position: relative;
}
.footer__links a:hover { color: #fff; padding-left: 14px; }
.footer__links a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity .25s var(--ease);
  color: var(--c-accent);
}
.footer__links a:hover::before { opacity: 1; }

.footer__licenses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 520px) { .footer__licenses { grid-template-columns: repeat(3, 1fr); } }

.license-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  place-items: center;
  min-height: 72px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  overflow: hidden;
}
.license-badge:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.license-badge svg {
  width: 100%;
  height: auto;
  max-height: 52px;
  display: block;
}

.footer__disclaimer {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 520px) { .footer__disclaimer { grid-template-columns: 1fr; } }
.footer__age {
  width: 80px; height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, #d62828 0%, #8a1414 100%);
  display: grid; place-items: center;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.02em;
  box-shadow: 0 14px 28px -10px rgba(214,40,40,.5);
}
.footer__disclaimer p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.7;
}

.footer__cols {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 820px) { .footer__cols { grid-template-columns: 1fr; } }
.footer__col h4 {
  font-family: "Fraunces", serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.footer__col h4 svg { width: 18px; height: 18px; color: var(--c-accent-2); }
.footer__col p {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.footer__col a { color: var(--c-accent-2); }
.footer__col a:hover { color: #fff; text-decoration: underline; }

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }

/* ============================================================
   Chat widget
   ============================================================ */

.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 38px -8px rgba(29,62,184,.5);
  z-index: 90;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.chat-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 24px 50px -10px rgba(29,62,184,.6); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-fab__dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  border: 2px solid #fff;
  animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 520px) { .chat-fab { right: 16px; bottom: 16px; width: 56px; height: 56px; } }

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 360px;
  height: 460px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 70px -16px rgba(10,14,31,.32);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 95;
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  border: 1px solid var(--c-line);
}
.chat-panel[data-open="true"] { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
@media (max-width: 520px) {
  .chat-panel { right: 16px; left: 16px; width: auto; bottom: 84px; height: 60dvh; }
}

.chat-panel__head {
  background: var(--grad-primary);
  color: #fff;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  position: relative;
}
.chat-panel__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.4);
}
.chat-panel__name { font-family: "Fraunces", serif; font-size: 16px; font-weight: 600; }
.chat-panel__status { font-size: 12px; opacity: .85; display: flex; align-items: center; gap: 6px; }
.chat-panel__status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse 2s ease-in-out infinite;
}
.chat-panel__close {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.16);
  color: #fff;
  transition: background .2s var(--ease);
}
.chat-panel__close:hover { background: rgba(255,255,255,.28); }
.chat-panel__close svg { width: 16px; height: 16px; }

.chat-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  background: var(--c-bg-soft);
  display: flex; flex-direction: column; gap: 12px;
  scroll-behavior: smooth;
}
.chat-msg { max-width: 80%; padding: 11px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.chat-msg--bot { background: #fff; color: var(--c-ink); border: 1px solid var(--c-line); border-bottom-left-radius: 4px; align-self: flex-start; box-shadow: var(--shadow-sm); }
.chat-msg--user { background: var(--c-primary); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-msg--typing {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 14px 16px;
}
.chat-msg--typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-muted);
  animation: typing 1.4s ease-in-out infinite;
}
.chat-msg--typing span:nth-child(2) { animation-delay: .15s; }
.chat-msg--typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.chat-panel__quick {
  padding: 0 18px 12px;
  display: flex; flex-wrap: wrap; gap: 6px;
  background: var(--c-bg-soft);
}
.chat-panel__quick button {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--c-line-2);
  background: #fff;
  color: var(--c-ink-2);
  font-size: 12.5px;
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chat-panel__quick button:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

.chat-panel__form {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  background: #fff;
  border-top: 1px solid var(--c-line);
}
.chat-panel__input {
  flex: 1;
  border: 1px solid var(--c-line-2);
  border-radius: 14px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  background: var(--c-bg-soft);
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  min-width: 0;
}
.chat-panel__input:focus { border-color: var(--c-primary); background: #fff; }
.chat-panel__send {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  display: grid; place-items: center;
  transition: transform .2s var(--ease);
  flex-shrink: 0;
}
.chat-panel__send:hover { transform: translateY(-2px) scale(1.05); }
.chat-panel__send svg { width: 18px; height: 18px; }

/* ============================================================
   Toast
   ============================================================ */

.toast-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,14,31,.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.toast-backdrop[data-show="true"] { opacity: 1; pointer-events: auto; }
.toast {
  background: #fff;
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: 0 30px 80px -16px rgba(10,14,31,.4);
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  max-width: 360px;
  transform: scale(.92);
  transition: transform .35s var(--ease);
}
.toast-backdrop[data-show="true"] .toast { transform: scale(1); }
.toast__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: #fff;
}
.toast--err .toast__icon { background: var(--grad-accent); }
.toast__icon svg { width: 28px; height: 28px; }
.toast__title { font-family: "Fraunces", serif; font-size: 19px; font-weight: 600; color: var(--c-ink); }
.toast__text { font-size: 14px; color: var(--c-muted); }

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.first-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: firstReveal 1s var(--ease-out) forwards;
}
.first-reveal--d1 { animation-delay: .15s; }
.first-reveal--d2 { animation-delay: .3s; }
.first-reveal--d3 { animation-delay: .45s; }
.first-reveal--d4 { animation-delay: .6s; }
@keyframes firstReveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .first-reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Legal pages
   ============================================================ */

.legal {
  padding-block: 80px 96px;
}
.legal__head {
  margin-bottom: 48px;
}
.legal__title { font-size: clamp(34px, 4vw, 56px); }
.legal__lead {
  margin-top: 14px;
  color: var(--c-muted);
  font-size: 17px;
}
.legal__updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--c-muted);
  background: var(--c-bg-soft);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
}
.legal__updated svg { width: 14px; height: 14px; color: var(--c-primary); }

.legal-content { display: flex; flex-direction: column; gap: 36px; }
.legal-content h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-line);
}
.legal-content h3 {
  font-size: 20px;
  margin: 24px 0 10px;
}
.legal-content p { color: var(--c-ink-2); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 18px; padding-left: 0; }
.legal-content ul li {
  position: relative;
  padding-left: 24px;
  color: var(--c-ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: ""; position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 8px;
  background: var(--c-primary);
  border-radius: 50%;
}
.legal-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 16px 0;
  font-size: 14.5px;
}
.legal-content table th,
.legal-content table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-line);
  text-align: left;
  vertical-align: top;
}
.legal-content table th {
  background: var(--c-bg-soft);
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--c-ink);
}
.legal-content table tr:first-child th:first-child { border-top-left-radius: 12px; }
.legal-content table tr:first-child th:last-child { border-top-right-radius: 12px; }

.legal-content a {
  color: var(--c-primary);
  border-bottom: 1px solid currentColor;
  transition: color .2s var(--ease);
}
.legal-content a:hover { color: var(--c-accent); }

/* Responsible gambling specific */
.responsible__cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .responsible__cards { grid-template-columns: 1fr; } }
.help-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.help-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
}
.help-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.help-card h3 svg { width: 20px; height: 20px; color: var(--c-primary); }
.help-card p { font-size: 14.5px; color: var(--c-muted); margin-bottom: 12px; }
.help-card a { color: var(--c-primary); font-weight: 600; }

/* ============================================================
   Cookie banner
   ============================================================ */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 720px;
  margin-inline: auto;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--c-line);
  box-shadow: 0 30px 70px -16px rgba(10,14,31,.32);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  z-index: 100;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: transform .45s var(--ease-out), opacity .35s var(--ease-out);
}
.cookie-banner[data-show="true"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 12px 24px -8px rgba(29,62,184,.5);
  font-size: 28px;
}
.cookie-banner__body { min-width: 0; }
.cookie-banner__title {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.cookie-banner__text {
  font-size: 13.5px;
  color: var(--c-muted);
  line-height: 1.55;
}
.cookie-banner__text a {
  color: var(--c-primary);
  border-bottom: 1px solid currentColor;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.cookie-banner__btn--accept {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(29,62,184,.45);
}
.cookie-banner__btn--accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -10px rgba(29,62,184,.55);
}
.cookie-banner__btn--reject {
  background: var(--c-bg-soft);
  color: var(--c-ink-2);
  border: 1px solid var(--c-line-2);
}
.cookie-banner__btn--reject:hover {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 16px; right: 16px; bottom: 16px;
    padding: 18px;
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "icon body"
      "actions actions";
    gap: 14px;
  }
  .cookie-banner__icon { grid-area: icon; width: 44px; height: 44px; font-size: 22px; border-radius: 12px; }
  .cookie-banner__body { grid-area: body; }
  .cookie-banner__actions { grid-area: actions; gap: 8px; }
  .cookie-banner__btn { flex: 1; padding: 12px 14px; text-align: center; }
}
@media (max-width: 430px) {
  .cookie-banner__title { font-size: 15.5px; }
  .cookie-banner__text { font-size: 12.5px; }
}

/* ============================================================
   Page hero (legal pages have lighter hero)
   ============================================================ */
.page-hero {
  padding-block: 56px 24px;
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg) 100%);
  position: relative;
  border-bottom: 1px solid var(--c-line);
}
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.crumbs a:hover { color: var(--c-primary); }
.crumbs span { opacity: .5; }

/* ============================================================
   Perf: skip rendering for off-screen sections (browsers
   that support content-visibility skip layout/paint until near
   viewport, big TBT/render win on long pages).
   ============================================================ */
.reviews,
.info,
.cta-banner,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}
