:root {
  --ink: #0b1424;
  --ink-soft: #2a3a50;
  --muted: #627188;
  --paper: #f2f6fa;
  --surface: #ffffff;
  --surface-soft: #f7fafd;
  --navy: #071525;
  --navy-soft: #10263f;
  --line: #d8e1eb;
  --line-strong: #b8c6d6;
  --primary: #155eef;
  --primary-dark: #0b45c6;
  --accent: #147a9e;
  --accent-bright: #41c7e8;
  --accent-soft: #e2f6fb;
  --positive: #14805e;
  --focus: #0094ff;
  --font-sans: "Arial Narrow", "Roboto Condensed", "Aptos Narrow", Arial, sans-serif;
  --font-display: "Oswald", "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --container: 1280px;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 8px 24px rgba(7, 21, 37, 0.06);
  --shadow-md: 0 18px 48px rgba(7, 21, 37, 0.11);
  --shadow-lg: 0 28px 72px rgba(2, 12, 24, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -90px;
  z-index: 100;
  padding: 11px 16px;
  color: #ffffff;
  background: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(188, 199, 214, 0.72);
  box-shadow: 0 8px 28px rgba(12, 20, 38, 0.04);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--container), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.nav-links a,
.primary-link,
.secondary-link,
.casino-card__button,
.preview-item__action,
.hero-preview__foot a,
.footer-top,
.footer-links a,
.cookie-banner button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease,
    box-shadow 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy);
  border: 1px solid #263653;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 24px rgba(10, 19, 36, 0.18);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 0 14px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: var(--surface-soft);
  border-color: var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 58px;
  overflow: hidden;
  padding: 78px max(24px, calc((100vw - var(--container)) / 2)) 104px;
  color: #ffffff;
  background:
    linear-gradient(126deg, rgba(21, 94, 239, 0.27), transparent 46%),
    linear-gradient(180deg, rgba(65, 199, 232, 0.07), transparent 48%),
    var(--navy);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 0;
  border-radius: 0;
}

.hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero::after {
  display: none;
}

.hero__inner,
.hero-preview {
  position: relative;
  z-index: 1;
}

.hero__inner {
  width: 100%;
  min-width: 0;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent-bright);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 4.2vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.h1-year {
  display: block;
  color: #dbeafe;
  white-space: nowrap;
}

.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.72;
}

.hero__stats {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__stats div {
  min-height: 92px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.055);
}

.hero__stats strong,
.hero__stats span {
  display: block;
}

.hero__stats strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
}

.hero__stats span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
}

.primary-link {
  color: #ffffff;
  background: var(--primary);
  border: 1px solid #4d8bff;
  box-shadow: 0 12px 30px rgba(21, 94, 239, 0.24);
}

.secondary-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.primary-link:hover,
.primary-link:focus-visible {
  background: var(--primary-dark);
  border-color: #67d8f1;
  transform: translateY(-2px);
}

.secondary-link:hover,
.secondary-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.promo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.promo-logo {
  width: 142px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.promo-logo:hover,
.promo-logo:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(65, 199, 232, 0.72);
  transform: translateY(-2px);
}

.promo-logo .casino-logo {
  width: 118px;
  height: 32px;
  object-fit: contain;
}

.hero-preview {
  width: 100%;
  min-width: 0;
  padding: 20px;
  background: rgba(247, 250, 253, 0.97);
  border: 1px solid rgba(143, 166, 189, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-preview__head,
.hero-preview__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-preview__head {
  padding: 2px 2px 18px;
  color: var(--ink);
  border-bottom: 2px solid var(--primary);
}

.hero-preview__head > div > span,
.hero-preview__head > div > strong {
  display: block;
}

.hero-preview__head > div > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-preview__head > div > strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.15;
}

.hero-preview__count {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #0f5671;
  background: var(--accent-soft);
  border: 1px solid #9bdff0;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 700;
}

.hero-preview__list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.preview-item {
  min-width: 0;
  min-height: 106px;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 18px rgba(7, 21, 37, 0.06);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.preview-item:hover {
  border-color: #8db1dc;
  box-shadow: 0 10px 26px rgba(7, 21, 37, 0.11);
  transform: translateY(-2px);
}

.preview-item__visual {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 31px 18px 18px;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(21, 94, 239, 0.28), transparent 62%),
    var(--navy-soft);
  border-right: 1px solid #26445f;
}

.preview-item__visual::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xs);
}

.preview-item__year {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 9px;
  color: #dbeafe;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.preview-item__visual .casino-logo {
  width: min(118px, 90%);
  height: 48px;
}

.preview-item__visual .logo-fallback {
  min-height: 46px;
  padding: 0 8px;
  font-size: 18px;
}

.preview-item__body {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.preview-item__number {
  color: #8da0b5;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.preview-item__copy {
  min-width: 0;
}

.preview-item__copy strong,
.preview-item__copy span {
  display: block;
}

.preview-item__copy strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.preview-item__copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.preview-item__action {
  min-width: 78px;
  min-height: 44px;
  padding: 0 13px;
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 700;
}

.preview-item__action:hover,
.preview-item__action:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hero-preview__foot {
  margin-top: 14px;
  padding: 14px 2px 1px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.4;
}

.hero-preview__foot a {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 14px;
  color: var(--primary-dark);
  background: #edf4ff;
  border: 1px solid #bfd3f3;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 700;
}

.hero-preview__foot a:hover,
.hero-preview__foot a:focus-visible {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.trust-band {
  position: relative;
  z-index: 3;
  width: min(var(--container), calc(100% - 40px));
  margin: -38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  counter-reset: trust-point;
}

.trust-band > div {
  position: relative;
  min-width: 0;
  min-height: 142px;
  padding: 25px 24px 24px 82px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-band > div::before {
  counter-increment: trust-point;
  content: "0" counter(trust-point);
  position: absolute;
  left: 22px;
  top: 25px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--accent-soft);
  border: 1px solid #9bdff0;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 800;
}

.trust-band > div::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(36, 87, 218, 0.08);
  border-radius: 50%;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.trust-band span {
  max-width: 290px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.page-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 104px;
}

.year-section,
.guide-panel,
.faq-section {
  scroll-margin-top: 112px;
}

.year-section + .year-section,
.guide-panel,
.faq-section {
  margin-top: 96px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(38px, 3.5vw, 50px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.casino-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(12, 20, 38, 0.05);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.casino-card:hover {
  border-color: #bac5d5;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.casino-card__visual {
  position: relative;
  min-height: 154px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 26px;
  text-decoration: none;
  background:
    radial-gradient(circle at 76% 12%, rgba(55, 111, 255, 0.3), transparent 42%),
    #111d32;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.casino-card__visual::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.casino-card:nth-child(4n + 2) .casino-card__visual {
  background:
    radial-gradient(circle at 78% 10%, rgba(42, 171, 125, 0.24), transparent 42%),
    #10231e;
}

.casino-card:nth-child(4n + 3) .casino-card__visual {
  background:
    radial-gradient(circle at 78% 10%, rgba(14, 165, 233, 0.24), transparent 42%),
    #0e2233;
}

.casino-card:nth-child(4n + 4) .casino-card__visual {
  background:
    radial-gradient(circle at 78% 10%, rgba(125, 145, 204, 0.24), transparent 42%),
    #1a2030;
}

.casino-card__year {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.casino-logo {
  position: relative;
  z-index: 1;
  width: min(210px, 82%);
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 9px 16px rgba(0, 0, 0, 0.28));
  transform: scale(var(--logo-scale, 1));
  transform-origin: center;
}

.casino-logo--fugu {
  --logo-scale: 1.42;
}

.casino-logo--beef {
  --logo-scale: 1.38;
}

.casino-logo--retro {
  --logo-scale: 1.28;
}

.casino-logo--r7,
.casino-logo--cactus,
.casino-logo--hmoney,
.casino-logo--irwin,
.casino-logo--lexcasino,
.casino-logo--1go,
.casino-logo--legzo,
.casino-logo--starda,
.casino-logo--drip {
  --logo-scale: 0.88;
}

.logo-fallback {
  position: relative;
  z-index: 1;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.casino-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 19px;
}

.casino-card__body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.casino-card__note {
  min-height: 76px;
  margin: 14px 0 18px;
  padding: 13px 14px;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-xs);
  font-size: 13px;
  line-height: 1.45;
}

.casino-card__note strong {
  color: var(--ink-soft);
  font-weight: 700;
}

.casino-card__button {
  width: 100%;
  min-height: 47px;
  gap: 8px;
  margin-top: auto;
  color: #ffffff;
  background: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(36, 87, 218, 0.16);
}

.casino-card__button::after {
  content: "↗";
  font-size: 15px;
  line-height: 1;
}

.casino-card__button:hover,
.casino-card__button:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.guide-panel {
  padding: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.guide-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.guide-aside {
  position: sticky;
  top: 102px;
  overflow: hidden;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(65, 199, 232, 0.14), transparent 42%),
    var(--navy);
  border: 1px solid #24334e;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 42px rgba(10, 19, 36, 0.18);
}

.guide-aside h3 {
  margin: 0 0 17px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.2;
}

.guide-aside ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
  font-size: 13px;
}

.guide-aside li {
  position: relative;
  padding: 0 0 11px 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-aside li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.guide-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 4px rgba(65, 199, 232, 0.12);
}

.seo-copy {
  max-width: 800px;
}

.seo-copy h2,
.seo-copy h3 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: 0;
}

.seo-copy h2:first-child,
.seo-copy h3:first-child {
  margin-top: 0;
}

.seo-copy h2 {
  font-size: 31px;
}

.seo-copy h3 {
  font-size: 25px;
}

.seo-copy p,
.seo-copy li {
  color: var(--ink-soft);
}

.seo-copy p {
  margin: 0 0 18px;
}

.seo-copy ul,
.seo-copy ol {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 22px;
}

.faq-section {
  padding-top: 54px;
  border-top: 1px solid var(--line-strong);
}

.faq-list {
  max-width: 960px;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px rgba(12, 20, 38, 0.035);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-item[open] {
  border-color: #bdc8d7;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 17px 62px 17px 21px;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #edf2ff;
  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}

.faq-item p {
  margin: 0;
  padding: 0 64px 22px 21px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px max(24px, calc((100vw - var(--container)) / 2)) 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 0, rgba(36, 87, 218, 0.2), transparent 30%),
    var(--navy);
  border-top: 3px solid var(--primary);
}

.site-footer p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.55fr) minmax(270px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.footer-brand {
  max-width: 490px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand > div > strong {
  font-family: var(--font-display);
  font-size: 21px;
}

.footer-brand .brand-mark {
  color: var(--navy);
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.footer-links {
  display: grid;
  gap: 3px;
}

.footer-links a {
  justify-content: flex-start;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  border-color: rgba(65, 199, 232, 0.62);
}

.footer-note {
  padding: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
}

.footer-note strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-top {
  min-width: 132px;
  flex: 0 0 auto;
  padding: 0 20px;
  color: #ffffff;
  background: var(--primary);
  border: 1px solid #4d8bff;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.footer-top:hover,
.footer-top:focus-visible {
  background: var(--primary-dark);
  border-color: #67d8f1;
  transform: translateY(-1px);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(510px, calc(100% - 36px));
  display: none;
  align-items: center;
  gap: 14px;
  padding: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner button {
  min-width: 104px;
  flex: 0 0 auto;
  padding: 0 16px;
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.cookie-banner button:hover,
.cookie-banner button:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.casino-card__visual:focus-visible,
.preview-item__visual:focus-visible {
  outline-offset: -3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
    gap: 42px;
    padding-top: 68px;
  }

  .hero__inner {
    max-width: 900px;
  }

  .hero h1 {
    max-width: 820px;
  }

  .hero__lead,
  .hero__stats {
    max-width: 760px;
  }

  .hero-preview {
    max-width: 960px;
  }

  .casino-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .casino-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-aside {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.5fr;
  }

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 116px;
  }

  .nav-wrap {
    width: min(100% - 28px, var(--container));
    min-height: auto;
    padding: 9px 0 8px;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .brand {
    width: fit-content;
    min-height: 44px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .nav-links a {
    min-height: 44px;
    min-width: 44px;
    flex: 0 0 auto;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    gap: 32px;
    padding: 48px 16px 70px;
  }

  .hero h1 {
    font-size: clamp(42px, 10.5vw, 56px);
    line-height: 1;
  }

  .hero__lead {
    margin-top: 21px;
    font-size: 16px;
    line-height: 1.68;
  }

  .hero__stats {
    margin-top: 25px;
  }

  .hero__stats div {
    min-height: 82px;
    padding: 14px;
  }

  .hero__stats strong {
    font-size: 19px;
  }

  .hero__stats span {
    font-size: 12px;
  }

  .promo-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding: 2px 0;
  }

  .promo-logo {
    width: 100%;
    min-width: 0;
    padding: 8px;
  }

  .promo-logo .casino-logo {
    width: min(100%, 102px);
  }

  .hero-preview {
    display: block;
    max-width: 100%;
    padding: 16px;
  }

  .preview-item {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .preview-item__body {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px;
  }

  .hero-preview__foot {
    align-items: flex-start;
  }

  .trust-band {
    width: min(100% - 28px, var(--container));
    margin-top: -28px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-band > div {
    min-height: 112px;
    padding: 21px 20px 20px 76px;
  }

  .trust-band > div::before {
    left: 19px;
    top: 21px;
    width: 39px;
    height: 39px;
  }

  .trust-band span {
    max-width: none;
  }

  .page-shell {
    width: min(100% - 28px, var(--container));
    padding: 64px 0 84px;
  }

  .year-section + .year-section,
  .guide-panel,
  .faq-section {
    margin-top: 76px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .guide-panel {
    padding: 30px;
  }

  .faq-section {
    padding-top: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-note {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-top {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .casino-grid {
    grid-template-columns: 1fr;
  }

  .casino-card__visual {
    min-height: 145px;
  }
}

@media (max-width: 520px) {
  .nav-links a {
    padding: 0 8px;
    font-size: 12px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__stats div {
    min-height: 88px;
    padding: 13px 10px;
  }

  .hero__stats strong {
    font-size: 17px;
  }

  .hero__stats span {
    font-size: 12px;
    line-height: 1.3;
  }

  .hero-preview {
    padding: 12px;
  }

  .hero-preview__head {
    align-items: flex-start;
    padding-bottom: 14px;
  }

  .hero-preview__head > div > strong {
    font-size: 23px;
  }

  .hero-preview__count {
    padding: 6px 8px;
  }

  .preview-item {
    min-height: 94px;
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .preview-item__visual {
    padding: 28px 10px 14px;
  }

  .preview-item__visual .casino-logo {
    width: min(76px, 92%);
    height: 40px;
  }

  .preview-item__body {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 11px;
  }

  .preview-item__number {
    display: none;
  }

  .preview-item__copy strong {
    font-size: 16px;
  }

  .preview-item__copy span {
    font-size: 12px;
  }

  .preview-item__action {
    min-width: 66px;
    padding: 0 9px;
    font-size: 12px;
  }

  .hero-preview__foot {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-preview__foot a {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 33px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .guide-panel {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  .guide-aside {
    padding: 21px;
  }

  .seo-copy h2 {
    font-size: 27px;
  }

  .seo-copy h3 {
    font-size: 23px;
  }

  .faq-item summary {
    padding-left: 17px;
  }

  .faq-item p {
    padding-left: 17px;
    padding-right: 20px;
  }

  .site-footer {
    padding: 46px 18px 24px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    gap: 9px;
    padding: 10px;
    border-radius: var(--radius-sm);
  }

  .cookie-banner p {
    font-size: 13px;
    line-height: 1.35;
  }

  .cookie-banner button {
    min-width: 90px;
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .nav-links a {
    padding: 0 6px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero__stats span {
    font-size: 12px;
  }

  .preview-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .preview-item__copy span {
    display: none;
  }

  .trust-band > div {
    padding-right: 16px;
  }
}
