:root {
  color-scheme: dark;
  --navy-950: #050b16;
  --navy-900: #071528;
  --navy-850: #0a1b33;
  --navy-800: #0d2445;
  --navy-700: #123464;
  --blue-500: #4ea5ff;
  --blue-300: #8bc7ff;
  --orange-500: #ff8a1f;
  --orange-400: #ffb547;
  --orange-200: #ffe2a3;
  --green-400: #42d392;
  --red-400: #ff7777;
  --text: #f8fbff;
  --muted: #b9c7d9;
  --muted-strong: #dce7f5;
  --line: rgba(157, 187, 223, .18);
  --panel: rgba(13, 36, 69, .72);
  --panel-strong: rgba(13, 36, 69, .94);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, .24);
  --radius: 8px;
  --radius-sm: 6px;
  --container: min(1180px, calc(100vw - 32px));
  --font-main: "Inter", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 0%, rgba(78, 165, 255, .12), transparent 30rem),
    radial-gradient(circle at 85% 10%, rgba(255, 138, 31, .13), transparent 26rem),
    linear-gradient(180deg, var(--navy-950) 0%, #081325 42%, #06101d 100%);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--orange-200);
}

p,
ul,
ol,
dl {
  color: var(--muted);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: .45rem;
}

strong,
b {
  color: var(--muted-strong);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(255, 181, 71, .95);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  background: var(--orange-400);
  color: #111827;
  font-weight: 800;
  padding: .75rem 1rem;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.top-disclaimer {
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 181, 71, .18);
  background: linear-gradient(90deg, #071528, #0d2445 52%, #111827);
  color: #fff7e6;
  font-size: .86rem;
}

.top-disclaimer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 42px;
  text-align: center;
}

.top-disclaimer img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.top-disclaimer__message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.age-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid rgba(255, 181, 71, .36);
  border-radius: 999px;
  padding: .18rem .58rem;
  background: rgba(255, 181, 71, .1);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(157, 187, 223, .12);
  background: rgba(5, 11, 22, .84);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.site-header.is-sticky {
  border-color: rgba(255, 181, 71, .16);
  background: rgba(5, 11, 22, .94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .26);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: 230px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.site-nav a {
  border-radius: var(--radius-sm);
  color: var(--muted-strong);
  font-size: .92rem;
  font-weight: 750;
  padding: .65rem .72rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 181, 71, .12);
  color: #fff7e6;
}

.site-nav .nav-cta {
  margin-left: .35rem;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  color: #111827;
  box-shadow: 0 12px 30px rgba(255, 138, 31, .2);
}

.site-nav .nav-cta:hover {
  color: #111827;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 36, 69, .85);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle__bars {
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__bars::before {
  top: -7px;
}

.menu-toggle__bars::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  transform: translateY(7px) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  opacity: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 181, 71, .11), transparent 28%),
    linear-gradient(300deg, rgba(78, 165, 255, .16), transparent 35%);
  mask-image: linear-gradient(#000, transparent 85%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.4rem);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 840px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.65rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 181, 71, .28);
  border-radius: 999px;
  background: rgba(255, 181, 71, .08);
  color: var(--orange-200);
  font-size: .82rem;
  font-weight: 850;
  padding: .42rem .72rem;
  text-transform: uppercase;
}

.hero-lead,
.page-lead {
  max-width: 760px;
  margin-top: 1.2rem;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-top: 1.6rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.55rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 36, 69, .58);
  color: var(--muted-strong);
  font-size: .9rem;
  font-weight: 750;
  padding: .45rem .75rem;
}

.trust-badge::before {
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 4px rgba(66, 211, 146, .11);
  content: "";
}

.updated-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .92rem;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(157, 187, 223, .2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(13, 36, 69, .9), rgba(7, 21, 40, .92)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .03) 1px, transparent 1px, transparent 12px);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.hero-panel::after {
  position: absolute;
  right: 24px;
  bottom: -14px;
  width: 58%;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 138, 31, .28);
  filter: blur(22px);
  content: "";
}

.mini-rank {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .75rem;
}

.mini-rank__item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: .75rem;
  border: 1px solid rgba(157, 187, 223, .16);
  border-radius: var(--radius-sm);
  background: rgba(5, 11, 22, .48);
  padding: .8rem;
}

.mini-rank__logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #123464, #0a1b33);
  color: var(--orange-200);
  font-weight: 900;
}

.mini-rank__name {
  color: var(--text);
  font-weight: 850;
}

.mini-rank__offer {
  color: var(--muted);
  font-size: .88rem;
}

.mini-rank__score {
  color: var(--orange-400);
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.section-alt {
  border-block: 1px solid rgba(157, 187, 223, .1);
  background: rgba(8, 19, 37, .56);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: .45rem;
  color: var(--orange-400);
  font-size: .84rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.22rem, 2.5vw, 1.55rem);
}

h4 {
  font-size: 1.05rem;
}

.section-head p {
  margin-top: .85rem;
  font-size: 1.04rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 850;
  gap: .5rem;
  padding: .74rem 1rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  color: #111827;
  box-shadow: 0 16px 34px rgba(255, 138, 31, .24);
}

.btn-primary:hover {
  color: #111827;
  box-shadow: 0 20px 42px rgba(255, 138, 31, .34);
}

.btn-secondary {
  border-color: rgba(157, 187, 223, .28);
  background: rgba(13, 36, 69, .72);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(255, 181, 71, .4);
  background: rgba(18, 52, 100, .8);
  color: #fff7e6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--orange-200);
  font-weight: 850;
}

.text-link::after {
  margin-left: .35rem;
  content: "→";
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.info-card,
.bookmaker-card,
.legal-card,
.faq-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 36, 69, .78), rgba(7, 21, 40, .86));
  box-shadow: var(--shadow-soft);
}

.info-card,
.legal-card,
.contact-card {
  padding: 1.25rem;
}

.info-card h3,
.legal-card h3,
.contact-card h3 {
  margin-bottom: .55rem;
}

.icon-chip {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: .9rem;
  border: 1px solid rgba(255, 181, 71, .2);
  border-radius: var(--radius-sm);
  background: rgba(255, 181, 71, .1);
  color: var(--orange-200);
  font-size: 1.2rem;
  font-weight: 900;
}

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

.bookmaker-card {
  display: grid;
  min-height: 100%;
  padding: 1rem;
}

.bookmaker-card__top {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: .85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.bookmaker-badge {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 181, 71, .28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #123464, #071528);
  color: var(--orange-200);
  font-weight: 950;
}

.bookmaker-name {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 900;
}

.bookmaker-offer {
  color: var(--orange-200);
  font-size: .92rem;
  font-weight: 800;
}

.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .85rem;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: .12rem;
  color: var(--orange-400);
  font-size: 1rem;
}

.score-pill {
  border: 1px solid rgba(66, 211, 146, .28);
  border-radius: 999px;
  background: rgba(66, 211, 146, .1);
  color: #c8ffe5;
  font-size: .82rem;
  font-weight: 900;
  padding: .2rem .52rem;
}

.bookmaker-card ul {
  margin-bottom: 1rem;
}

.bonus-detail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: .2rem 0 1rem;
  padding: .85rem 0;
}

.bonus-detail span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-detail strong {
  display: block;
  margin-top: .15rem;
  color: var(--text);
}

.quick-review {
  margin-bottom: 1rem;
  font-size: .95rem;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
  align-self: end;
}

.secondary-action {
  display: inline-flex;
  justify-content: center;
  color: var(--muted-strong);
  font-weight: 800;
  padding: .4rem;
}

.secondary-action:hover {
  color: var(--orange-200);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 21, 40, .78);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

caption {
  padding: 1rem;
  color: var(--muted-strong);
  text-align: left;
  font-weight: 850;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
}

th {
  background: rgba(18, 52, 100, .75);
  color: var(--text);
  font-size: .86rem;
  text-transform: uppercase;
}

td {
  color: var(--muted-strong);
}

tbody tr:hover {
  background: rgba(255, 181, 71, .05);
}

.check {
  color: var(--green-400);
  font-weight: 900;
}

.warning-box,
.notice-box,
.responsible-box {
  border-radius: var(--radius);
  padding: 1.2rem;
}

.warning-box {
  border: 1px solid rgba(255, 119, 119, .24);
  background: rgba(255, 119, 119, .08);
}

.notice-box {
  border: 1px solid rgba(78, 165, 255, .24);
  background: rgba(78, 165, 255, .08);
}

.responsible-box {
  border: 1px solid rgba(255, 181, 71, .28);
  background: linear-gradient(135deg, rgba(255, 181, 71, .12), rgba(13, 36, 69, .6));
}

.page-hero {
  padding: 58px 0 42px;
  border-bottom: 1px solid rgba(157, 187, 223, .1);
  background:
    linear-gradient(135deg, rgba(78, 165, 255, .08), rgba(255, 138, 31, .08)),
    rgba(5, 11, 22, .22);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumbs a {
  color: var(--orange-200);
  font-weight: 800;
}

.breadcrumbs span:not(:last-child)::after {
  margin-left: .4rem;
  color: var(--muted);
  content: "/";
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

.article {
  display: grid;
  gap: 1.35rem;
}

.article > section,
.article-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 21, 40, .58);
  padding: 1.35rem;
}

.article h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: .75rem;
}

.article h3 {
  margin: 1rem 0 .5rem;
}

.sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 36, 69, .78);
  padding: 1rem;
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: .65rem;
  font-size: 1.05rem;
}

.sidebar-card a {
  display: block;
  color: var(--muted-strong);
  font-weight: 750;
  padding: .35rem 0;
}

.sidebar-card a:hover {
  color: var(--orange-200);
}

.definition-list {
  display: grid;
  gap: .9rem;
}

.definition-list div {
  border-left: 3px solid var(--orange-400);
  padding-left: .8rem;
}

.definition-list dt {
  color: var(--text);
  font-weight: 900;
}

.definition-list dd {
  margin: .2rem 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: .85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
  padding: 1rem 1.1rem;
  text-align: left;
}

.faq-question::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 181, 71, .12);
  color: var(--orange-200);
  content: "+";
  font-weight: 900;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  border-top: 1px solid var(--line);
  padding: 1rem 1.1rem;
}

.faq-answer[hidden] {
  display: none;
}

.contact-form {
  display: grid;
  gap: .95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem;
}

.field {
  display: grid;
  gap: .35rem;
}

.field label {
  color: var(--muted-strong);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(157, 187, 223, .22);
  border-radius: var(--radius-sm);
  background: rgba(5, 11, 22, .78);
  color: var(--text);
  padding: .78rem .85rem;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field small {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(157, 187, 223, .14);
  background: #050b16;
  padding: 52px 0 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, .7fr));
  gap: 2rem;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 1rem;
}

.footer-title {
  margin-bottom: .7rem;
  color: var(--text);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: .35rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--orange-200);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: .92rem;
}

.sticky-offer-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: min(430px, calc(100vw - 32px));
  border: 1px solid rgba(255, 181, 71, .28);
  border-radius: var(--radius);
  background: rgba(5, 11, 22, .92);
  box-shadow: var(--shadow);
  padding: .75rem;
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.sticky-offer-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-offer-bar span {
  color: var(--muted-strong);
  font-size: .92rem;
  font-weight: 800;
}

.sticky-offer-bar .btn {
  min-height: 40px;
  padding: .56rem .75rem;
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1500;
  width: min(440px, calc(100vw - 32px));
  border: 1px solid rgba(157, 187, 223, .22);
  border-radius: var(--radius);
  background: rgba(5, 11, 22, .96);
  box-shadow: var(--shadow);
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.cookie-banner h2 {
  margin-bottom: .35rem;
  font-size: 1.08rem;
}

.cookie-banner p {
  font-size: .92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .8rem;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 92px;
  z-index: 1190;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 181, 71, .3);
  border-radius: var(--radius);
  background: rgba(13, 36, 69, .92);
  color: var(--orange-200);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

  .site-nav a {
    padding-inline: .55rem;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 121px 16px auto 16px;
    display: grid;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 11, 22, .98);
    box-shadow: var(--shadow);
    padding: .8rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .site-nav .nav-cta {
    margin: 0;
    padding: .9rem;
  }

  .hero-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .top-disclaimer__inner {
    justify-content: flex-start;
    min-height: 48px;
    text-align: left;
  }

  .top-disclaimer__message {
    justify-content: flex-start;
  }

  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    inset: 119px 12px auto 12px;
  }

  .brand-link img {
    width: 196px;
  }

  .hero {
    padding: 48px 0 36px;
  }

  .section {
    padding: 52px 0;
  }

  .comparison-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mini-rank__item {
    grid-template-columns: 40px 1fr;
  }

  .mini-rank__score {
    grid-column: 2;
  }

  .sticky-offer-bar {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
    justify-content: space-between;
  }

  .sticky-offer-bar span {
    font-size: .84rem;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 86px;
    width: auto;
  }

  .back-to-top {
    bottom: 152px;
  }

  .site-footer {
    padding-bottom: 130px;
  }
}

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

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.bookmaker-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bookmaker-one .bookmaker-badge {
    background: #f4b400;
}

.bookmaker-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bookmaker-logo-inline {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bookmaker-logo-inline img {
  width: 90px;
  height: 45px;
  object-fit: contain;
}

.bookmaker-badge {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

#netbet .bookmaker-badge {
  background: #f4b400;
}

#vbet .bookmaker-badge {
  background: #6c63ff;
}

#pmu .bookmaker-badge {
  background: #34a853;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;

  background: url("../images/hero-bg.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 22, 0.75);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
}