:root {
  color-scheme: dark;
  --navy-950: #ac5216;
  --navy-900: #ac5216;
  --navy-850: #ac5216;
  --graphite-800: #18202b;
  --graphite-700: #242d38;
  --graphite-500: #667085;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --gold-400: #d4af5f;
  --gold-300: #f5d982;
  --white: #f8fafc;
  --muted: #b8c2d2;
  --line: rgba(248, 250, 252, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --header-top: 40px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 34rem, #08101c);
  color: var(--white);
  line-height: 1.6;
}

body.no-scroll { overflow: hidden; }

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

[hidden] { display: none !important; }

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

p { color: var(--muted); margin: 0; }

ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }

li + li { margin-top: 0.35rem; }

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

button { cursor: pointer; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--gold-300);
  color: #111827;
  transform: translateY(-180%);
  border-radius: 6px;
  font-weight: 800;
}

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

.responsible-bar {
  background: #03070d;
  border-bottom: 1px solid var(--line);
  color: #dce6f5;
  font-size: 0.85rem;
}

.bar-inner {
  min-height: var(--header-top);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 26px;
  border: 1px solid rgba(245, 217, 130, 0.8);
  color: var(--gold-300);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(7, 17, 31, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

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

.brand-link {
  width: min(238px, 58vw);
  flex: 0 0 auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.desktop-nav a,
.mobile-nav a {
  color: #d7deea;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: rgba(16, 185, 129, 0.12);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(245, 217, 130, 0.55);
  background: rgba(245, 217, 130, 0.1);
}

.contact-link {
  display: none;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(245, 217, 130, 0.44);
  border-radius: 8px;
  color: var(--gold-300);
  font-weight: 800;
}

.mobile-nav {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding: 0 0 1rem;
  display: grid;
  gap: 0.25rem;
}

.site-main {
  padding: 2rem 0 4rem;
}

.hero {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 2.2rem;
  align-items: center;
}

.inner-hero {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: var(--gold-300);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

h1, h2, h3, h4 {
  font-family: Manrope, Inter, system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
  color: var(--white);
}

h1 {
  font-size: clamp(2.05rem, 4.7vw, 3.9rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

.hero-copy {
  display: grid;
  gap: 1.25rem;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  max-width: 780px;
  color: #d7deea;
}

.hero-actions,
.card-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--emerald-500), #0a8f68);
  color: #02120d;
}

.button.secondary {
  background: rgba(245, 217, 130, 0.12);
  color: var(--gold-300);
  border-color: rgba(245, 217, 130, 0.35);
}

.button.ghost {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button.text {
  color: var(--gold-300);
  padding-inline: 0.25rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-strip span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #d7deea;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-weight: 800;
  font-size: 0.86rem;
}

.updated-line {
  color: var(--gold-300);
  font-weight: 800;
}

.hero-visual {
  min-height: 310px;
  display: flex;
  align-items: stretch;
}

.hero-visual.compact {
  min-height: 220px;
}

.market-card,
.signal-stack {
  width: 100%;
  border: 1px solid rgba(245, 217, 130, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0b1728;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.market-card {
  display: grid;
  gap: 1.4rem;
}

.market-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.market-card-head strong {
  font-size: 2.6rem;
  color: var(--gold-300);
}

.chart-bars {
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 34px);
}

.chart-bars span {
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--gold-300), var(--emerald-500));
}

.market-lines {
  display: grid;
  gap: 0.65rem;
}

.market-lines p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
}

.market-lines span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--emerald-400);
  flex: 0 0 auto;
}

.signal-stack {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.signal-stack span {
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(52,211,153,.9), rgba(245,217,130,.9));
}

.signal-stack span:nth-child(2) { width: 76%; opacity: .75; }
.signal-stack span:nth-child(3) { width: 88%; opacity: .55; }
.signal-stack span:nth-child(4) { width: 58%; opacity: .9; }

.featured-section,
.content-section,
.table-section,
.operator-reviews,
.odds-block,
.faq-section,
.split-band,
.contact-grid,
.notice-panel {
  margin-top: 3.5rem;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  max-width: 780px;
}

.section-head.wide {
  max-width: 980px;
}

.bookmaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1rem;
}

.bookmaker-card,
.review-card,
.stat-card,
.contact-panel,
.contact-aside,
.notice-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.bookmaker-card {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.bookmaker-top,
.review-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.operator-logo,
.operator-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(245, 217, 130, 0.18), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(245, 217, 130, 0.32);
  color: var(--gold-300);
  font-weight: 900;
}

.operator-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.operator-mini {
  width: 38px;
  height: 32px;
  margin-right: 0.5rem;
}

.score-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.score-row span {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
  font-size: 0.82rem;
}

.score-row strong,
.rating-line strong {
  color: var(--white);
  font-size: 1.25rem;
}

.rating-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold-300);
}

.quick-analysis {
  font-size: 0.94rem;
}

.prose {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.prose p {
  font-size: 1.02rem;
}

.insight-box {
  border-left: 3px solid var(--gold-300);
  background: rgba(245, 217, 130, 0.08);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  color: #e6edf8;
}

.split-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  border-block: 1px solid var(--line);
  padding-block: 2.2rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.stat-card span,
.stat-card small {
  color: var(--muted);
}

.stat-card strong {
  font-size: 1.6rem;
  color: var(--gold-300);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: rgba(255, 255, 255, 0.035);
}

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

.comparison-table th {
  color: var(--gold-300);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.24);
}

.comparison-table td {
  color: #d7deea;
}

.review-card {
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: grid;
  gap: 1rem;
}

.review-header {
  justify-content: space-between;
  align-items: flex-start;
}

.review-header > strong {
  color: var(--gold-300);
  font-size: 1.35rem;
  white-space: nowrap;
}

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

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

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

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  background: var(--gold-300);
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 1rem 1rem;
}

.notice-panel {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-panel,
.contact-aside {
  padding: 1.25rem;
}

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

.contact-form label {
  color: var(--white);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.search-dialog input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  padding: 0.85rem 0.9rem;
}

.contact-form textarea { resize: vertical; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #03070d;
  padding: 3rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-warning {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-footer h2 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: var(--gold-300);
}

.site-footer a {
  display: block;
  color: var(--muted);
  padding: 0.22rem 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(3, 7, 13, 0.82);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: start center;
  padding: 5rem 1rem 1rem;
}

.search-dialog {
  width: min(720px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy-850);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  position: relative;
  display: grid;
  gap: 1rem;
}

.search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.search-results {
  display: grid;
  gap: 0.75rem;
}

.search-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

.search-result strong {
  display: block;
  color: var(--gold-300);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  border: 1px solid rgba(245, 217, 130, 0.3);
  border-radius: 8px;
  background: #08111f;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 217, 130, 0.45);
  border-radius: 8px;
  background: rgba(5, 10, 18, 0.92);
  color: var(--gold-300);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

@media (min-width: 720px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

  .split-band,
  .contact-grid,
  .notice-panel {
    grid-template-columns: 1fr 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
    left: auto;
    width: min(760px, calc(100% - 2rem));
  }
}

@media (min-width: 1040px) {
  .desktop-nav { display: flex; }
  .mobile-toggle { display: none; }
  .contact-link { display: inline-flex; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1180px); }
  .site-main { padding-top: 1rem; }
  .hero { padding-top: 2.4rem; }
  .bar-inner { align-items: flex-start; padding-block: 0.55rem; }
  .score-row { grid-template-columns: 1fr; }
  .review-header { display: grid; }
  .button { width: 100%; }
  .card-actions .button.text { width: auto; }
}

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

.operator-logo {
    width: 90px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operator-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bookmaker-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 2.2rem;
  align-items: center;

  background:
    linear-gradient(120deg, rgba(5, 10, 18, 0.88), rgba(7, 17, 31, 0.78)),
    url("../images/hero-bg.jpg") center center / cover no-repeat;

  border-radius: 8px;
}