:root {
  color: #172033;
  background: #f3efe7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  --ink: #172033;
  --paper: #fffaf0;
  --coal: #111827;
  --panel: #ffffff;
  --line: #d9cdbb;
  --muted: #687386;
  --sky: #77e0ff;
  --lime: #c7ff6b;
  --amber: #f7c948;
  --rose: #f97373;
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.16);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(
    circle at 10% 0%,
    #e2fbff 0,
    #f3efe7 30%,
    #efe7dc 100%
  );
  color: var(--ink);
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(119, 224, 255, 0.8);
  outline-offset: 3px;
}
.fas {
  width: 1.1em;
  text-align: center;
  display: inline-block;
}
.header {
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}
.headerInner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 1760px;
  margin: 0 auto;
  min-height: 82px;
  padding: 12px 22px;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 205px;
}
.logoImage {
  width: 205px;
  max-height: 54px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 20px rgba(17, 24, 39, 0.18));
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #314053;
  font-weight: 800;
  font-size: 0.9rem;
}
.nav a:hover,
.nav a.active {
  background: var(--coal);
  color: white;
}
.headerActions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.oddsSelect {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 800;
  color: #344256;
}
.oddsSelect select {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}
.primaryButton,
.ghostButton,
.goldButton,
.textButton {
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  padding: 11px 17px;
}
.primaryButton {
  background: linear-gradient(135deg, var(--coal), #233552);
  color: #fff;
  box-shadow: 0 12px 25px rgba(17, 24, 39, 0.18);
}
.primaryButton:hover {
  transform: translateY(-1px);
}
.ghostButton {
  background: #fff;
  border: 1px solid var(--line);
  color: #243044;
}
.goldButton {
  background: var(--lime);
  color: #102033;
}
.textButton {
  background: transparent;
  color: #334155;
  text-decoration: underline;
}
.full {
  width: 100%;
  justify-content: center;
}
.noticeBar {
  background: #111827;
  color: #fff;
  text-align: center;
  padding: 9px 18px;
  font-size: 0.95rem;
}
.noticeBar strong {
  background: var(--lime);
  color: #111827;
  border-radius: 8px;
  padding: 2px 6px;
  margin-right: 6px;
}
.mobileOnly {
  display: none;
}
.iconButton {
  border: 0;
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  color: var(--ink);
}
.appShell {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr) 330px;
  gap: 22px;
  max-width: 1760px;
  margin: 0 auto;
  padding: 24px;
}
.sidebar,
.betSlip,
.heroPromo,
.leagueBlock,
.promoCard,
.legalPage section,
.legalHeader {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}
.sidebar {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: 18px;
  max-height: calc(100vh - 140px);
  overflow: auto;
}
.searchBox {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 11px 13px;
}
.searchBox input {
  border: 0;
  background: transparent;
  outline: 0;
  width: 100%;
}
.sidebar h2 {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #667085;
  margin: 20px 0 10px;
}
.linkList,
.sportList {
  display: grid;
  gap: 8px;
}
.linkList button,
.sportList button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #314053;
  text-align: left;
  padding: 11px 12px;
  font-weight: 800;
}
.linkList button:hover,
.sportList button:hover,
.linkList button.active,
.sportList button.active {
  background: #111827;
  color: #fff;
}
.starOn {
  color: var(--amber);
}
.content {
  min-width: 0;
}
.heroPromo {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 18px;
  overflow: hidden;
  padding: 34px;
  background: center/cover url("../assets/sportsbook-hero.png");
  color: #fff;
}
.heroCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.eyebrow,
.boostBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  border-radius: 999px;
  background: rgba(199, 255, 107, 0.14);
  border: 1px solid rgba(199, 255, 107, 0.45);
  color: #eaffb7;
  padding: 7px 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.heroCopy h1 {
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  line-height: 0.98;
  margin: 16px 0;
}
.heroCopy p {
  color: #d9e5ef;
  max-width: 640px;
  font-size: 1.08rem;
  margin-left: auto;
  margin-right: auto;
}
.heroArt {
  min-height: 340px;
  border-radius: 26px;
  background: center/cover url("../assets/sportsbook-hero.png");
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.promoGrid,
.promoCards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.promoCard {
  padding: 22px;
  transition: 0.18s ease;
}
.promoCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.promoCard h3 {
  margin: 8px 0;
  font-size: 1.2rem;
}
.sectionHeader {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 14px;
}
.sectionHeader h2 {
  margin: 0;
  font-size: 1.65rem;
}
.filters,
.tabs,
.tabDeck {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filters button,
.tabs button,
.tabDeck button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
}
.filters button.active,
.tabs button.active,
.tabDeck button.active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.oddsBoard {
  display: grid;
  gap: 18px;
}
.sportSection {
  display: grid;
  gap: 14px;
}
.leagueBlock {
  overflow: hidden;
}
.leagueRow {
  display: grid;
  grid-template-columns: 120px 1fr repeat(3, 116px);
  gap: 10px;
  align-items: center;
  padding: 13px 16px;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
}
.leagueRow:first-child {
  border-top: 0;
}
.leagueTag {
  font-weight: 900;
  color: #475467;
}
.gameTime {
  color: #667085;
  font-size: 0.9rem;
}
.matchCell strong {
  display: block;
}
.oddsButton {
  border: 1px solid var(--line);
  background: #f9fafb;
  border-radius: 16px;
  padding: 10px;
  font-weight: 900;
}
.oddsButton:hover,
.oddsButton.selected {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.tableScroller {
  overflow: auto;
}
.legalPage {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.legalHeader,
.legalPage section {
  padding: 26px;
}
.legalHeader {
  background: linear-gradient(135deg, #111827, #334155);
  color: #fff;
}
.legalHeader span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
}
.legalHeader h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  margin: 16px 0;
}
.legalHeader p {
  color: #dbe7f1;
}
.legalPage h2 {
  margin: 0 0 10px;
}
.legalPage p {
  color: #3f4b5d;
}
.betSlip {
  position: sticky;
  top: 118px;
  align-self: start;
  min-height: 320px;
  max-height: calc(100vh - 140px);
  overflow: auto;
}
.betSlipHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  padding: 18px 20px;
}
.betSlipHeader h2 {
  margin: 0;
}
.betSlipHeaderActions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.betSlipHeaderActions span {
  background: #111827;
  color: #fff;
  border-radius: 999px;
  min-width: 28px;
  min-height: 28px;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.mobileCloseButton {
  display: none;
}
.emptySlip {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 52px 24px;
  color: #667085;
}
.emptySlip .fas {
  font-size: 1.8rem;
  color: #111827;
}
.slipItem {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}
.slipItemTop {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.removeSelection {
  border: 0;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 10px;
}
.stakeField {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
}
.stakeField input,
.authModal input {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  width: 100%;
}
.slipSummary {
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}
.summaryRow {
  display: flex;
  justify-content: space-between;
}
.modalBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.62);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.authModal {
  width: min(520px, 100%);
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
}
.authModal h2 {
  margin-top: 0;
}
.authModal form {
  display: grid;
  gap: 14px;
}
.authModal label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: #344256;
}
.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkRow {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  font-weight: 700 !important;
}
.checkRow input {
  width: auto !important;
  margin-top: 3px;
}
.closeButton {
  position: absolute;
  right: 16px;
  top: 16px;
  border: 0;
  background: #111827;
  color: #fff;
  border-radius: 999px;
  width: 38px;
  height: 38px;
}
.agePlaque {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 355px;
  background: #111827;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 13px 15px;
  box-shadow: var(--shadow);
}
.agePlaque strong {
  background: var(--lime);
  color: #111827;
  border-radius: 10px;
  padding: 3px 7px;
}
.cookiePlaque {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 46;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  max-width: 620px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.cookiePlaque p {
  margin: 0;
  color: #475467;
}
.cookiePlaque button {
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  padding: 10px 15px;
  font-weight: 900;
}
.hidden {
  display: none !important;
}
.footer {
  background: #111827;
  color: #e5e7eb;
  margin-top: 28px;
}
.footerInner {
  max-width: 1760px;
  margin: 0 auto;
  padding: 30px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 22px;
  align-items: start;
}
.footerBrand p {
  color: #cbd5e1;
}
.footerNav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footerNav a {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 9px 12px;
}
.footerNav a.active {
  background: #fff;
  color: #111827;
}
.paymentRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.paymentRow span,
.footerLabel {
  display: inline-flex;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 10px;
  font-weight: 900;
}
.footerMeta {
  display: grid;
  gap: 10px;
}
.footerSupport {
  color: #cbd5e1;
}
.mobileSlipButton {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 42;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: #111827;
  font-weight: 900;
  padding: 13px 18px;
  box-shadow: var(--shadow);
}

body.ageLocked {
  overflow: hidden;
}
.ageGateBackdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(
      circle at 35% 20%,
      rgba(119, 224, 255, 0.25),
      transparent 34%
    ),
    rgba(17, 24, 39, 0.86);
  backdrop-filter: blur(12px);
}
.ageGateCard {
  width: min(520px, 100%);
  background: #fffaf0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}
.ageGateIcon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111827;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}
.ageGateIcon strong {
  background: var(--lime);
  color: #111827;
  border-radius: 10px;
  padding: 3px 8px;
}
.ageGateCard h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
  margin: 18px 0 10px;
}
.ageGateCard p {
  color: #475467;
}
.finePrint {
  font-size: 0.88rem;
  color: #667085;
}
.successMessage {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: #eefbe7;
  border: 1px solid #b9e59e;
  color: #172033;
}
.successMessage h3 {
  margin: 0;
  font-size: 1.35rem;
}
.successMessage p {
  margin: 0;
}
.cookiePlaque {
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.cookiePlaque.hidden {
  display: grid !important;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.betSlip.betSlipOpen {
  transform: translateX(0);
}

.promoGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  margin: 20px 0 22px;
  align-items: stretch;
}
.promoCards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
}
.promoCard {
  min-width: 0;
}
.heroPromo {
  min-width: 0;
}
.content {
  overflow: hidden;
}
.leagueBlock {
  padding: 0 0 8px;
}
.leagueRow {
  display: block;
  padding: 16px 20px 6px;
  border-top: 0;
  font-weight: 900;
  color: #152033;
}
.tableScroller {
  overflow-x: auto;
  padding: 0 18px 18px;
}
table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0 9px;
}
thead th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #617083;
  text-align: center;
  padding: 6px 8px;
}
thead th:first-child {
  text-align: left;
}
tbody tr {
  background: #f8fafc;
}
tbody td {
  padding: 8px;
  vertical-align: middle;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
tbody td:first-child {
  border-left: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px 0 0 18px;
}
tbody td:last-child {
  border-right: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0 18px 18px 0;
}
.matchCell {
  min-width: 210px;
}
.matchCell strong {
  display: block;
  line-height: 1.15;
}
.gameTime {
  display: block;
  margin-bottom: 4px;
}
.oddsButton {
  width: 100%;
  min-width: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  white-space: nowrap;
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
}
.oddsButton span {
  font-size: 0.82rem;
  color: #475467;
}
.oddsButton strong {
  font-size: 1rem;
}
.oddsButton:hover span,
.oddsButton.selected span {
  color: #e5e7eb;
}

.content {
  min-width: 0;
  width: 100%;
}
.promoGrid {
  width: 100%;
}
.heroPromo {
  border-radius: 30px;
}
.heroCopy {
  min-width: 0;
}
.goldButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}
.goldButton:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(199, 255, 107, 0.25);
}
.quickMarketPanel {
  margin: 22px 0;
  display: grid;
  gap: 16px;
}
.quickMarketHeader {
  background: linear-gradient(135deg, #111827, #233552);
  color: #fff;
  border-radius: 28px;
  padding: 22px 24px;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.1);
}
.quickMarketHeader span {
  display: inline-flex;
  border: 1px solid rgba(199, 255, 107, 0.45);
  background: rgba(199, 255, 107, 0.14);
  color: #eaffb7;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quickMarketHeader h2 {
  margin: 10px 0 4px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}
.quickMarketHeader p {
  margin: 0;
  color: #dbe7f1;
}
.quickMarketCards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.quickMarketCard {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
  cursor: pointer;
}
.quickMarketCard:hover,
.quickMarketCard.active {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.14);
  border-color: #111827;
}
.quickMarketCard > div,
.promoCard > div {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.quickMarketCard h3,
.promoCard h3 {
  line-height: 1.2;
}
.quickMarketCard p,
.promoCard p {
  color: #516075;
  margin: 0.55rem 0;
}
.quickMarketCard strong,
.promoCard strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3f7ec;
  border: 1px solid #d9f2aa;
  padding: 7px 12px;
  color: #111827;
}
.promoCard.active strong,
.quickMarketCard.active strong {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.boostBadge {
  color: #2c3a4f;
  background: #eefbd8;
  border-color: #c7ff6b;
}
.heroPromo .boostBadge,
.heroPromo .eyebrow {
  color: #eaffb7;
}
.leagueTag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
}
.betSlip {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
.betSlipHeader {
  background: #fff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  position: sticky;
  top: 0;
  z-index: 1;
}
.selectionCard {
  position: relative;
  margin: 14px 16px 0;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, #f8fafc, #fff);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}
.selectionCard span {
  display: block;
  color: #64748b;
  font-size: 0.86rem;
  padding-right: 36px;
}
.selectionCard p {
  margin: 8px 0;
  color: #172033;
  line-height: 1.28;
}
.selectionCard p strong {
  font-size: 1rem;
}
.selectionCard b {
  display: inline-flex;
  margin-top: 2px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  padding: 6px 11px;
}
.removeSelection {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 999px;
}
.removeSelection:hover {
  background: #fecaca;
}
.slipControls {
  padding: 16px;
  margin: 0 0 12px;
  display: grid;
  gap: 12px;
}
.stakeField {
  padding: 0;
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}
.stakeField input {
  height: 48px;
  border-radius: 16px;
  background: #fff;
}
.payout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
}
.payout span {
  color: #64748b;
}
.payout strong {
  font-size: 1.15rem;
  color: #111827;
}
.slipActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.slipActions .ghostButton,
.slipActions .primaryButton {
  width: 100%;
  padding: 12px 14px;
}
.betStatus {
  margin: 0;
  color: #0f766e;
  font-weight: 800;
}
.betSlip .finePrint {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}
.emptySlip {
  min-height: 240px;
}
.emptySlip p {
  margin: 0.5rem 0 0;
}
.mobileSlipButtonHidden {
  display: none !important;
}

.sidebar button,
.tabs button,
.filters button,
.promoCard,
.quickMarketCard,
.oddsButton,
.goldButton {
  cursor: pointer;
  user-select: none;
}
.sportList button,
.linkList button {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  margin: 3px 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  color: #334155;
  font-weight: 900;
  text-align: left;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease,
    border-color 0.16s ease;
}
.sportList button span,
.linkList button span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.linkList button {
  justify-content: flex-start;
}
.sportList button:hover,
.linkList button:hover {
  background: #eef3f7;
  border-color: #d8e2ea;
  transform: translateX(2px);
}
.sportList button.active,
.linkList button.active {
  background: #111827 !important;
  color: #fff !important;
  border-color: #111827;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.16);
}
.sportList button.active i,
.linkList button.active i {
  color: #fff;
}
.sportList .fa-star {
  margin-left: auto;
  opacity: 0.9;
}
.sportList .fa-star.starOn {
  color: #c7ff6b;
}
.generatedSportSection {
  animation: sectionIn 0.18s ease both;
}
@keyframes sectionIn {
  from {
    opacity: 0.2;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.sectionHeader {
  scroll-margin-top: 150px;
}
.oddsBoard {
  scroll-margin-top: 150px;
}
.betSlip {
  border: 1px solid rgba(17, 24, 39, 0.1);
}
.selectionCard {
  display: grid;
  gap: 5px;
}
.selectionCard p {
  overflow-wrap: anywhere;
}
.betSlipHeader h2 {
  margin: 0;
}
.mobileCloseButton {
  border: 0;
}
.quickMarketPanel {
  scroll-margin-top: 150px;
}

.betSlip {
  display: flex;
  flex-direction: column;
}
.betSlipHeader {
  flex-shrink: 0;
}
.slipScrollArea {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.sidebarToggleBtn {
  display: none;
}

@media (max-width: 1500px) {
  .headerInner {
    gap: 10px;
    padding-inline: 14px;
  }
  .logo {
    min-width: 176px;
  }
  .logoImage {
    width: 176px;
  }
  .nav {
    gap: 3px;
  }
  .nav a {
    font-size: 0.82rem;
    padding: 8px 9px;
  }
  .headerActions {
    gap: 7px;
  }
  .primaryButton,
  .ghostButton,
  .goldButton,
  .textButton {
    padding: 10px 14px;
  }
  .appShell {
    grid-template-columns: 245px minmax(0, 1fr) 300px;
    gap: 18px;
    padding: 18px;
  }
  .heroPromo {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .heroArt {
    min-height: 250px;
  }
  .promoGrid,
  .promoCards {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }
  .leagueRow {
    grid-template-columns: 105px minmax(190px, 1fr) repeat(3, 92px);
  }
  .promoGrid {
    grid-template-columns: 1fr;
  }
  .promoCards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .heroPromo {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
  .heroArt {
    min-height: 300px;
  }
  .content {
    overflow: visible;
  }
  .quickMarketCards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .appShell {
    grid-template-columns: 245px minmax(0, 1fr);
  }
  .betSlip {
    position: fixed;
    right: 16px;
    top: 110px;
    bottom: 16px;
    width: min(380px, calc(100vw - 32px));
    z-index: 60;
    transform: translateX(115%);
    transition: 0.2s;
  }
  .mobileSlipButton,
  .mobileCloseButton {
    display: inline-flex;
  }
  .heroPromo {
    grid-template-columns: 1fr;
  }
  .heroCopy h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
  }
  .headerInner {
    grid-template-columns: auto auto 1fr;
  }
  .headerActions {
    justify-content: end;
  }
  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .nav.navOpen {
    display: flex;
  }
  .mobileOnly {
    display: inline-flex;
  }
  .betSlip {
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.28);
  }
  .betSlip:not(.betSlipOpen) {
    pointer-events: none;
  }
  .betSlip.betSlipOpen {
    transform: translateX(0);
  }
  .mobileSlipButton {
    display: inline-flex !important;
  }
  .betSlip.betSlipOpen {
    pointer-events: auto;
  }
  .betSlipHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobileCloseButton {
    display: inline-flex !important;
  }
  .appShell {
    grid-template-columns: 230px minmax(0, 1fr);
  }
  .betSlip {
    position: fixed;
    right: 16px;
    top: 110px;
    bottom: 16px;
    width: min(360px, calc(100vw - 32px));
    z-index: 60;
    transform: translateX(115%);
    transition: 0.2s;
  }
  .slipOpen .betSlip {
    transform: translateX(0);
  }
  .mobileSlipButton,
  .mobileCloseButton {
    display: inline-flex;
  }
  .heroPromo {
    grid-template-columns: 1fr;
  }
  .headerInner {
    grid-template-columns: auto auto 1fr;
  }
  .headerActions {
    justify-content: end;
  }
  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .nav.navOpen {
    display: flex;
  }
  .mobileOnly {
    display: inline-flex;
  }
  .cookiePlaque {
    left: 18px;
    grid-template-columns: auto 1fr;
  }
  .cookiePlaque button {
    grid-column: 1/-1;
  }
  .agePlaque {
    display: none;
  }
}

@media (max-width: 1100px) {
  .promoCards {
    grid-template-columns: 1fr;
  }
  .heroPromo {
    grid-template-columns: 1fr;
  }
  .heroArt {
    min-height: 240px;
  }
}

@media (max-width: 980px) {
  .appShell {
    display: block;
  }
  .sidebar {
    position: static;
    max-height: none;
    margin-bottom: 16px;
  }
  .promoGrid,
  .promoCards {
    grid-template-columns: 1fr;
  }
  .cookiePlaque {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    grid-template-columns: auto 1fr;
  }
  .cookiePlaque button {
    grid-column: 1/-1;
  }
  .agePlaque {
    display: none;
  }
  .quickMarketCards {
    grid-template-columns: 1fr;
  }
  .selectionCard {
    margin-inline: 12px;
  }
  .slipActions {
    grid-template-columns: 1fr;
  }
  .heroPromo {
    padding: 24px;
  }
  .heroCopy h1 {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }
  .sidebar {
    overflow: hidden;
    max-height: 600px;
    transition:
      max-height 0.3s ease,
      opacity 0.28s ease,
      padding 0.28s ease,
      margin 0.28s ease;
    opacity: 1;
  }
  .sidebar.sidebarCollapsed {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    opacity: 0;
    pointer-events: none;
  }
  .sidebarToggleBtn {
    display: inline-flex !important;
  }
}

@media (max-width: 760px) {
  .headerActions .oddsSelect,
  .headerActions .ghostButton {
    display: none;
  }
  .appShell {
    display: block;
    padding: 14px;
  }
  .sidebar {
    position: static;
    max-height: none;
    margin-bottom: 16px;
  }
  .leagueRow {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .leagueTag {
    grid-column: 1/-1;
  }
  .promoGrid,
  .promoCards {
    grid-template-columns: 1fr;
  }
  .footerInner {
    grid-template-columns: 1fr;
  }
  .formGrid {
    grid-template-columns: 1fr;
  }
  .heroPromo {
    padding: 22px;
  }
  .heroArt {
    min-height: 230px;
  }
  .cookiePlaque {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
  .agePlaque {
    display: none;
  }
  .mobileSlipButton {
    bottom: 78px;
  }
  table {
    min-width: 700px;
  }
  .tableScroller {
    padding-inline: 12px;
  }
  .promoCards {
    grid-template-columns: 1fr;
  }
  .content {
    overflow: visible;
  }
  .quickMarketHeader {
    padding: 18px;
  }
  .betSlip {
    top: 82px !important;
    bottom: 10px !important;
    right: 10px !important;
    width: calc(100vw - 20px) !important;
  }
  .mobileCloseButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1321px) {
  .mobileSlipButton,
  .mobileCloseButton {
    display: none !important;
  }
  .betSlip {
    position: sticky;
    top: 146px;
    max-height: calc(100vh - 170px);
    overflow: auto;
  }
}

@media (min-width: 981px) {
  .sidebarToggleBtn {
    display: none !important;
  }
  .sidebar.sidebarCollapsed {
    max-height: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 600px) {
  .navToggleBtn {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .headerInner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    min-height: 62px;
    padding: 8px 14px;
    gap: 10px;
  }
  .logo {
    grid-column: 1;
    grid-row: 1;
  }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .headerActions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
  }
  .headerActions .ghostButton {
    display: none;
  }
  .headerActions .primaryButton {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 0.82rem;
  }
  .navToggleBtn,
  .sidebarToggleBtn {
    order: -1;
    background: transparent;
    border: 1px solid rgba(17, 24, 39, 0.15);
    border-radius: 10px;
    padding: 8px;
    color: var(--ink);
  }
  .oddsSelect {
    display: none;
  }
}

@media (max-width: 600px) {
  .headerInner {
    padding: 8px 12px;
    min-height: 56px;
  }
  .logoImage {
    width: 140px;
  }
  .navToggleBtn {
    display: none !important;
  }
  .headerActions .primaryButton {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}
