/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand palette */
  --brand-50:  #f0f7ff;
  --brand-100: #dbeeff;
  --brand-200: #b0d9fe;
  --brand-400: #4da6f5;
  --brand-500: #1d87e8;
  --brand-600: #1266c9;
  --brand-700: #0e4fa0;
  --brand-800: #0a3675;
  --brand-900: #061e45;

  /* Navy */
  --navy:      #0d2544;
  --navy-soft: #162f55;

  /* Accent / Gold */
  --gold-400:  #f5c842;
  --gold-500:  #e8a812;
  --gold-100:  #fff8de;

  /* Success */
  --green-500: #0e9170;
  --green-50:  #e4f9f4;

  /* Danger */
  --red-500:   #c53030;
  --red-50:    #fff0f0;

  /* Neutrals */
  --surface:        #ffffff;
  --surface-soft:   #f5f8fc;
  --surface-accent: #eef5ff;
  --border:         #e0e8f5;
  --border-strong:  #c8d6ea;
  --text:           #1a2534;
  --text-muted:     #000000;
  --text-subtle:    #8795a8;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(13, 37, 68, 0.08);
  --shadow-md:  0 6px 24px rgba(13, 37, 68, 0.10);
  --shadow-lg:  0 16px 48px rgba(13, 37, 68, 0.12);
  --shadow-xl:  0 24px 64px rgba(13, 37, 68, 0.16);

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Spacing */
  --container: 1200px;
  --section-gap: 5rem;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.22s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: linear-gradient(135deg, #a82525 0%, #a82525 50%, #a82525 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: var(--brand-600);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover,
a:focus-visible {
  color: var(--brand-800);
  text-decoration: underline;
}

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

[hidden] { display: none !important; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.YhjJgQX3 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.vuYbec9u7nd {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--r-md);
  font-weight: 700;
  transition: transform var(--dur) var(--ease);
}

.vuYbec9u7nd:focus { transform: translateY(0); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.zHzHyl9r {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.cuetQcscId7 {
  width: min(100% - 2.5rem, 840px);
  margin-inline: auto;
}

.fBarZw {
  padding: var(--section-gap) 0;
  scroll-margin-top: 100px;
}

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

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

/* ============================================================
   HEADER
   ============================================================ */
.M24kSdTeaPP {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.mik2puMtBC {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.hi92yPfCZ {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: opacity var(--dur) var(--ease);
}

.hi92yPfCZ:hover,
.hi92yPfCZ:focus-visible {
  text-decoration: none;
  opacity: 0.82;
}

.hi92yPfCZ img,
.hi92yPfCZ svg {
  width: 38px;
  height: 38px;
}

/* Nav */
.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  list-style: none;
  padding: 0;
}

.site-nav a {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-md);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

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

/* Header contact */
.jg01V1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.jg01V1 address { font-style: normal; }

.jg01V1 a {
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}

/* Hamburger */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 5px;
  transition: border-color var(--dur) var(--ease);
}

.menu-toggle:hover { border-color: var(--border-strong); }

.WriZ9Rheuo {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.CZsmLesg7j {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, #a82525 0%, #a82525 50%, #a82525 100%);
  color: #fff;
  overflow: hidden;
}

.CZsmLesg7j::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(30, 120, 220, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(245, 200, 66, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.CZsmLesg7j > .zHzHyl9r { position: relative; z-index: 1; }

.Cvl5BW04fr {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 3rem;
}

.CZsmLesg7j h1,
.sjn81OrF9 h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}

.X51TBPT5 {
  margin-top: 1.2rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 600px;
}

.zlWK8iOK {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 0.9rem;
}

.CZsmLesg7j .zlWK8iOK,
.BQIMkg .zlWK8iOK {
  color: var(--gold-400);
}

.ZaCMuYn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.c6Zee5k {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              transform 0.12s var(--ease), box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.c6Zee5k:hover,
.c6Zee5k:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}

.c6Zee5k:active {
  transform: translateY(0) scale(0.98);
}

.c6Zee5k:focus-visible {
  outline: 3px solid var(--brand-400);
  outline-offset: 2px;
}

.m5z5bj {
  background: var(--brand-500);
  color: #fff;
  border-color: var(--brand-600);
  box-shadow: 0 4px 14px rgba(29, 135, 232, 0.35);
}

.m5z5bj:hover,
.m5z5bj:focus-visible {
  background: var(--brand-600);
  box-shadow: 0 6px 20px rgba(29, 135, 232, 0.45);
}

.XIgCpuzlq {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.XIgCpuzlq:hover,
.XIgCpuzlq:focus-visible {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

/* On light bg */
.agjfmf {
  background: transparent;
  color: var(--brand-700);
  border-color: var(--brand-300, var(--border-strong));
}

.agjfmf:hover,
.agjfmf:focus-visible {
  background: var(--surface-accent);
}

.GwrUW8SUzzE {
  width: 100%;
  background: var(--brand-500);
  color: #fff;
  border-color: var(--brand-600);
  box-shadow: 0 4px 14px rgba(29, 135, 232, 0.3);
}

.GwrUW8SUzzE:hover,
.GwrUW8SUzzE:focus-visible {
  background: var(--brand-600);
}

/* ============================================================
   HERO STATS PANEL
   ============================================================ */
.yvvZhe {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
}

.n3V66aLVe {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--dur) var(--ease);
}

.n3V66aLVe:hover { background: rgba(255,255,255,0.13); }

.n3V66aLVe span {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold-400);
  letter-spacing: -0.03em;
  line-height: 1;
}

.n3V66aLVe p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================
   WARNING STRIP
   ============================================================ */
.vPiMcnagIww {
  padding: 0.9rem 0;
  background: #fff8e1;
  border-top: 2px solid #f5c842;
  border-bottom: 1px solid #ead89a;
  color: #5a3e00;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.G6Lobr5 {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.G6Lobr5 h2,
.F2QLYg h2,
.JVaHCg5A h2,
.QOxLLaiua20 h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.G6Lobr5 p,
.F2QLYg > div > p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ============================================================
   BOOKMAKER CARDS
   ============================================================ */
.Vuihu7P {
  display: grid;
  gap: 1.25rem;
}

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

.zPORKi {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  overflow: hidden;
}

.zPORKi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.zPORKi:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-200, #b0d9fe);
  transform: translateY(-3px);
}

.zPORKi:hover::before { opacity: 1; }

/* Featured card */
.zPORKi.fX3woGEV0zD {
  border-color: var(--brand-400);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(77, 166, 245, 0.15);
}

.zPORKi.fX3woGEV0zD::before { opacity: 1; }

.vfhdnrcXg {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 32px;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-sm);
  background: var(--green-500);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.pU8KTWg {
  width: 160px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 1.1rem;
  border-radius: var(--r-sm);
}

.zPORKi h3,
.IvFX2VZkW0A h3,
.pVSXn5iQq h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.q0SVaAo73 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-100);
  color: #6b4000;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-sm);
  border: 1px solid #f0d07a;
  margin-bottom: 1.1rem;
}

.PnhonhI,
.UmHeFP1,
.KMZluU5x7y {
  margin: 0;
  padding: 0;
  list-style: none;
}

.PnhonhI {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.PnhonhI li,
.UmHeFP1 li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.PnhonhI li::before,
.UmHeFP1 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green-500);
}

.zPORKi .c6Zee5k {
  margin-top: auto;
}

/* ============================================================
   STEP GRID
   ============================================================ */
.ukITCgvBji {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.IvFX2VZkW0A {
  padding: 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.IvFX2VZkW0A:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.IvFX2VZkW0A span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface-accent);
  border: 1.5px solid var(--brand-200, #b0d9fe);
  border-radius: 50%;
  color: var(--brand-700);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.IvFX2VZkW0A h3 {
  margin-bottom: 0.5rem;
}

.IvFX2VZkW0A p,
.pVSXn5iQq p,
.JVaHCg5A p,
.QOxLLaiua20 p,
.KI25rqvBS3 p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SPLIT GRID
   ============================================================ */
.F2QLYg {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 3rem;
  align-items: start;
}

/* ============================================================
   CRITERIA LIST
   ============================================================ */
.pVSXn5iQq {
  display: grid;
  gap: 1rem;
}

.pVSXn5iQq article {
  padding: 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.pVSXn5iQq article:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

/* ============================================================
   PROSE / CONTENT
   ============================================================ */
.JVaHCg5A {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text);
}

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

.JVaHCg5A h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.JVaHCg5A a {
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
}

.JVaHCg5A a:hover { opacity: 0.75; }

.UmHeFP1 {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.ZlLhuBBpX {
  width: min(100% - 2.5rem, 880px);
  margin-inline: auto;
}

.pPlXU0wghH {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.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.25rem;
  font-size: 0.97rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}

.faq-question:hover { background: var(--surface-soft); }

.faq-question::after {
  content: "+";
  flex: 0 0 30px;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-accent);
  color: var(--brand-700);
  font-size: 1.2rem;
  font-weight: 700;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  background: var(--brand-500);
  color: #fff;
  transform: scale(1.05);
}

.IKVf99KTWk {
  display: none;
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
}

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

.IKVf99KTWk p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  padding-top: 0.9rem;
  line-height: 1.75;
}

/* ============================================================
   RESPONSIBLE GAMBLING PANEL
   ============================================================ */
.BQIMkg {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0d3068 100%);
  color: #fff;
  overflow: hidden;
}

.BQIMkg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 90% 50%, rgba(30,110,220,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.BQIMkg > .zHzHyl9r { position: relative; z-index: 1; }

.BQIMkg h2,
.BQIMkg p,
.BQIMkg li { color: #fff; }

.BQIMkg p { color: rgba(255,255,255,0.82); }

.BQIMkg a { color: #90cbff; }

.BQIMkg .UmHeFP1 li { color: rgba(255,255,255,0.82); }

.BQIMkg .UmHeFP1 li::before { background: var(--gold-400); }

/* ============================================================
   PAGE HERO
   ============================================================ */
.sjn81OrF9 {
  position: relative;
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #081a35 0%, #0d3068 60%, #0f4a8a 100%);
  color: #fff;
  overflow: hidden;
}

.sjn81OrF9::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(30,120,220,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.sjn81OrF9 > .zHzHyl9r { position: relative; z-index: 1; }

.sjn81OrF9 p:not(.zlWK8iOK) {
  max-width: 680px;
  color: rgba(255,255,255,0.8);
  font-size: 1.06rem;
  line-height: 1.75;
  margin-top: 0.9rem;
}

/* ============================================================
   CONTENT GRID (sidebar layout)
   ============================================================ */
.UcBnFUtBJ {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: 2rem;
  align-items: start;
}

.KI25rqvBS3 {
  padding: 1.35rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 104px;
}

.KI25rqvBS3 strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.65rem;
}

.GjotGh8tbD {
  border-color: #f0d07a;
  background: #fffbf0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.g2bymbd {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: start;
}

.QOxLLaiua20 {
  padding: 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.xhYZRaddlF {
  display: grid;
  gap: 1.1rem;
  padding: 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.xl5crxHXTd {
  display: grid;
  gap: 0.4rem;
}

.xl5crxHXTd label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.xl5crxHXTd input,
.xl5crxHXTd textarea,
.xl5crxHXTd select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  font-size: 0.94rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.xl5crxHXTd textarea {
  resize: vertical;
  min-height: 160px;
}

.xl5crxHXTd input:hover,
.xl5crxHXTd textarea:hover,
.xl5crxHXTd select:hover {
  border-color: var(--border-strong);
}

.xl5crxHXTd input:focus,
.xl5crxHXTd textarea:focus,
.xl5crxHXTd select:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(29, 135, 232, 0.12);
}

.form-success {
  padding: 0.9rem 1rem;
  border-radius: var(--r-md);
  background: var(--green-50);
  border: 1.5px solid #9fe1cb;
  color: #054030;
  font-weight: 700;
  font-size: 0.93rem;
}

.l1KP3uYkI {
  font-size: 0.88rem;
  color: var(--text-subtle);
}

/* ============================================================
   LEGAL
   ============================================================ */
.p5WeYp7 {
  width: min(100% - 2.5rem, 860px);
  margin-inline: auto;
}

/* ============================================================
   PLAYER CHECK SECTION
   ============================================================ */
.tyF7MRTG {
  background: #0b1520;
}

.O5NtIkn {
  display: grid;
  grid-template-columns: 210px 1fr 290px;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, #13263d 0%, #1a3654 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-xl);
}

.P3xSOwmWB {
  padding: 2rem 1.5rem;
  border-radius: var(--r-xl);
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.P3xSOwmWB span {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-400);
  letter-spacing: -0.04em;
}

.P3xSOwmWB p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.VdsPBSDQsH h2 {
  margin: 0.5rem 0 1rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.VdsPBSDQsH p:not(.zlWK8iOK) {
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-size: 0.93rem;
}

.kdOVuZ {
  padding: 1.5rem;
  border-radius: var(--r-xl);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.kdOVuZ p {
  margin-bottom: 0.75rem;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.9rem;
}

.kdOVuZ ul {
  margin: 0;
  padding-left: 1.25rem;
}

.kdOVuZ li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
.s5T8DGZ {
  background: #070e1a;
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 2rem;
}

.s5T8DGZ a {
  color: rgba(255,255,255,0.78);
  transition: color var(--dur) var(--ease);
}

.s5T8DGZ a:hover { color: #fff; }

.c4SGfv7lbfa {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.t3hciMnkV1A {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.s5T8DGZ h2 {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.s5T8DGZ address { font-style: normal; }

.KMZluU5x7y {
  display: grid;
  gap: 0.5rem;
}

.KMZluU5x7y a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
}

.KMZluU5x7y a:hover {
  color: #fff;
  text-decoration: none;
}

/* Footer regulation */
.SBNYNgx {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.SBNYNgx h3 {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.h3LNabj {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.h3LNabj a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 56px;
  padding: 0.5rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.h3LNabj a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.h3LNabj img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.75);
  transition: opacity var(--dur) var(--ease);
}

.h3LNabj a:hover img { opacity: 1; }

/* Footer bottom */
.x86Li97d {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.fSr4yT9Zfc {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 1100px;
}

.fSr4yT9Zfc p { margin-bottom: 0.85rem; }

.fSr4yT9Zfc p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}

/* Regulatory logos (old footer block) */
.bKdEJWThsIk {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.bKdEJWThsIk img { border-radius: var(--r-sm); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 200;
  width: min(calc(100% - 2.5rem), 980px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}

.cookie-banner strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 14, 26, 0.88);
  backdrop-filter: blur(14px);
}

.XLXYTGZOWN {
  width: min(100%, 500px);
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  padding: 2.5rem 2rem;
  border-radius: var(--r-2xl);
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.XLXYTGZOWN h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0;
}

.XLXYTGZOWN p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  max-width: 360px;
}

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

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

.age-denied {
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  background: #fff8e1;
  border: 1.5px solid #f0d07a;
  color: #5a3e00;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 980px)
   ============================================================ */
@media (max-width: 980px) {
  :root { --section-gap: 4rem; }

  .mik2puMtBC {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    display: none;
    padding: 1rem;
    background: rgba(255,255,255,0.98);
    border-bottom: 1.5px solid var(--border);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    gap: 0.2rem;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a { padding: 0.8rem 1rem; }

  .jg01V1 {
    grid-column: 1 / -1;
    align-items: flex-start;
    padding-bottom: 0.75rem;
    display: none;
  }

  .Cvl5BW04fr,
  .F2QLYg,
  .UcBnFUtBJ,
  .g2bymbd {
    grid-template-columns: 1fr;
  }

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

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

  .KI25rqvBS3 {
    position: static;
  }

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

  .O5NtIkn {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.5rem;
  }

  .P3xSOwmWB { text-align: left; display: flex; gap: 1.25rem; align-items: center; }
  .P3xSOwmWB span { font-size: 2.4rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-gap: 3rem; }

  .zHzHyl9r,
  .cuetQcscId7,
  .p5WeYp7,
  .ZlLhuBBpX {
    width: min(100% - 1.5rem, var(--container));
  }

  .mik2puMtBC { gap: 0.75rem; }

  .CZsmLesg7j {
    min-height: auto;
    padding: 3.5rem 0;
  }

  .CZsmLesg7j h1,
  .sjn81OrF9 h1 {
    font-size: 2rem;
  }

  .ZaCMuYn,
  .khd145W6c2 {
    flex-direction: column;
    align-items: stretch;
  }

  .ZaCMuYn .c6Zee5k,
  .khd145W6c2 .c6Zee5k {
    width: 100%;
    min-height: 52px;
  }

  .n3V66aLVe {
    grid-template-columns: 72px 1fr;
  }

  .ukITCgvBji,
  .c4SGfv7lbfa {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    border-radius: var(--r-lg);
  }

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

  .zPORKi { padding: 1.25rem; }

  .XLXYTGZOWN { padding: 2rem 1.25rem; }

  .P3xSOwmWB { flex-direction: column; text-align: center; }

  .x86Li97d {
    flex-direction: column;
    text-align: center;
  }

  .G6Lobr5 h2,
  .F2QLYg h2 {
    font-size: 1.6rem;
  }

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

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .M24kSdTeaPP,
  .s5T8DGZ,
  .cookie-banner,
  .age-gate,
  .vPiMcnagIww { display: none; }

  body { font-size: 12pt; }

  a::after { content: " (" attr(href) ")"; }
}

.gfoYoOc8Yp {
  background:
    radial-gradient(circle at top left, rgba(245, 196, 81, 0.22), transparent 34%),
    linear-gradient(135deg, #f7f1e3 0%, #ffffff 58%, #eef5f1 100%);
}

.GcafYwUT {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}

.z1wywHN5mTv {
  position: relative;
  padding: 38px;
  border-radius: 28px;
  background: #13251f;
  color: #fff;
  box-shadow: 18px 18px 0 rgba(19, 37, 31, 0.12);
  overflow: hidden;
}

.z1wywHN5mTv::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(245, 196, 81, 0.22);
}

.z1wywHN5mTv span {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5c451;
  color: #13251f;
  font-weight: 800;
  font-size: 0.85rem;
}

.z1wywHN5mTv h2 {
  color: #fff;
  margin-bottom: 16px;
}

.z1wywHN5mTv p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.zwtjIoDR {
  display: grid;
  gap: 18px;
}

.zwtjIoDR article {
  padding: 24px 26px;
  border-radius: 24px;
  background: #fff;
  border-left: 6px solid #f5c451;
  box-shadow: 0 18px 45px rgba(19, 37, 31, 0.08);
}

.zwtjIoDR small {
  display: block;
  margin-bottom: 8px;
  color: #6a7a73;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.zwtjIoDR h3 {
  margin-bottom: 8px;
}

.zwtjIoDR p {
  color: #5f6f68;
  line-height: 1.65;
}

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

  .z1wywHN5mTv {
    padding: 28px;
    box-shadow: 10px 10px 0 rgba(19, 37, 31, 0.12);
  }
}

.cLDGZLS {
  background: linear-gradient(135deg, #fff7ea 0%, #f4f7fb 100%);
}

.tTLVHd {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 44px;
  align-items: center;
}

.cg1VNIMY {
  position: relative;
  min-height: 320px;
  border-radius: 34px;
  background: #151f32;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(21, 31, 50, 0.18);
}

.cg1VNIMY::before,
.cg1VNIMY::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cg1VNIMY::before {
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cg1VNIMY::after {
  width: 150px;
  height: 150px;
  right: -40px;
  bottom: -40px;
}

.UhmeFWul {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #ffb84d;
  color: #151f32;
  font-weight: 800;
}

.AinivB2C {
  position: absolute;
  width: 138px;
  height: 138px;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  color: #151f32;
  font-weight: 800;
}

.qG4i2RcO {
  max-width: 760px;
}

.qG4i2RcO h2 {
  margin-bottom: 16px;
}

.UzczMNXlIH {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.UzczMNXlIH article {
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(21, 31, 50, 0.08);
}

.UzczMNXlIH strong {
  display: block;
  margin-bottom: 10px;
  color: #f29f24;
}

.UzczMNXlIH span {
  font-weight: 700;
}

@media (max-width: 860px) {
  .tTLVHd,
  .UzczMNXlIH {
    grid-template-columns: 1fr;
  }

  .cg1VNIMY {
    min-height: 260px;
  }
}