:root {
  --bg: #06110a;
  --bg-soft: #0d2015;
  --bg-card: #10291b;
  --bg-card-2: #143522;
  --bg-dark: #020703;
  --text: #f4fff8;
  --muted: #b8c9bf;
  --muted-2: #91a49a;
  --primary: #20c46b;
  --primary-2: #75f0a9;
  --accent: #ffd166;
  --accent-2: #ff9f1c;
  --danger: #ff595e;
  --border: rgba(255, 255, 255, .12);
  --border-strong: rgba(255, 255, 255, .22);
  --shadow: 0 24px 80px rgba(0, 0, 0, .36);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, .25);
  --max: 1180px;
  --radius: 22px;
}

[data-market="ca"] {
  --primary: #42beef;
  --primary-2: #8adfff;
  --accent: #ffd166;
}

[data-market="de"] {
  --primary: #ffcc00;
  --primary-2: #ffe680;
  --accent: #ef4444;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 8%, rgba(32, 196, 107, .18), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(255, 209, 102, .12), transparent 30%),
    linear-gradient(180deg, var(--bg), #030904 75%);
}

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

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

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

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

.narrow {
  max-width: 920px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 999;
  background: var(--accent);
  color: #1b1200;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(2, 7, 3, .94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-grid {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #041008;
  font-weight: 950;
  letter-spacing: -.8px;
  box-shadow: 0 14px 28px rgba(32, 196, 107, .2);
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 17px;
  letter-spacing: -.3px;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--text);
  margin: 4px auto;
}

.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .mobile-menu:not([hidden]) {
    display: grid;
    gap: 8px;
    padding: 14px 16px 18px;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
  }

  .mobile-menu a {
    padding: 10px 0;
    color: var(--muted);
    font-weight: 700;
  }

  .menu-toggle {
    display: block;
  }
}

@media (min-width: 1101px) {
  .mobile-menu {
    display: none !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
  transition: transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--primary);
  color: #031107;
  box-shadow: 0 12px 30px rgba(32,196,107,.22);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-accent {
  background: var(--accent);
  color: #1b1200;
  box-shadow: 0 12px 30px rgba(255,209,102,.18);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: var(--border);
}

.btn-lg {
  min-height: 56px;
  border-radius: 15px;
  font-size: 17px;
}

.section {
  padding: 66px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 12% 12%, rgba(32,196,107,.30), transparent 32%),
    radial-gradient(circle at 88% 5%, rgba(255,209,102,.20), transparent 28%),
    linear-gradient(180deg, #06110a, #0b1d13);
}

.section-soft {
  background: var(--bg-soft);
}

.hero {
  padding: 54px 0 50px;
  overflow: hidden;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.badge-row,
.keyword-pills,
.hero-actions,
.offer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(32,196,107,.35);
  background: rgba(32,196,107,.12);
  color: #bdfbd7;
  font-size: 13px;
  font-weight: 900;
}

.badge-accent {
  border-color: rgba(255,209,102,.40);
  background: rgba(255,209,102,.12);
  color: #ffe7a3;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 18px 0 16px;
  max-width: 760px;
  font-size: clamp(38px, 6.2vw, 72px);
  line-height: .98;
  letter-spacing: -2.4px;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.14;
  letter-spacing: -.8px;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.22;
}

.hero-lead,
.section-lead {
  margin: 0;
  max-width: 750px;
  color: var(--muted);
  font-size: 19px;
}

.keyword-pills {
  margin: 22px 0 28px;
}

.keyword-pills span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.hero-actions {
  margin: 0 0 14px;
}

.mini-note {
  color: var(--muted-2);
  font-size: 12px;
  margin: 14px 0 0;
}

.offer-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045)), var(--bg-card);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.offer-panel:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.offer-image {
  position: relative;
  min-height: 240px;
  background: linear-gradient(135deg, rgba(32,196,107,.28), rgba(255,209,102,.14)), var(--bg-soft);
}

.offer-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  opacity: .92;
}

.image-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2,7,3,.82);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.offer-content {
  padding: 22px;
}

.offer-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.offer-heading h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.stars {
  color: var(--accent);
  font-weight: 950;
  white-space: nowrap;
  text-align: right;
}

.stars small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.bonus-box {
  border: 1px solid rgba(32,196,107,.36);
  border-radius: 18px;
  padding: 17px;
  background: rgba(32,196,107,.13);
  margin-bottom: 14px;
}

.bonus-box span,
.bonus-box small {
  display: block;
  color: var(--muted);
}

.bonus-box strong {
  display: block;
  margin: 4px 0;
  font-size: clamp(29px, 4vw, 40px);
  line-height: 1.05;
  color: var(--text);
}

.promo-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px dashed rgba(255,209,102,.55);
  border-radius: 16px;
  background: rgba(255,209,102,.12);
  margin: 14px 0 16px;
}

.promo-code span {
  color: var(--muted);
}

.promo-code strong {
  color: var(--accent);
  letter-spacing: .6px;
}

.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.check-list li {
  margin: 8px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.trust-strip {
  padding: 18px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  background: rgba(255,255,255,.045);
}

.trust-item strong {
  display: block;
  font-size: 22px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.text-link {
  color: var(--primary-2);
  font-weight: 900;
  white-space: nowrap;
}

.bookmaker-list {
  display: grid;
  gap: 14px;
}

.bookmaker-card {
  display: grid;
  grid-template-columns: 54px 1.25fr 1fr .8fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.bookmaker-rank,
.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(32,196,107,.14);
  border: 1px solid rgba(32,196,107,.32);
  color: var(--primary-2);
  font-weight: 950;
}

.bookmaker-card p,
.bookmaker-card small,
.bookmaker-meta small {
  color: var(--muted);
  margin: 4px 0 0;
}

.bookmaker-bonus strong,
.bookmaker-meta span {
  color: var(--accent);
}

.notice {
  margin: 18px 0 0;
  border: 1px solid rgba(255,209,102,.28);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,209,102,.10);
  color: #fff2c4;
  font-size: 14px;
}

.hub-grid,
.content-grid {
  display: grid;
  gap: 18px;
}

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

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

.hub-card,
.info-card,
.review-card,
.table-card,
.side-offer,
.keyword-map,
.legal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.hub-card:hover,
.info-card:hover,
.bookmaker-card:hover {
  border-color: rgba(32,196,107,.35);
  transform: translateY(-1px);
}

.hub-card {
  transition: .2s ease;
}

.hub-card span,
.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #1b1200;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.hub-card p,
.info-card p,
.review-card p,
.legal-card p {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.step-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
}

.step-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #031107;
  font-weight: 950;
}

.step-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.side-offer {
  align-self: start;
}

.side-offer p {
  color: var(--muted);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.data-table,
.keyword-map table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.data-table th,
.data-table td,
.keyword-map th,
.keyword-map td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.data-table th,
.keyword-map th {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(255,255,255,.04);
}

.data-table td,
.keyword-map td {
  color: var(--muted);
}

.keyword-map table tr:last-child th,
.keyword-map table tr:last-child td,
.data-table tr:last-child td {
  border-bottom: 0;
}

.review-card {
  display: grid;
  gap: 10px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  background: var(--bg-card);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 950;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--primary-2);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

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

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  padding: 10px 0;
  background: rgba(2,7,3,.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.site-footer {
  padding: 44px 0 90px;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .85fr .7fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer h3 {
  color: var(--text);
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-grid {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .btn {
    display: none;
  }

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

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

  .bookmaker-card {
    grid-template-columns: 44px 1fr;
  }

  .bookmaker-card .btn {
    grid-column: 1 / -1;
  }

  .bookmaker-bonus,
  .bookmaker-meta {
    grid-column: 2;
  }

  .sticky-cta {
    display: block;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 48px 0;
  }

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

  .brand-text strong {
    font-size: 15px;
  }

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

  h1 {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: -1.6px;
  }

  .hero-lead,
  .section-lead {
    font-size: 17px;
  }

  .btn-lg,
  .btn {
    width: 100%;
  }

  .hero-actions,
  .offer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .offer-heading,
  .section-head {
    display: block;
  }

  .stars {
    text-align: left;
    margin-top: 10px;
  }

  .two-col,
  .trust-grid,
  .hub-grid,
  .content-grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .text-link {
    display: inline-block;
    margin-top: 14px;
    white-space: normal;
  }

  .offer-image img,
  .offer-image {
    height: 210px;
    min-height: 210px;
  }

  .data-table,
  .keyword-map table {
    min-width: 620px;
  }

  .keyword-map {
    overflow-x: auto;
  }
}

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

#how-to .split {
  align-items: start;
}

.step-card {
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
}

.step-card > span {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.step-card > h3,
.step-card > p {
  grid-column: 2;
}

.step-card > h3 {
  margin: 0;
}

.step-card > p {
  margin: 4px 0 0;
}



