/* ==========================================================================
   Readybet.co — base styles (tokens, reset, shared components)
   Desktop reference: 1440px (content 1312 + 64px gutters)
   Mobile reference:  390px
   ========================================================================== */

:root {
  --bg: #fcfaf7;
  --ink: #1c140e;
  --brown: #2d221b;
  --muted: #6b5e55;
  --line: #eae3db;
  --line-2: #eaddcf;
  --sand: #f5e5d3;
  --cream: #eae0d3;
  --sky: #cbe4f9;
  --orange: #f25c05;
  --yellow: #fcd34d;
  --white: #ffffff;
  --paper: #fcfaf7;

  --f-head: 'Archivo Narrow', 'Arial Narrow', Arial, sans-serif;
  --f-body: 'Geist', 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-archivo: 'Archivo', Arial, sans-serif;

  --gutter: 64px;
  --content: 1312px;
  --mobile-gutter: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { border: 0; background: none; padding: 0; cursor: pointer; text-align: inherit; }
input, select, textarea { border: 0; background: none; padding: 0; outline: none; }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 1; }
input[type="number"] { -moz-appearance: textfield; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* Font helpers ------------------------------------------------------------ */
.f-head { font-family: var(--f-head); font-weight: 700; }
.f-body { font-family: var(--f-body); }
.upper { text-transform: uppercase; }
.truncate { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* Responsive visibility ---------------------------------------------------- */
.only-m { display: none !important; }
@media (max-width: 767px) {
  .only-d { display: none !important; }
  .only-m { display: block !important; }
  .only-m.flex { display: flex !important; }
}

/* Page shell --------------------------------------------------------------- */
.page { display: flex; flex-direction: column; min-height: 100vh; }
.page > main { flex: 1 0 auto; }
.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.inner { max-width: var(--content); margin: 0 auto; }
@media (max-width: 767px) {
  .wrap { padding-left: var(--mobile-gutter); padding-right: var(--mobile-gutter); }
}

/* Arrow glyph used in text links ("→") -------------------------------------- */
.arrow-link { display: inline-flex; align-items: center; gap: 4px; }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap; border-radius: 999px; transition: filter .15s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { filter: brightness(.96); }
.btn:active { filter: brightness(.92); }
.btn-orange { background: var(--orange); color: var(--white); font-family: var(--f-body); font-weight: 700; font-size: 13px; letter-spacing: .5px; padding: 12px 18px; box-shadow: 0 10px 24px -10px rgba(242, 92, 5, .25); }
.btn-white { background: var(--white); color: var(--ink); font-family: var(--f-body); font-weight: 700; font-size: 13px; letter-spacing: .5px; padding: 12px 18px; }
.btn-ink { background: var(--ink); color: var(--white); font-family: var(--f-body); font-weight: 700; font-size: 13px; padding: 10px 20px; }

/* Badges ------------------------------------------------------------------- */
.badge { display: inline-flex; align-items: center; white-space: nowrap; border-radius: 4px; line-height: normal; }

/* ==========================================================================
   Desktop utility strip
   ========================================================================== */
.util-strip {
  height: 34px; background: var(--sand); border-bottom: 1px solid var(--line);
  padding: 8px var(--gutter); display: flex; justify-content: space-between; align-items: center;
}
.util-strip__left { display: flex; align-items: center; gap: 16px; }
.util-strip__badge { background: var(--ink); color: var(--white); border-radius: 4px; padding: 2px 6px; font-family: var(--f-body); font-weight: 900; font-size: 11px; }
.util-strip__title { font-family: var(--f-body); font-weight: 700; font-size: 12px; letter-spacing: .5px; color: var(--ink); }
.util-strip__q { font-family: var(--f-body); font-size: 12px; color: var(--muted); }
.util-strip__right { display: flex; align-items: center; gap: 24px; }
.util-strip__link { font-family: var(--f-body); font-weight: 700; font-size: 12px; color: var(--orange); }
.util-strip__help { font-family: var(--f-body); font-size: 12px; color: var(--ink); }
.util-strip__help b { font-weight: 700; }

/* ==========================================================================
   Desktop header capsule
   ========================================================================== */
.site-header { padding: 20px var(--gutter); }
.header-capsule {
  height: 62px; background: var(--bg); border: 1px solid var(--line); border-radius: 100px;
  padding: 12px 32px; display: flex; justify-content: space-between; align-items: center;
}
.brand { font-family: var(--f-head); font-weight: 700; font-size: 28px; letter-spacing: -1px; color: var(--ink); white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav__item {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-head); font-weight: 700; font-size: 15px; line-height: 20px; letter-spacing: .5px; text-transform: uppercase; color: var(--ink);
  white-space: nowrap;
}
.main-nav__item.is-active::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.user-actions { display: flex; align-items: center; gap: 24px; }
.user-actions__links { display: flex; gap: 16px; }
.user-actions__links a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-body); font-size: 13px; color: var(--muted); white-space: nowrap; }
.user-actions__links a.is-active::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.auth-buttons { display: flex; align-items: center; gap: 12px; }
.auth-buttons__login { font-family: var(--f-body); font-weight: 700; font-size: 14px; color: var(--ink); white-space: nowrap; }
.auth-buttons__join { background: var(--ink); color: var(--white); border-radius: 100px; padding: 10px 20px; font-family: var(--f-body); font-weight: 700; font-size: 13px; white-space: nowrap; }

/* ==========================================================================
   Mobile utility bar + mobile header
   ========================================================================== */
.m-util { display: none; }
.m-header { display: none; }

@media (max-width: 767px) {
  .util-strip, .site-header { display: none; }

  /* compact variant (50px): homepage, sports, racing, showdown, how it works */
  .m-util {
    display: flex; flex-direction: column; gap: 6px;
    background: var(--sand); box-shadow: inset 0 -1px 0 var(--line-2);
    padding: 8px 16px; min-height: 50px;
  }
  .m-util__row1 { display: flex; align-items: center; gap: 8px; height: 15px; }
  .m-util__row1 > * { flex-shrink: 0; }
  .m-util__badge { background: var(--ink); color: var(--paper); border-radius: 3px; padding: 1px 4px; font-family: var(--f-head); font-weight: 700; font-size: 10px; white-space: nowrap; }
  /* Chromium's Archivo Narrow runs ~9% wider than Figma's; dropping the .5px tracking restores the 118px box */
  .m-util__title { font-family: var(--f-head); font-weight: 700; font-size: 11px; line-height: 15px; letter-spacing: 0; color: var(--ink); white-space: nowrap; }
  .m-util__link { font-family: var(--f-body); font-weight: 600; font-size: 11px; color: var(--orange); text-decoration: underline; white-space: nowrap; margin-left: auto; }
  .m-util__row2 { display: flex; justify-content: space-between; align-items: flex-start; height: 13px; }
  .m-util__q { font-family: var(--f-body); font-size: 10px; color: var(--muted); white-space: nowrap; }
  .m-util__help { font-family: var(--f-head); font-weight: 700; font-size: 10px; color: var(--ink); white-space: nowrap; }

  /* full variant (104px): all other pages */
  .m-util--full { padding: 10px 16px; gap: 8px; min-height: 104px; box-shadow: inset 0 -1px 0 #ead6c3; }
  .m-util--full .m-util__row1 { height: 48px; }
  .m-util--full .m-util__badge { border-radius: 4px; padding: 2px 6px; font-size: 12px; color: var(--white); }
  .m-util--full .m-util__title { font-size: 12px; letter-spacing: .5px; white-space: normal; flex: 1 1 auto; }
  .m-util--full .m-util__link { font-size: 12px; margin-left: 0; }
  .m-util--full .m-util__row2 { height: 28px; align-items: center; }
  .m-util--full .m-util__q { font-size: 11px; white-space: normal; flex: 1 1 auto; max-width: 162px; }
  .m-util--full .m-util__help { font-family: var(--f-body); font-weight: 700; font-size: 11px; }

  .m-header {
    display: flex; justify-content: space-between; align-items: center;
    height: 56px; background: var(--bg); border-bottom: 1px solid var(--line); padding: 0 16px;
  }
  .m-header__brand { font-family: var(--f-head); font-weight: 700; font-size: 22px; letter-spacing: -.5px; color: var(--ink); }
  .m-header__right { display: flex; align-items: center; gap: 16px; }
  .m-header__login { font-family: var(--f-head); font-weight: 700; font-size: 13px; line-height: 18px; letter-spacing: .5px; color: var(--ink); white-space: nowrap; }
  .m-header__join { background: var(--ink); color: var(--paper); border-radius: 600px; padding: 6px 12px; font-family: var(--f-head); font-weight: 700; font-size: 12px; white-space: nowrap; }
  .m-header__menu { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
}

/* ==========================================================================
   Desktop bottom strips + footer
   ========================================================================== */
.help-strip {
  height: 72px; background: var(--bg); border-bottom: 1px solid var(--line);
  padding: 24px var(--gutter); display: flex; justify-content: space-between; align-items: center;
}
.help-strip__left { display: flex; align-items: center; gap: 24px; }
.help-strip__badge { background: var(--ink); color: var(--white); border-radius: 4px; padding: 4px 8px; font-family: var(--f-body); font-weight: 900; font-size: 12px; }
.help-strip__title { font-family: var(--f-head); font-weight: 700; font-size: 18px; line-height: 24px; letter-spacing: .5px; color: var(--ink); white-space: nowrap; }
.help-strip__phone { font-family: var(--f-body); font-weight: 800; font-size: 15px; color: var(--orange); white-space: nowrap; }
.help-strip__text { font-family: var(--f-body); font-size: 14px; color: var(--muted); white-space: nowrap; }

.betstop-strip {
  height: 71px; background: var(--ink); padding: 24px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
}
.betstop-strip__left { display: flex; align-items: center; gap: 16px; }
.betstop-strip__badge { background: var(--orange); color: var(--white); border-radius: 4px; padding: 4px 8px; font-family: var(--f-head); font-weight: 700; font-size: 11px; line-height: 15px; }
.betstop-strip__title { font-family: var(--f-body); font-weight: 700; font-size: 14px; color: var(--white); white-space: nowrap; }
.betstop-strip__text { font-family: var(--f-body); font-size: 13px; color: var(--line); opacity: .8; white-space: nowrap; }
.betstop-strip__link { font-family: var(--f-body); font-weight: 700; font-size: 13px; color: var(--yellow); white-space: nowrap; }

.payments-strip {
  height: 104px; background: var(--bg); border-bottom: 1px solid var(--line);
  padding: 32px var(--gutter); display: flex; justify-content: space-between; align-items: center;
}
.payments-strip__left { display: flex; align-items: center; gap: 30px; }
.payments-strip__label { font-family: var(--f-head); font-weight: 700; font-size: 12px; letter-spacing: 1px; color: var(--muted); white-space: nowrap; }
.payments-strip__logos { width: 300px; height: 40px; overflow: hidden; }
.payments-strip__logos img { width: 300px; height: 40px; object-fit: cover; }
.payments-strip__right { display: flex; align-items: center; gap: 12px; }
.payments-strip__badge { background: var(--orange); color: var(--white); border-radius: 4px; padding: 4px 8px; font-family: var(--f-body); font-weight: 900; font-size: 11px; white-space: nowrap; }
.payments-strip__text { font-family: var(--f-body); font-size: 13px; color: var(--muted); white-space: nowrap; }

.site-footer {
  position: relative; overflow: hidden; background: var(--ink); color: var(--white);
  padding: 80px var(--gutter) 48px; display: flex; flex-direction: column; gap: 64px;
}
.site-footer__watermark {
  position: absolute; left: -30px; top: 260px; width: 1440px; height: 176px; pointer-events: none; user-select: none;
  font-family: var(--f-head); font-weight: 700; font-size: 160px; color: var(--brown); opacity: .3; white-space: nowrap; overflow: hidden;
}
.site-footer__cols { position: relative; display: flex; gap: 48px; }
.site-footer__brand { width: 320px; flex: 0 0 320px; display: flex; flex-direction: column; gap: 16px; }
.site-footer__logo { font-family: var(--f-head); font-weight: 700; font-size: 24px; color: var(--white); white-space: nowrap; }
.site-footer__desc { font-family: var(--f-body); font-size: 13px; line-height: 1.6; color: var(--line); opacity: .7; }
.site-footer__col { flex: 1 1 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer__heading { font-family: var(--f-head); font-weight: 700; font-size: 15px; line-height: 20px; color: var(--white); }
.site-footer__col a { font-family: var(--f-body); font-size: 13px; color: var(--line); opacity: .7; white-space: nowrap; }
.site-footer__col a:hover { opacity: 1; }
.site-footer__line { position: relative; height: 1px; margin-bottom: -1px; background: var(--brown); }
.site-footer__meta { position: relative; display: flex; flex-direction: column; gap: 12px; }
.site-footer__legal { font-family: var(--f-body); font-size: 11px; line-height: 18px; color: var(--line); opacity: .5; }
.site-footer__copy { font-family: var(--f-body); font-size: 11px; color: var(--line); opacity: .5; }

/* ==========================================================================
   Mobile bottom strips + footer
   ========================================================================== */
.m-help, .m-betstop, .m-payments, .m-footer { display: none; }

@media (max-width: 767px) {
  .help-strip, .betstop-strip, .payments-strip, .site-footer { display: none; }

  .m-help { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px; background: var(--bg); min-height: 143px; }
  .m-help__row { display: flex; align-items: center; gap: 8px; }
  .m-help__badge { background: var(--ink); color: var(--paper); border-radius: 3px; padding: 2px 4px; font-family: var(--f-head); font-weight: 700; font-size: 12px; }
  .m-help__title { font-family: var(--f-head); font-weight: 700; font-size: 13px; line-height: 18px; color: var(--ink); }
  .m-help__phone { font-family: var(--f-head); font-weight: 700; font-size: 32px; color: var(--orange); }
  .m-help__text { font-family: var(--f-body); font-size: 12px; color: var(--muted); text-align: center; }

  .m-betstop { display: flex; flex-direction: column; gap: 12px; padding: 24px; background: var(--ink); min-height: 168px; }
  .m-betstop__row { display: flex; align-items: center; gap: 8px; }
  .m-betstop__badge { background: var(--orange); color: var(--paper); border-radius: 4px; padding: 4px 8px; font-family: var(--f-head); font-weight: 700; font-size: 12px; }
  .m-betstop__title { font-family: var(--f-head); font-weight: 700; font-size: 14px; line-height: 19px; color: var(--white); }
  .m-betstop__body { display: flex; flex-direction: column; gap: 4px; }
  .m-betstop__t1 { font-family: var(--f-body); font-size: 13px; color: var(--paper); }
  .m-betstop__t2 { font-family: var(--f-body); font-size: 12px; color: var(--sand); }
  .m-betstop__link { font-family: var(--f-head); font-weight: 700; font-size: 14px; line-height: 19px; color: var(--orange); align-self: flex-start; }

  .m-payments { display: flex; flex-direction: column; gap: 12px; padding: 24px; min-height: 143px; }
  .m-payments__label { font-family: var(--f-head); font-weight: 700; font-size: 12px; color: var(--muted); }
  .m-payments__logos { width: 280px; height: 38px; object-fit: contain; }
  .m-payments__row { display: flex; align-items: center; gap: 8px; }
  .m-payments__badge { background: var(--orange); color: var(--paper); border-radius: 4px; padding: 2px 6px; font-family: var(--f-head); font-weight: 700; font-size: 10px; white-space: nowrap; }
  .m-payments__text { font-family: var(--f-body); font-size: 11px; color: var(--muted); flex: 1 1 auto; }

  /* Figma frame is fixed at 720px: content ends at 692px, so the drawn bottom padding is 28px */
  .m-footer { display: flex; flex-direction: column; gap: 24px; padding: 32px 16px 28px; background: var(--ink); min-height: 720px; }
  .m-footer__brand { display: flex; flex-direction: column; gap: 12px; }
  .m-footer__logo { font-family: var(--f-head); font-weight: 700; font-size: 26px; letter-spacing: -.5px; color: var(--white); }
  .m-footer__desc { font-family: var(--f-body); font-size: 12px; line-height: 1.5; color: var(--sand); }
  .m-footer__groups { display: flex; flex-direction: column; gap: 16px; }
  .m-footer__group { display: flex; flex-direction: column; gap: 6px; }
  .m-footer__heading { font-family: var(--f-head); font-weight: 700; font-size: 13px; line-height: 18px; text-transform: uppercase; color: var(--white); }
  .m-footer__group a { font-family: var(--f-body); font-size: 13px; color: var(--line); }
  .m-footer__bottom { display: flex; flex-direction: column; gap: 16px; }
  .m-footer__legal { font-family: var(--f-body); font-size: 10px; line-height: 1.4; color: var(--sand); }
  .m-footer__meta { display: flex; flex-direction: column; gap: 4px; }
  .m-footer__badge { align-self: flex-start; background: #2d2017; color: var(--orange); border-radius: 4px; padding: 2px 6px; font-family: var(--f-head); font-weight: 700; font-size: 9px; }
  .m-footer__copy { font-family: var(--f-body); font-size: 11px; color: var(--sand); }
}

/* ==========================================================================
   Shared "Responsible gambling hub" (used on several pages)
   ========================================================================== */
.rg-hub { background: var(--sky); padding: 64px var(--gutter); display: flex; flex-direction: column; gap: 40px; }
.rg-hub__head { display: flex; flex-direction: column; gap: 8px; }
.rg-hub__title { font-family: var(--f-head); font-weight: 700; font-size: 32px; color: var(--ink); }
.rg-hub__sub { font-family: var(--f-body); font-size: 15px; color: var(--ink); opacity: .8; }
.rg-hub__grid { display: flex; gap: 20px; }
.rg-card { flex: 1 1 0; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.rg-card__title { font-family: var(--f-head); font-weight: 700; font-size: 18px; line-height: 24px; color: var(--ink); }
.rg-card__text { font-family: var(--f-body); font-size: 13px; line-height: 1.5; color: var(--muted); }
.rg-card__link { font-family: var(--f-body); font-weight: 700; font-size: 13px; color: var(--orange); }
@media (max-width: 767px) {
  .rg-hub { padding: 24px; gap: 20px; }
  .rg-hub__head { gap: 6px; }
  .rg-hub__title { font-size: 20px; text-transform: uppercase; }
  .rg-hub__sub { font-size: 13px; line-height: 1.4; color: var(--muted); opacity: 1; }
  .rg-hub__grid { flex-direction: column; gap: 12px; }
  .rg-card { background: var(--white); border-color: var(--line-2); border-radius: 8px; padding: 16px; gap: 12px; }
  .rg-card__body { display: flex; flex-direction: column; gap: 4px; }
  .rg-card__title { font-size: 15px; line-height: 20px; text-transform: uppercase; }
  .rg-card__text { line-height: 1.4; }
  .rg-card__link { font-family: var(--f-head); line-height: 18px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 4px; }
}

/* ==========================================================================
   Generic form controls (design: 1px ink/20% border, radius 4, h50)
   ========================================================================== */
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-family: var(--f-body); font-weight: 600; font-size: 13px; color: var(--ink); }
.field__label .req { color: var(--orange); }
.input {
  display: flex; align-items: center; gap: 8px; height: 50px; padding: 0 16px;
  background: var(--bg); border: 1px solid rgba(28, 20, 14, .2); border-radius: 4px;
  font-family: var(--f-body); font-size: 14px; color: var(--ink);
}
.input input, .input select { flex: 1 1 auto; min-width: 0; height: 100%; font-family: var(--f-body); font-size: 14px; color: var(--ink); background: transparent; }
.input select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.input.is-invalid { border-color: var(--orange); }
.field__error { font-family: var(--f-body); font-size: 11px; color: var(--orange); display: none; }
.field.has-error .field__error { display: block; }
.field.has-error .input { border-color: var(--orange); }

/* Toggle switch (cookie consent) */
.toggle { position: relative; width: 44px; height: 24px; border-radius: 12px; background: var(--sand); padding: 2px; display: flex; align-items: center; transition: background-color .2s ease; flex: 0 0 auto; }
.toggle__handle { width: 20px; height: 20px; border-radius: 50%; background: var(--paper); box-shadow: 0 1px 2px rgba(28, 20, 14, .13); transition: transform .2s ease; }
.toggle.is-on { background: var(--orange); }
.toggle.is-on .toggle__handle { transform: translateX(20px); }

/* Checkbox */
.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.check__box { flex: 0 0 20px; width: 20px; height: 20px; border: 1.5px solid var(--ink); border-radius: 2px; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.check__box svg { display: none; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check input:checked + .check__box { background: var(--ink); }
.check input:checked + .check__box svg { display: block; }
.check__text { font-family: var(--f-body); font-size: 13px; line-height: 1.5; color: var(--ink); }
.check.has-error .check__box { border-color: var(--orange); }

/* Odds buttons shared across sportsbook pages */
.odds-btn {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  height: 43px; padding: 12px; border-radius: 6px; background: var(--bg); border: 1px solid var(--line);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.odds-btn__name { font-family: var(--f-head); font-weight: 700; font-size: 14px; line-height: 19px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.odds-btn__price { font-family: var(--f-body); font-weight: 800; font-size: 14px; color: var(--orange); white-space: nowrap; }
.odds-btn.is-selected { background: var(--orange); border-color: var(--orange); }
.odds-btn.is-selected .odds-btn__name, .odds-btn.is-selected .odds-btn__price { color: var(--white); }

/* ==========================================================================
   Line-height normalisation: Figma text-box heights for Archivo Narrow differ
   from Chromium's "normal" at some sizes. Use these helpers (or explicit px)
   for single-line Archivo Narrow text: 11→15, 13→18, 14→19, 15→20, 18→24, 44→59.
   Geist 15px → 20px.
   ========================================================================== */
.lh-an-11 { line-height: 15px; } .lh-an-13 { line-height: 18px; } .lh-an-14 { line-height: 19px; }
.lh-an-15 { line-height: 20px; } .lh-an-18 { line-height: 24px; } .lh-an-44 { line-height: 59px; }
.lh-g-15 { line-height: 20px; }

/* ==========================================================================
   Intermediate widths (768–1199px): the design only defines 1440 and 390.
   Keep the desktop structure but let the shell compress instead of
   overflowing horizontally.
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1199px) {
  :root { --gutter: 32px; }
  .header-capsule { padding: 12px 20px; }
  .main-nav { gap: 20px; }
  .user-actions { gap: 16px; }
  .brand { font-size: 24px; }
  .help-strip, .betstop-strip, .payments-strip { height: auto; min-height: 0; flex-wrap: wrap; gap: 12px 24px; }
  .help-strip__left, .betstop-strip__left, .payments-strip__left, .payments-strip__right { flex-wrap: wrap; row-gap: 8px; }
  .help-strip__text, .betstop-strip__text, .betstop-strip__title, .payments-strip__text { white-space: normal; }
  .site-footer__cols { flex-wrap: wrap; row-gap: 32px; }
  .site-footer__brand { flex-basis: 100%; width: auto; }
  .site-footer__col { flex: 1 1 160px; }
  .site-footer__legal, .site-footer__copy { white-space: normal; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .user-actions__links { display: none; }
}
