:root {
  color: #1a1a2e;
  background: #f0f2f8;
  font-family:
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  line-height: 1.35;
  --navy: #0f0e17;
  --navy-2: #1a1a2e;
  --teal: #e94560;
  --teal-dark: #c73652;
  --gold: #f5a623;
  --grey: #edf0f8;
  --line: #d4d8ec;
  --muted: #6b7080;
  --white: #ffffff;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(15, 14, 23, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(245, 166, 35, 0.75);
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 10px 24px #0005;
}

.headerInner {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: 1840px;
  min-height: 72px;
  padding: 10px 18px;
}

.logo {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 198px;
}

.logoImage {
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  height: auto;
  max-height: 47px;
  object-fit: contain;
  width: 198px;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.nav a {
  border-radius: 7px;
  color: #c0c5d8;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 10px;
}

.nav a.active,
.nav a:hover {
  background: rgba(233, 69, 96, 0.22);
  color: var(--white);
}

.nav a.active {
  color: var(--gold);
}

.headerActions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.oddsSelect {
  align-items: center;
  background: #ffffff14;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  display: flex;
  gap: 7px;
  padding: 6px 7px;
}

.oddsSelect span {
  color: #a9c6d8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.oddsSelect select,
.authModal select {
  background: #1b233b;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 34px;
  padding: 0 8px;
}

.noticeBar {
  background: #0f3b55;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8e8ef;
  font-size: 0.82rem;
  padding: 8px 18px;
  text-align: center;
}

.appShell {
  display: grid;
  gap: 14px;
  grid-template-columns: 250px minmax(0, 1fr) 310px;
  margin: 0 auto;
  max-width: 1840px;
  padding: 14px;
}

.sidebar,
.betSlip {
  align-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px #0f2a4014;
  overflow: hidden;
  position: sticky;
  top: 104px;
}

.sidebar {
  padding: 12px;
}

.searchBox {
  align-items: center;
  background: #f4f8fa;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 10px;
}

.searchBox input {
  background: transparent;
  border: 0;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.searchClear {
  align-items: center;
  background: #e7eff4;
  border: 1px solid #d2dee7;
  border-radius: 6px;
  color: #43596d;
  display: inline-flex;
  flex: 0 0 auto;
  height: 26px;
  justify-content: center;
  padding: 0;
  width: 26px;
}

.searchClear:hover {
  background: #dff6f3;
  color: #c73652;
}

.sidebar h2,
.betSlip h2 {
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0;
  margin: 12px 0 8px;
  text-transform: uppercase;
}

.sidebar h2 span {
  background: #edf2f5;
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 900;
  margin-left: 5px;
  min-width: 22px;
  padding: 2px 7px;
}

.linkList,
.sportList {
  display: grid;
  gap: 4px;
}

.linkList button,
.sportList button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #263c4f;
  display: flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 8px;
  justify-content: flex-start;
  padding: 8px;
}

.sportList button {
  justify-content: space-between;
}

.sportList span {
  align-items: center;
  display: flex;
  gap: 8px;
}

.linkList button:hover,
.sportList button:hover {
  background: #edf7f7;
}

.linkList button.active,
.sportList button.active {
  background: #dff6f3;
  color: #c73652;
  box-shadow: inset 3px 0 0 #e94560;
}

.menuEmpty {
  background: #f4f8fa;
  border: 1px dashed #c6d5de;
  border-radius: 8px;
  color: #43596d;
  margin-top: 12px;
  padding: 12px;
}

.menuEmpty strong {
  color: var(--navy);
  display: block;
  font-size: 0.9rem;
}

.menuEmpty p {
  font-size: 0.82rem;
  margin: 4px 0 0;
}

.starOn {
  color: var(--gold);
  fill: var(--gold);
}

.content {
  min-width: 0;
}

.promoGrid {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.heroPromo {
  background:
    linear-gradient(90deg, #0a0915f5, #0f0e17e0 32%, #1a1a2e5c 56%, #1a1a2e14),
    url(../assets/sportsbook-hero.png) center / cover no-repeat,
    linear-gradient(120deg, #0a0915, #1a1a2e 52%, #e94560);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  min-height: 236px;
  overflow: hidden;
  position: relative;
}

.heroPromo:after {
  background: linear-gradient(180deg, #f5a62380, #e9456033);
  content: "";
  inset: 0 auto 0 0;
  opacity: 0.8;
  position: absolute;
  width: 4px;
}

.heroCopy {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.leagueTag {
  color: var(--gold);
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.heroCopy h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 10px 0;
  max-width: 620px;
}

.heroCopy p {
  color: #d8e8ef;
  margin: 0 0 18px;
  max-width: 520px;
}

.heroArt {
  min-height: 236px;
  overflow: hidden;
  position: relative;
}

.promoCards {
  display: grid;
  gap: 10px;
}

.promoCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px #0f2a4014;
  padding: 14px;
}

.promoCard div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.boostBadge {
  background: #fff4ca;
  border: 1px solid #f1d56a;
  border-radius: 999px;
  color: #7a5b00;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 8px;
}

.promoCard h3 {
  font-size: 0.96rem;
  margin: 9px 0 3px;
}

.promoCard p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0 0 8px;
}

.promoCard strong {
  color: #e94560;
  font-size: 1.4rem;
}

.tabDeck {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 12px 0;
  padding: 10px;
}

.tabs,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filters {
  border-top: 1px solid var(--line);
  margin-top: 9px;
  padding-top: 9px;
}

.tabs button,
.filters button {
  background: #f3f7fa;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #2c4358;
  font-size: 0.88rem;
  font-weight: 800;
  min-height: 36px;
  padding: 0 12px;
}

.tabs button.active,
.filters button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.marketContext {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid #e94560;
  border-radius: 8px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 0 0 12px;
  padding: 12px 14px;
}

.marketContext span {
  color: var(--muted);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.marketContext strong {
  color: var(--navy);
  display: block;
  font-size: 1rem;
}

.marketContext p {
  color: #43596d;
  margin: 3px 0 0;
}

.marketContext .ghostButton {
  background: #f4f8fa;
  border-color: var(--line);
  color: var(--navy);
  flex: 0 0 auto;
}

.sportSection {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.sectionHeader {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 11px 14px;
}

.sectionHeader h2 {
  font-size: 1rem;
  margin: 0;
}

.sectionHeader span {
  color: #b7cedd;
  font-size: 0.82rem;
  font-weight: 800;
}

.leagueRow {
  background: #c73652;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 8px 14px;
}

.tableScroller {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 880px;
  width: 100%;
}

th {
  background: #dfe9ee;
  color: #21384c;
  font-size: 0.78rem;
  letter-spacing: 0;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
}

th:first-child {
  text-align: left;
}

td {
  border-top: 1px solid var(--line);
  padding: 5px;
  vertical-align: middle;
}

.matchCell {
  min-width: 230px;
  padding: 8px 12px;
}

.matchCell strong,
.gameTime {
  display: block;
}

.matchCell strong {
  font-size: 0.9rem;
  margin-top: 3px;
}

.gameTime {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.oddsButton {
  align-items: center;
  background: #f0f4f7;
  border: 1px solid #d5e0e7;
  border-radius: 6px;
  color: #182d40;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  min-height: 42px;
  min-width: 92px;
  padding: 7px 9px;
  transition:
    transform 0.12s ease,
    border-color 0.12s ease,
    background 0.12s ease;
  width: 100%;
}

.oddsButton:hover {
  background: #e6faf8;
  border-color: #e94560;
  transform: translateY(-1px);
}

.oddsButton span {
  color: #456074;
  font-size: 0.78rem;
  font-weight: 800;
}

.oddsButton strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.emptyBoard {
  background: var(--white);
  border: 1px dashed #b9c9d4;
  border-radius: 8px;
  color: #43596d;
  padding: 28px;
}

.emptyBoard h2 {
  color: var(--navy);
  margin: 0 0 8px;
}

.emptyBoard p {
  margin: 0;
}

.betSlip {
  padding: 14px;
}

.betSlipHeader {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: -2px 0 12px;
  padding-bottom: 10px;
}

.betSlipHeaderActions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.betSlipHeader h2 {
  margin: 0;
}

.betSlipHeader span {
  align-items: center;
  background: #e94560;
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.mobileCloseButton {
  align-items: center;
  background: #eef5f8;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  display: none;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.emptySlip {
  align-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  justify-items: center;
  padding: 34px 18px;
  text-align: center;
}

.selectionCard {
  background: #f5f9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.selectionCard span,
.finePrint {
  color: var(--muted);
  font-size: 0.78rem;
}

.selectionCard p {
  margin: 0;
}

.selectionCard b {
  color: #c73652;
  font-size: 1.3rem;
}

.stakeField {
  display: grid;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 6px;
  margin-top: 12px;
  text-transform: uppercase;
}

.stakeField input,
.authModal input {
  border: 1px solid var(--line);
  border-radius: 7px;
  min-height: 40px;
  padding: 0 10px;
}

.payout {
  align-items: center;
  background: #08233d;
  border-radius: 8px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  padding: 12px;
}

.payout span {
  color: #b7cedd;
  font-size: 0.78rem;
  font-weight: 800;
}

.payout strong {
  color: var(--gold);
}

.slipActions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.primaryButton,
.ghostButton,
.goldButton,
.iconButton {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
}

.primaryButton {
  background: #e94560;
  border: 1px solid #e94560;
  color: var(--white);
}

.primaryButton:hover {
  background: #c73652;
}

.ghostButton,
.iconButton {
  background: #ffffff14;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.betSlip .ghostButton,
.authModal .ghostButton {
  background: #f4f8fa;
  border-color: var(--line);
  color: var(--navy);
}

.goldButton {
  background: linear-gradient(135deg, #e94560, #c73652);
  border: 1px solid #ffd95e;
  color: #102033;
}

.full {
  width: 100%;
}

.footer {
  background: var(--navy);
  color: #d3e1ea;
  margin-top: 10px;
  padding: 30px 18px;
}

.footerInner {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 1.3fr) minmax(190px, 0.7fr) minmax(
      220px,
      0.8fr
    );
  margin: 0 auto;
  max-width: 1840px;
  width: 100%;
}

.footerBrand {
  max-width: 560px;
}

.footerBrand .logo {
  margin-bottom: 10px;
}

.footer p {
  margin: 0;
}

.footerBrand p + p {
  margin-top: 8px;
}

.footerNav {
  display: grid;
  gap: 9px;
  justify-items: start;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

.footer a:hover {
  color: var(--gold);
}

.footerMeta {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footerLabel {
  color: #a9c6d8;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.paymentRow {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.paymentRow span {
  background: var(--white);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  padding: 8px 10px;
}

.footerSupport {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-column: 1 / -1;
  padding-top: 16px;
}

.footerSupport p {
  max-width: 1180px;
}

.footerSupport p + p {
  margin-top: 8px;
}

.legalPage {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.legalHeader {
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.legalHeader span {
  align-items: center;
  color: #c73652;
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 6px;
}

.legalPage h1 {
  color: var(--navy);
  font-size: 2rem;
  margin: 10px 0;
}

.legalPage h2 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 22px 0 8px;
}

.legalPage p {
  color: #344b5d;
}

.modalBackdrop {
  align-items: center;
  background: #040e19a3;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 60;
}

.authModal {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 36px);
  max-width: 720px;
  overflow: auto;
  padding: 24px;
  position: relative;
  width: 100%;
}

.closeButton {
  align-items: center;
  background: #f1f5f8;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 36px;
}

.authModal h2 {
  color: var(--navy);
  margin: 0 44px 16px 0;
}

.authModal form {
  display: grid;
  gap: 12px;
}

.formGrid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.authModal label {
  color: #21384c;
  display: grid;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 5px;
}

.checkRow {
  align-items: start;
  display: flex !important;
  gap: 9px;
}

.checkRow input {
  min-height: auto;
  margin-top: 3px;
}

.fieldError {
  color: var(--danger);
  font-size: 0.76rem;
  font-weight: 800;
}

.successMessage {
  background: #e8f8f4;
  border: 1px solid #9bddcf;
  border-radius: 7px;
  color: #096257;
  padding: 10px;
}

.textButton {
  background: transparent;
  border: 0;
  color: #c73652;
  font-weight: 900;
  justify-self: center;
}

.confirmView {
  display: grid;
  justify-items: start;
  padding-right: 32px;
}

.confirmView svg {
  color: #c73652;
}

.mobileOnly,
.mobileSlipButton {
  display: none;
}

.mobileSlipButtonHidden {
  display: none !important;
}

@media (max-width: 1240px) {
  .appShell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .betSlip {
    inset: auto 0 0;
    position: fixed;
    z-index: 45;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -18px 38px #071b2f33;
    max-height: min(72vh, 520px);
    overflow: auto;
    transform: translateY(calc(100% + 24px));
    transition: transform 0.22s ease;
  }

  .betSlipOpen {
    transform: translateY(0);
  }

  .mobileCloseButton {
    display: inline-flex;
  }

  .footer {
    padding-bottom: 92px;
  }

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

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

  .mobileSlipButton {
    background: var(--gold);
    border: 1px solid #e2b32e;
    border-radius: 999px;
    bottom: 14px;
    box-shadow: var(--shadow);
    color: var(--navy);
    display: block;
    font-weight: 950;
    left: 50%;
    min-height: 44px;
    padding: 0 20px;
    position: fixed;
    transform: translate(-50%);
    z-index: 50;
  }
}

@media (max-width: 920px) {
  .headerInner {
    grid-template-columns: auto auto;
  }

  .mobileOnly {
    display: inline-flex;
    justify-self: end;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
  }

  .navOpen {
    display: flex;
  }

  .headerActions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .headerActions > * {
    flex: 1;
  }

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

  .sidebar {
    position: static;
  }

  .sidebar section {
    margin-top: 8px;
  }

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

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

  .heroArt {
    min-height: 170px;
  }

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

  .footer {
    text-align: left;
  }

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

@media (max-width: 640px) {
  .headerInner,
  .appShell {
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo {
    min-width: 0;
  }

  .logoImage {
    width: clamp(142px, 48vw, 178px);
  }

  .headerActions {
    flex-wrap: wrap;
  }

  .oddsSelect {
    flex-basis: 100%;
  }

  .sidebar {
    max-height: 320px;
    overflow: auto;
  }

  .heroCopy {
    padding: 18px;
  }

  .heroCopy h1 {
    font-size: 2.2rem;
  }

  .linkList,
  .sportList,
  .formGrid,
  .slipActions {
    grid-template-columns: 1fr;
  }

  .legalPage {
    padding: 18px;
  }

  .marketContext {
    align-items: stretch;
    flex-direction: column;
  }

  .authModal {
    padding: 18px;
  }

  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.oddsButton.active {
  background: #e6faf8;
  border-color: #e94560;
  box-shadow: inset 0 0 0 1px #e94560;
}

.slipSelections {
  display: grid;
  gap: 10px;
}

.selectionCard {
  position: relative;
}

.selectionCard strong {
  color: var(--navy);
}

.removeSelection {
  align-items: center;
  background: #eef5f8;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 24px;
}

.removeSelection:hover {
  background: #fff;
  color: #c73652;
}

.promoCard {
  cursor: pointer;
}

.promoCard.active {
  border-color: #e94560;
  box-shadow: 0 0 0 2px rgba(15, 161, 152, 0.18);
}

.slipControls {
  display: none;
  gap: 12px;
}

.quickMarketPanel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 16px 18px;
}

.quickMarketHeader {
  margin-bottom: 18px;
}

.quickMarketHeader span {
  background: #e94560;
  border-radius: 4px;
  color: var(--white);
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.quickMarketHeader h2 {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.quickMarketHeader p {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0;
}

.quickMarketCards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quickMarketCard {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 14px 16px;
  transition:
    box-shadow 0.18s,
    border-color 0.18s,
    transform 0.12s;
}

.quickMarketCard:hover {
  border-color: #e94560;
  box-shadow: 0 4px 16px rgba(233, 69, 96, 0.13);
  transform: translateY(-1px);
}

.quickMarketCard.active,
.quickMarketCard[data-selected="true"] {
  background: rgba(233, 69, 96, 0.06);
  border-color: #e94560;
  box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.2);
}

.quickMarketCard > div {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.quickMarketCard .leagueTag {
  background: rgba(233, 69, 96, 0.12) !important;
  border-radius: 4px;
  color: #e94560 !important;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  text-transform: uppercase;
}

.quickMarketCard .boostBadge {
  background: #fff4ca;
  border: 1px solid #f1d56a;
  border-radius: 999px;
  color: #7a5b00;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 8px;
}

.quickMarketCard h3 {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.quickMarketCard p {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0 0 3px;
}

.quickMarketCard p b {
  color: #263c4f;
}

.quickMarketCard strong {
  color: #e94560;
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 900;
  margin-top: 6px;
}
