@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1a2018;
  --ink2: #222b20;
  --ink3: #2c3829;
  --ink4: #364433;
  --green: #4a7c59;
  --green2: #5a9468;
  --sage: #7aaa89;
  --sand: #d4b896;
  --sand2: #c9a87e;
  --terra: #b85c38;
  --terra2: #d47355;
  --cream: #f0e8d8;
  --cream2: #e8dcc8;
  --muted: rgba(240, 232, 216, 0.55);
  --muted2: rgba(240, 232, 216, 0.3);
  --border: rgba(74, 124, 89, 0.25);
  --border2: rgba(74, 124, 89, 0.5);
  --red: #c0392b;
  --blue: #2980b9;
  --radius: 3px;
  --radius-lg: 6px;
  --nav-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav__logo-leaf {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex: 1;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition:
    color 0.2s,
    background 0.2s;
  letter-spacing: 0.3px;
}
.nav__links a:hover {
  color: var(--cream);
  background: var(--ink3);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: all 0.2s;
  border: none;
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--cream);
}
.btn--outline:hover {
  background: var(--ink3);
  border-color: var(--sage);
}
.btn--primary {
  background: var(--green);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--green2);
  transform: translateY(-1px);
}

.nav__basket {
  position: relative;
  background: var(--ink3);
  border: 1.5px solid var(--border);
  color: var(--cream);
  font-size: 16px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.nav__basket:hover {
  border-color: var(--sage);
  background: var(--ink4);
}
.basket-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--terra);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
}

.ticker {
  background: var(--green);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}
.ticker__label {
  background: var(--ink);
  color: var(--cream);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
  border-right: 2px solid var(--terra);
}
.ticker__track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 55s linear infinite;
  white-space: nowrap;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  border-right: 1px solid rgba(26, 32, 24, 0.2);
}
.ticker__item .odds {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  background: rgba(26, 32, 24, 0.15);
  padding: 2px 6px;
  border-radius: 2px;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink2);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--terra);
}
.hero__title {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--sand);
}
.hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__ctas .btn--hero {
  font-size: 15px;
  padding: 12px 28px;
  background: var(--terra);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.hero__ctas .btn--hero:hover {
  background: var(--terra2);
  transform: translateY(-1px);
}
.hero__ctas .btn--ghost {
  font-size: 15px;
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--cream);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s;
}
.hero__ctas .btn--ghost:hover {
  background: var(--ink3);
}

.hero__promo {
  background: var(--ink3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero__promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--sand));
}
.hero__promo-badge {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid var(--terra);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.hero__promo-title {
  font-family: "Libre Baskerville", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero__promo-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 18px;
}
.hero__promo-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__promo-feature li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cream2);
  list-style: none;
}
.hero__promo-feature li::before {
  content: "✦";
  color: var(--sage);
  font-size: 10px;
  flex-shrink: 0;
}
.hero__promo .btn--full {
  width: 100%;
  padding: 13px;
  font-size: 14px;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.hero__promo .btn--full:hover {
  background: var(--green2);
}
.hero__promo-terms {
  text-align: center;
  font-size: 11px;
  color: var(--muted2);
  margin-top: 8px;
}

.sport-bar {
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.sport-bar::-webkit-scrollbar {
  display: none;
}
.sport-bar__inner {
  display: flex;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 2px;
}
.sport-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.sport-btn:hover {
  color: var(--cream);
  background: var(--ink3);
}
.sport-btn.active {
  color: var(--cream);
  border-bottom-color: var(--terra);
}
.sport-btn i {
  font-size: 13px;
}

.markets {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 32px;
}
.markets__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.markets__title {
  font-family: "Libre Baskerville", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
}
.markets__title span {
  color: var(--sage);
  font-size: 14px;
  font-family: "Space Mono", monospace;
  font-weight: 400;
  margin-left: 10px;
}
.markets__view-all {
  font-size: 12px;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2px;
}

.match-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.2s,
    background 0.2s;
  display: flex;
  flex-direction: column;
}
.match-card:hover {
  border-color: var(--border2);
  background: var(--ink3);
}

.match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--ink3);
  border-bottom: 1px solid var(--border);
}
.match-league {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.match-time {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: var(--muted2);
}
.match-live-badge {
  background: var(--terra);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 2px;
  text-transform: uppercase;
  animation: pulse-live 1.8s ease-in-out infinite;
}
@keyframes pulse-live {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.match-body {
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.match-team-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.match-team {
  display: flex;
  align-items: center;
  gap: 10px;
}
.match-team-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  flex: 1;
}
.match-score {
  font-family: "Space Mono", monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--sand);
  min-width: 20px;
  text-align: right;
}
.match-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.match-vs {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: var(--muted2);
  text-align: center;
  min-width: 20px;
}

.match-odds-row {
  display: flex;
  gap: 6px;
  padding: 0 14px 14px;
}
.odd-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 6px;
  background: var(--ink4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.18s;
}
.odd-btn:hover {
  border-color: var(--green2);
  background: var(--ink3);
}
.odd-btn.selected {
  background: var(--green);
  border-color: var(--green2);
}
.odd-label {
  font-family: "Source Sans 3", sans-serif;
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.odd-val {
  font-family: "Space Mono", monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--sand);
}
.odd-btn.selected .odd-val {
  color: var(--cream);
}

.promo-banner {
  background: linear-gradient(120deg, var(--ink3) 0%, var(--ink4) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: "BUSHBET";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Libre Baskerville", serif;
  font-size: 180px;
  font-weight: 700;
  color: rgba(74, 124, 89, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
}
.promo-banner__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.promo-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.promo-card:hover {
  border-color: var(--border2);
}
.promo-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--terra);
}
.promo-card:nth-child(2) .promo-card__accent {
  background: var(--green);
}
.promo-card:nth-child(3) .promo-card__accent {
  background: var(--sand2);
}
.promo-card__num {
  font-family: "Libre Baskerville", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--ink4);
  line-height: 1;
  margin-bottom: 8px;
}
.promo-card__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.faq {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 32px;
}
.faq__header {
  margin-bottom: 36px;
  text-align: center;
}
.faq__eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: var(--sage);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.faq__title {
  font-family: "Libre Baskerville", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--cream);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink2);
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--border2);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  gap: 12px;
}
.faq-q i {
  font-size: 12px;
  color: var(--sage);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q i {
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

.betslip-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 32, 24, 0.5);
  backdrop-filter: blur(4px);
}
.betslip-overlay.open {
  display: block;
}
.betslip {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--ink2);
  border-left: 1px solid var(--border2);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.betslip.open {
  right: 0;
}
.betslip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--ink3);
}
.betslip__title {
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}
.betslip__close {
  background: var(--ink4);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.2s;
}
.betslip__close:hover {
  background: var(--ink);
}
.betslip__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.betslip__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--muted2);
  font-size: 14px;
  text-align: center;
}
.betslip__empty i {
  font-size: 36px;
  color: var(--border2);
}
.betslip-item {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 10px;
  position: relative;
}
.betslip-item__sport {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.betslip-item__match {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.betslip-item__pick {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.betslip-item__odds {
  font-family: "Space Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--sand);
}
.betslip-item__remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--muted2);
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.betslip-item__remove:hover {
  color: var(--terra);
}
.betslip-item__stake {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.betslip-item__stake label {
  font-size: 11px;
  color: var(--muted2);
  font-weight: 600;
  white-space: nowrap;
}
.betslip-item__stake input {
  flex: 1;
  background: var(--ink4);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: "Space Mono", monospace;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: var(--radius);
  width: 100%;
}
.betslip-item__stake input:focus {
  outline: none;
  border-color: var(--green2);
}
.betslip__foot {
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  background: var(--ink3);
}
.betslip__totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.betslip__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.betslip__total-row span:first-child {
  font-size: 13px;
  color: var(--muted);
}
.betslip__total-row span:last-child {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--sand);
}
.betslip__cta {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--cream);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.betslip__cta:hover {
  background: var(--green2);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 32, 24, 0.7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--ink2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  padding: 36px;
  position: relative;
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ink3);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal__logo {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal__logo-leaf {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50% 0 50% 0;
}
.modal__subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.modal__title {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}
.form-field {
  margin-bottom: 14px;
}
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-field input,
.form-field select {
  width: 100%;
  background: var(--ink3);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--green2);
}
.form-field input::placeholder {
  color: var(--muted2);
}
.form-field select {
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.modal__submit {
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: var(--cream);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  margin-top: 6px;
  letter-spacing: 0.3px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.modal__submit:hover {
  background: var(--green2);
  transform: translateY(-1px);
}
.modal__switch {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.modal__switch a {
  color: var(--sage);
  font-weight: 600;
  cursor: pointer;
}
.modal__switch a:hover {
  color: var(--green2);
}
.modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 0;
}
.modal__success i {
  font-size: 48px;
  color: var(--green2);
}
.modal__success h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  color: var(--cream);
}
.modal__success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.modal__checkbox input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--green);
}
.modal__checkbox label {
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}

.age-gate {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate__box {
  max-width: 420px;
  text-align: center;
  padding: 48px 36px;
  background: var(--ink2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
}
.age-gate__icon {
  font-size: 52px;
  color: var(--terra);
  margin-bottom: 16px;
}
.age-gate__title {
  font-family: "Libre Baskerville", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.age-gate__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.age-gate__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.age-gate__btns .btn--yes {
  padding: 12px 32px;
  background: var(--green);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
}
.age-gate__btns .btn--no {
  padding: 12px 32px;
  background: var(--ink3);
  border: 1.5px solid var(--border);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
}

.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--ink2);
  border-top: 1px solid var(--border2);
  padding: 16px 32px;
}
.cookie-bar.show {
  display: block;
}
.cookie-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-bar__text {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.cookie-bar__text a {
  color: var(--sage);
  text-decoration: underline;
}
.cookie-bar__actions {
  display: flex;
  gap: 10px;
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(26, 32, 24, 0.8);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal__box {
  background: var(--ink2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal__title {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.cookie-modal__sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.cookie-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-toggle-item:last-of-type {
  border-bottom: none;
}
.cookie-toggle-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.cookie-toggle-info p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--ink4);
  border: 1px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--muted);
  border-radius: 50%;
  transition:
    transform 0.2s,
    background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--green);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
  background: #fff;
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal__btns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}

.footer,
.footer .top-content,
.rg-boxes-section,
.copyright-section {
  background-color: #f5f5f5 !important;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__promo {
    max-width: 440px;
  }
  .promo-banner__inner {
    grid-template-columns: 1fr 1fr;
  }
  .faq__grid {
    grid-template-columns: 1fr;
  }
  .match-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__inner {
    padding: 0 16px;
  }
  .hero__inner {
    padding: 48px 16px;
  }
  .markets {
    padding: 32px 16px;
  }
  .promo-banner {
    padding: 32px 16px;
  }
  .promo-banner__inner {
    grid-template-columns: 1fr;
  }
  .faq {
    padding: 40px 16px;
  }
  .cookie-bar {
    padding: 16px;
  }
  .betslip {
    width: 100vw;
  }
}

body.betslip-open {
  overflow: hidden;
}

.page-wrap {
  background: var(--ink);
  min-height: 100vh;
}

.faq {
  background: var(--ink);
}
.promo-banner {
  background: linear-gradient(120deg, var(--ink3) 0%, var(--ink4) 100%);
}
.markets {
  background: var(--ink);
}

html,
body {
  background: var(--ink) !important;
}
