:root {
  --bg: #633f31;
  --surface: #ffffff;
  --surface-soft: #633f31;
  --navy: #0f2744;
  --navy-2: #17395f;
  --blue: #1b6fd8;
  --blue-dark: #1157ad;
  --cyan: #d9f0ff;
  --green: #0d7d67;
  --amber: #f2b84b;
  --danger: #b7362d;
  --text: #1a2533;
  --muted: #000000;
  --border: #d8e2ee;
  --shadow: 0 18px 50px rgba(15, 39, 68, 0.11);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.age-locked {
  overflow: hidden;
}

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

a {
  color: var(--blue-dark);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

button,
input,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--navy);
  color: #fff;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 820px);
}

.section {
  padding: 4.75rem 0;
  scroll-margin-top: 96px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand:hover,
.brand:focus-visible {
  text-decoration: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.site-nav a {
  color: var(--navy);
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--cyan);
  text-decoration: none;
}

.header-contact {
  display: grid;
  gap: 0.1rem;
  justify-items: end;
  color: var(--muted);
  font-size: 0.88rem;
}

.header-contact address {
  font-style: normal;
}

.header-contact a {
  font-weight: 800;
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  place-items: center;
  padding: 0.65rem;
  cursor: pointer;
}

.menu-toggle_bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 3px 0;
}

.hero {
  min-height: 610px;
  display: grid;
  align-items: center;
  color: #fff;
  background: linear-gradient(110deg, rgba(15, 39, 68, 0.95), rgba(23, 57, 95, 0.9)),
    url("../img/hero-pattern.svg") center/cover;
}

.hero-grid,
.split-grid,
.content-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  margin: 1.35rem 0 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.responsible-panel .eyebrow {
  color: var(--amber);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 22px rgba(27, 111, 216, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--cyan);
}

.btn-card {
  width: 100%;
  color: var(--navy);
  background: var(--cyan);
  border-color: #b9dbf3;
}

.btn-card:hover,
.btn-card:focus-visible {
  background: #c7e7fb;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-stat {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stat span {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.hero-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.warning-strip {
  padding: 1rem 0;
  color: #3f1d00;
  background: #fff4d8;
  border-block: 1px solid #f0d28a;
}

.section-heading {
  width: min(100%, 760px);
  margin-bottom: 2rem;
}

.section-heading h2,
.split-grid h2,
.prose h2,
.contact-card h2 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.13;
  letter-spacing: 0;
}

.section-heading p,
.split-grid > div > p {
  color: var(--muted);
}

.cards,
.ranking-grid,
.step-grid {
  display: grid;
  gap: 1rem;
}

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

.bookmaker-card,
.step-card,
.side-note,
.contact-form,
.contact-card,
.faq-item,
.criteria-list article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.bookmaker-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
}

.rank-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.bookmaker-logo {
  width: 176px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.bookmaker-card h3,
.step-card h3,
.criteria-list h3 {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-size: 1.18rem;
}

.bonus {
  color: var(--muted);
  margin: 0 0 1rem;
}

.benefit-list,
.check-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.benefit-list li,
.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.benefit-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--green);
}

.bookmaker-card .btn {
  margin-top: auto;
}

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

.step-card {
  padding: 1.2rem;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.step-card p,
.criteria-list p,
.prose p,
.contact-card p,
.side-note p {
  color: var(--muted);
}

.split-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.criteria-list {
  display: grid;
  gap: 1rem;
}

.criteria-list article {
  padding: 1.2rem;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.prose a {
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.faq-wrap {
  width: min(100% - 2rem, 900px);
}

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

.faq-item {
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

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

.faq-question::after {
  content: "+";
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
}

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

.faq-answer {
  display: none;
  padding: 0 1.15rem 1.15rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

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

.responsible-panel {
  color: #fff;
  background: var(--navy);
}

.responsible-panel h2,
.responsible-panel p,
.responsible-panel li {
  color: #fff;
}

.responsible-panel a {
  color: #d7efff;
}

.page-hero {
  color: #fff;
  background: linear-gradient(110deg, rgba(15, 39, 68, 0.96), rgba(23, 57, 95, 0.9)),
    url("../img/hero-pattern.svg") center/cover;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.content-grid {
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 0.64fr);
  align-items: start;
}

.side-note,
.contact-card,
.contact-form {
  padding: 1.35rem;
}

.side-note {
  position: sticky;
  top: 104px;
}

.side-note strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.side-note-strong {
  border-color: #ffd58c;
  background: #fff8e8;
}

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

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  color: var(--navy);
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 0.8rem 0.9rem;
}

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

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(27, 111, 216, 0.18);
  border-color: var(--blue);
}

.form-success {
  margin: 0;
  padding: 0.8rem;
  border-radius: var(--radius);
  color: #0d513f;
  background: #e0f6ef;
  border: 1px solid #b9e8dc;
}

.small-note {
  font-size: 0.94rem;
}

.legal-content {
  width: min(100% - 2rem, 860px);
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: #0a1d33;
  padding: 3.5rem 0 1.5rem;
}

.site-footer a {
  color: #d7efff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: 1rem;
}

.site-footer address {
  font-style: normal;
}

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

.regulatory-logos {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.regulatory-logos img {
  border-radius: var(--radius);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 90;
  width: min(calc(100% - 2rem), 980px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 15, 27, 0.84);
  backdrop-filter: blur(10px);
}

.age-gate_box {
  width: min(100%, 520px);
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.age-gate_box h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
}

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

.age-gate_actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.age-gate.is-denied .age-gate_actions {
  display: none;
}

.age-denied {
  padding: 0.85rem;
  border-radius: var(--radius);
  background: #fff4d8;
  border: 1px solid #f0d28a;
}

.footer-regulation {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.footer-regulation h3 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 8px;
  border-radius: 10px;
  background: #797979;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 150px;
  height: 60px;
}

.footer-logos a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-logos img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-disclaimer {
  margin-top: 28px;
  padding-top: 24px;
  max-width: 1180px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.footer-disclaimer p {
  margin: 0 0 14px;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  
  .menu-toggle {
    display: grid;
  }
  
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  
  .site-nav.is-open {
    display: flex;
  }
  
  .site-nav a {
    padding: 0.85rem 1rem;
  }
  
  .header-contact {
    grid-column: 1 / -1;
    justify-items: start;
    padding-bottom: 0.8rem;
  }
  
  .hero-grid,
    .split-grid,
    .content-grid,
    .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .ranking-grid {
    grid-template-columns: 1fr;
  }
  
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .side-note {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container,
    .narrow,
    .legal-content,
    .faq-wrap {
    width: min(100% - 1rem, var(--container));
  }
  
  .section {
    padding: 3.25rem 0;
  }
  
  .header-inner {
    gap: 0.8rem;
  }
  
  .header-contact {
    font-size: 0.82rem;
  }
  
  .hero {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .hero h1,
    .page-hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-actions,
    .age-gate_actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-actions .btn,
    .age-gate_actions .btn {
    width: 100%;
  }
  
  .hero-stat {
    grid-template-columns: 68px 1fr;
  }
  
  .step-grid,
    .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

.odds-watch {
  background: #f7f3ea;
}

.odds-watch_box {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 42px;
  align-items: stretch;
  padding: 42px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(20, 28, 44, 0.08);
}

.odds-watch_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.odds-watch_content h2 {
  margin: 10px 0 18px;
}

.odds-watch_content p:not(.eyebrow) {
  color: #5f6675;
  line-height: 1.7;
}

.odds-watch_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.odds-watch_items article {
  padding: 24px;
  border-radius: 22px;
  background: #101827;
  color: #ffffff;
}

.odds-watch_items span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f4c95d;
  color: #101827;
  font-weight: 800;
}

.odds-watch_items h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.odds-watch_items p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .odds-watch_box {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .odds-watch_items {
    grid-template-columns: 1fr;
  }
}