/* mobile-site-redesign-20260515-001 */
.nav-inner.container {
  max-width: 1300px;
}

@media (min-width: 769px) and (max-width: 1380px) {
  .nav-inner {
    gap: 14px;
  }

  .nav-links {
    flex: 1 1 auto;
    gap: 10px 16px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-sm {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
  }
}

.bet-slips {
  position: relative;
}

.bet-slips .container {
  max-width: min(1560px, calc(100vw - 24px));
  padding-left: 12px;
  padding-right: 12px;
}

.bet-slips-shell {
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201,168,108,0.24);
  background: linear-gradient(150deg, rgba(201,168,108,0.075), rgba(255,255,255,0.022));
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.bet-slips-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.bet-slips-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(201,168,108,0.36);
  border-radius: 999px;
  background: rgba(201,168,108,0.1);
  color: var(--gold-l);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bet-slips-note,
.bet-slips-status {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 700;
}

.bet-slips-status {
  margin-bottom: 14px;
}

.bet-slips-status[data-state="success"] { color: #7ee0a2; }
.bet-slips-status[data-state="warning"] { color: var(--gold-l); }
.bet-slips-status[data-state="error"] { color: #ff8d94; }

.bet-slips-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.bet-slip-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(0,0,0,0.24);
  overflow: hidden;
}

.bet-slip-head {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.075);
  background: linear-gradient(145deg, rgba(201,168,108,0.13), rgba(255,255,255,0.025));
}

.bet-slip-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.bet-slip-title-row h3 {
  color: var(--text-1);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.bet-slip-title-row p {
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.45;
}

.bet-slip-quote {
  display: grid;
  justify-items: end;
  gap: 3px;
  flex: 0 0 auto;
}

.bet-slip-quote span {
  color: var(--gold-l);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.bet-slip-quote small {
  color: var(--text-3);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bet-slip-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.bet-slip-metric {
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(0,0,0,0.22);
}

.bet-slip-metric strong {
  display: block;
  color: var(--text-1);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.bet-slip-metric small {
  display: block;
  margin-top: 5px;
  color: var(--text-3);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bet-slip-metric.bet-slip-result-won {
  border-color: rgba(52, 199, 89, 0.34);
  background: rgba(52, 199, 89, 0.1);
  color: #7dffae;
}

.bet-slip-metric.bet-slip-result-lost {
  border-color: rgba(255, 69, 58, 0.36);
  background: rgba(255, 69, 58, 0.1);
  color: #ff9b95;
}

.bet-slip-metric.bet-slip-result-refund,
.bet-slip-metric.bet-slip-result-postponed {
  border-color: rgba(201, 168, 108, 0.28);
  background: rgba(201, 168, 108, 0.1);
  color: var(--gold-l);
}

.bet-slip-metric.bet-slip-result-open {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-3);
}

.bet-slip-metric.bet-slip-result-won strong,
.bet-slip-metric.bet-slip-result-lost strong,
.bet-slip-metric.bet-slip-result-refund strong,
.bet-slip-metric.bet-slip-result-postponed strong,
.bet-slip-metric.bet-slip-result-open strong {
  color: currentColor;
}

.bet-slip-leg-list,
.bet-slip-leg {
  display: grid;
}

.bet-slip-leg {
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.bet-slip-leg:last-child {
  border-bottom: 0;
}

.bet-slip-leg-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bet-slip-leg-league {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.bet-slip-leg-league span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bet-slip-leg-date {
  white-space: nowrap;
}

.bet-slip-fixture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: var(--text-1);
  font-weight: 900;
}

.bet-slip-team {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.bet-slip-team:last-child {
  justify-content: flex-end;
  text-align: right;
}

.bet-slip-team span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bet-slip-vs {
  display: grid;
  place-items: center;
  width: 34px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: var(--text-3);
  font-size: 10px;
  font-weight: 900;
}

.bet-slip-vs-score {
  width: auto;
  min-width: 50px;
  height: 32px;
  padding: 0 10px;
  border-color: rgba(201,168,108,0.28);
  background: rgba(201,168,108,0.08);
  color: var(--text-1);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.bet-slip-pick-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: end;
  gap: 10px;
}

.bet-slip-pick {
  min-width: 0;
}

.bet-slip-pick small,
.bet-slip-leg-pill small {
  display: block;
  color: var(--text-3);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bet-slip-pick strong {
  display: block;
  min-width: 0;
  color: var(--gold-l);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.bet-slip-leg-pill {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: right;
}

.bet-slip-leg-pill strong {
  display: block;
  color: var(--text-1);
  font-size: 13px;
  line-height: 1;
}

.bet-slip-leg-result {
  align-self: end;
  min-width: 0;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  line-height: 1;
}

.bet-slip-leg-result small {
  font-size: 7px;
}

.bet-slips-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(0,0,0,0.2);
  color: var(--text-2);
}

.live-score-summary-card {
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.live-score-summary-card:hover,
.live-score-summary-card.active {
  transform: translateY(-1px);
  border-color: rgba(201,168,108,0.42);
  background: rgba(201,168,108,0.1);
}

@media (max-width: 1100px) {
  .bet-slips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 14px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .nav {
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
  }

  .nav-inner {
    min-height: 0 !important;
    padding-top: 8px !important;
    padding-bottom: 10px !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
  }

  .nav-logo {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    gap: 8px !important;
  }

  .logo-image {
    width: 34px !important;
    height: 34px !important;
    border-radius: 10px !important;
  }

  .logo-text {
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .brand-kicker {
    display: none !important;
  }

  .nav-links {
    order: 2 !important;
    flex: 1 0 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .nav-links li {
    min-width: 0 !important;
  }

  .nav-links a {
    display: grid !important;
    place-items: center !important;
    min-width: 0 !important;
    min-height: 30px !important;
    padding: 0 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    color: rgba(239, 242, 248, 0.72) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .nav-links a.is-active {
    border-color: rgba(201, 168, 108, 0.58) !important;
    background: rgba(201, 168, 108, 0.14) !important;
    color: #fff !important;
  }

  .nav-links a.is-active::after {
    display: none !important;
  }

  .nav-actions {
    order: 3 !important;
    flex: 1 0 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .nav-actions .btn,
  .nav-actions .btn-sm {
    width: 100% !important;
    min-height: 34px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }

  body:not([data-page="home"]) main {
    padding-top: 178px !important;
  }

  body:not([data-page="home"]) main > section:first-child {
    padding-top: 28px !important;
  }

  body[data-page="home"] .hero {
    padding-top: 178px !important;
  }

  .section-label,
  .predictions-filter-label,
  .prediction-pro-field label {
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
  }

  .section-heading {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
  }

  .section-sub {
    max-width: 100% !important;
    margin-bottom: 18px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .predictions,
  .bet-slips,
  .favorite-bets,
  .editorial,
  .metrics,
  .positioning,
  .engine,
  .philosophy,
  .how,
  .why,
  .won-games {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .predictions-shell {
    gap: 10px !important;
  }

  .prediction-date-range,
  .prediction-legend,
  .prediction-pro-panel,
  .prediction-top-signals,
  .predictions-filter,
  .prediction-summary-card {
    border-radius: 14px !important;
  }

  .prediction-date-range {
    padding: 10px !important;
  }

  .prediction-date-range-head {
    margin-bottom: 8px !important;
  }

  .prediction-date-range-head small,
  .prediction-summary-note,
  .prediction-top-signals {
    display: none !important;
  }

  .prediction-date-range-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .prediction-date-card {
    min-height: 64px !important;
    padding: 9px 7px !important;
    border-radius: 12px !important;
    gap: 4px !important;
    text-align: center !important;
  }

  .prediction-date-card span {
    font-size: 8px !important;
  }

  .prediction-date-card strong {
    font-size: 13px !important;
  }

  .prediction-date-card small {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .prediction-legend summary {
    padding: 12px !important;
  }

  .prediction-legend summary small {
    display: none !important;
  }

  .prediction-legend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 0 12px 12px !important;
  }

  .prediction-legend-grid div {
    padding: 10px !important;
    border-radius: 11px !important;
  }

  .prediction-legend-grid p {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .prediction-pro-panel {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  .prediction-pro-field:last-child {
    grid-column: 1 / -1 !important;
  }

  .prediction-pro-field select {
    height: 38px !important;
    min-height: 38px !important;
    border-radius: 10px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
  }

  .prediction-summary-card {
    padding: 12px !important;
  }

  .prediction-summary-head {
    margin-bottom: 10px !important;
  }

  .prediction-summary-grid,
  .favorite-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .prediction-summary-stat,
  .favorite-summary-card {
    min-height: 54px !important;
    padding: 8px !important;
    border-radius: 11px !important;
  }

  .prediction-summary-value,
  .favorite-summary-card span {
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .prediction-summary-key,
  .favorite-summary-card small {
    font-size: 8px !important;
    line-height: 1.1 !important;
  }

  .predictions-mode-switch {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    margin-top: 8px !important;
    padding: 4px !important;
  }

  .predictions-mode-button {
    justify-content: center !important;
    min-height: 34px !important;
    padding: 0 8px !important;
    font-size: 11px !important;
  }

  .predictions-filter {
    padding: 10px !important;
    border-color: rgba(201,168,108,0.62) !important;
    background: linear-gradient(145deg, rgba(201,168,108,0.12), rgba(255,255,255,0.03)) !important;
    box-shadow: 0 0 0 1px rgba(201,168,108,0.14), 0 12px 30px rgba(201,168,108,0.1) !important;
  }

  .predictions-search-control {
    grid-template-columns: minmax(0, 1fr) 58px !important;
    gap: 8px !important;
  }

  .predictions-filter-input {
    min-width: 0 !important;
    height: 40px !important;
    padding: 0 12px !important;
    border-color: rgba(201,168,108,0.46) !important;
    border-radius: 11px !important;
    font-size: 13px !important;
  }

  .predictions-search-reset {
    min-height: 40px !important;
    padding: 0 10px !important;
    border-radius: 11px !important;
    font-size: 10px !important;
  }

  .league-group {
    margin: 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .league-summary {
    min-height: 44px !important;
    padding: 10px 12px !important;
    align-items: center !important;
  }

  .league-title {
    min-width: 0 !important;
    gap: 8px !important;
  }

  .league-name {
    min-width: 0 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .league-count {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    font-size: 11px !important;
  }

  .league-matches {
    padding: 0 !important;
    gap: 0 !important;
  }

  #predictions .match-card,
  #favorite-bets .favorite-match-card {
    border-radius: 0 !important;
    background: transparent !important;
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
  }

  #predictions .match-summary,
  #favorite-bets .favorite-match-card .match-summary {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 92px !important;
    grid-template-areas: "kickoff fixture bet" !important;
    align-items: center !important;
    min-height: 74px !important;
    width: 100% !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  .match-kickoff {
    grid-area: kickoff !important;
    min-width: 0 !important;
    justify-content: center !important;
    justify-items: center !important;
  }

  .match-time-split {
    width: 34px !important;
    min-height: 38px !important;
    padding: 6px 0 !important;
    border: 1px solid rgba(201, 168, 108, 0.22) !important;
    border-radius: 10px !important;
    background: rgba(201, 168, 108, 0.06) !important;
    font-size: 13px !important;
    line-height: 0.95 !important;
  }

  .match-summary-main {
    display: contents !important;
  }

  .match-fixture {
    grid-area: fixture !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas: "home" "away" !important;
    justify-items: stretch !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: 8px !important;
  }

  .match-team {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 7px !important;
    align-items: center !important;
    min-width: 0 !important;
    width: 100% !important;
    color: rgba(245, 247, 252, 0.94) !important;
    font-size: 12.5px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .match-team-home,
  .match-team-away {
    justify-self: stretch !important;
    text-align: left !important;
  }

  .team-logo,
  .league-flag {
    flex: 0 0 auto !important;
  }

  .team-logo {
    width: 22px !important;
    height: 22px !important;
    flex-basis: 22px !important;
    border-radius: 50% !important;
  }

  .match-live-score,
  .match-mobile-score-stack,
  .match-market-rail,
  .match-insight-row,
  .match-side-row {
    display: none !important;
  }

  .match-mobile-bet {
    grid-area: bet !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-content: center !important;
    justify-items: end !important;
    width: 92px !important;
    min-width: 0 !important;
    max-width: 92px !important;
    min-height: 52px !important;
    padding: 7px 8px !important;
    border: 1px solid rgba(201, 168, 108, 0.24) !important;
    border-radius: 12px !important;
    background: rgba(201, 168, 108, 0.07) !important;
    text-align: right !important;
    gap: 2px !important;
  }

  .match-mobile-pick {
    justify-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    text-align: right !important;
  }

  .match-mobile-pick strong,
  .match-mobile-pick small {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: right !important;
  }

  .match-mobile-pick strong {
    font-size: 12px !important;
    line-height: 1.1 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .match-mobile-pick small {
    font-size: 9px !important;
    line-height: 1.1 !important;
  }

  .match-mobile-conf {
    justify-self: end !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    color: var(--gold-l) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: right !important;
  }

  .match-details,
  #favorite-bets .favorite-match-details {
    padding: 0 10px 12px !important;
  }

  .favorite-bets-shell {
    gap: 10px !important;
  }

  .favorite-date-group {
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .favorite-date-head {
    padding: 10px 12px !important;
    align-items: center !important;
  }

  .favorite-date-head span {
    font-size: 15px !important;
    line-height: 1.15 !important;
  }

  .favorite-date-head small {
    font-size: 9px !important;
  }

  .favorite-date-list {
    gap: 0 !important;
  }

  .bet-slips-shell {
    padding: 12px !important;
    border-radius: 16px !important;
  }

  .bet-slips-header {
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .bet-slips-note {
    width: 100% !important;
  }

  .bet-slips-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .bet-slip-card {
    border-radius: 16px !important;
  }

  .bet-slip-head {
    padding: 13px !important;
  }

  .bet-slip-title-row h3 {
    font-size: 17px !important;
  }

  .bet-slip-quote span {
    font-size: 24px !important;
  }

  .bet-slip-leg {
    padding: 12px !important;
  }

  .bet-slip-fixture {
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) !important;
    gap: 6px !important;
    font-size: 12px !important;
  }

  .bet-slip-pick-row {
    grid-template-columns: minmax(0, 1fr) auto auto auto !important;
    gap: 8px !important;
  }

  .bet-slip-leg-pill {
    min-width: 0 !important;
    padding: 0 !important;
  }

  .bet-slip-leg-result {
    padding: 4px 7px !important;
  }
}

@media (max-width: 560px) {
  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body:not([data-page="home"]) main {
    padding-top: 224px !important;
  }

  body[data-page="home"] .hero {
    padding-top: 224px !important;
  }

  .prediction-date-card {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .prediction-date-card strong {
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  .prediction-date-card small {
    font-size: 8.5px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 430px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .nav-inner {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .nav-links a {
    min-height: 29px !important;
    font-size: 9.5px !important;
  }

  body:not([data-page="home"]) main {
    padding-top: 232px !important;
  }

  body[data-page="home"] .hero {
    padding-top: 232px !important;
  }

  .prediction-summary-grid,
  .favorite-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .prediction-date-card {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .prediction-date-card strong {
    font-size: 12px !important;
  }

  .prediction-pro-panel {
    grid-template-columns: 1fr !important;
  }

  .prediction-pro-field:last-child {
    grid-column: auto !important;
  }

  #predictions .match-summary,
  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) 82px !important;
    gap: 6px !important;
    padding: 9px 8px !important;
  }

  .match-time-split {
    width: 32px !important;
    font-size: 12px !important;
  }

  .match-team {
    grid-template-columns: 22px minmax(0, 1fr) !important;
    gap: 6px !important;
    font-size: 11.5px !important;
  }

  .team-logo {
    width: 20px !important;
    height: 20px !important;
    flex-basis: 20px !important;
  }

  .match-mobile-bet {
    width: 82px !important;
    max-width: 82px !important;
    padding: 7px 6px !important;
  }

  .match-mobile-pick strong {
    font-size: 11px !important;
  }

  .match-mobile-pick small {
    font-size: 8.5px !important;
  }

  .match-mobile-conf {
    font-size: 10px !important;
  }
}

/* mobile-polish-20260515-002 */
@media (max-width: 768px) {
  body[data-page="home"] .hero {
    min-height: auto !important;
    padding-top: 196px !important;
    padding-bottom: 0 !important;
    justify-content: flex-start !important;
    gap: 16px !important;
  }

  body[data-page="home"] .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    overflow: hidden !important;
  }

  body[data-page="home"] .hero-content {
    min-width: 0 !important;
  }

  body[data-page="home"] .hero-headline {
    max-width: 100% !important;
    margin-bottom: 16px !important;
    font-size: clamp(31px, 9vw, 38px) !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
    overflow-wrap: normal !important;
  }

  body[data-page="home"] .hero-headline .text-gold {
    display: inline !important;
  }

  body[data-page="home"] .hero-ctas {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 0 !important;
  }

  body[data-page="home"] .hero-ctas .btn {
    min-height: 48px !important;
    width: 100% !important;
    border-radius: 999px !important;
    color: var(--text-1) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
  }

  body[data-page="home"] .hero-ctas .btn-gold {
    color: #050505 !important;
  }

  body[data-page="home"] .hero-quick-strip {
    display: none !important;
  }

  body[data-page="home"] .hero-logo-watermark {
    right: -92px !important;
    top: 232px !important;
    width: 250px !important;
    opacity: 0.1 !important;
  }

  body[data-page="home"] .hero-won-games {
    margin-top: 10px !important;
  }

  body[data-page="home"] .won-games-shell {
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  body[data-page="home"] .won-games-meta {
    display: grid !important;
    gap: 6px !important;
    padding: 14px 16px !important;
  }

  body[data-page="home"] .won-games-meta span {
    font-size: 12px !important;
  }

  body[data-page="home"] .won-games-slider {
    padding: 12px !important;
  }

  #predictions .match-summary,
  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 42px minmax(0, 1fr) 112px !important;
    gap: 8px !important;
    min-height: 82px !important;
  }

  .match-time-split {
    width: 36px !important;
    min-height: 42px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: var(--text-1) !important;
  }

  .match-mobile-bet {
    width: 112px !important;
    max-width: 112px !important;
    min-height: 56px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    align-content: center !important;
    gap: 4px !important;
  }

  .match-mobile-pick strong {
    font-size: 12px !important;
    line-height: 1.15 !important;
    color: var(--gold-l) !important;
  }

  .match-mobile-pick,
  .match-mobile-pick strong,
  .match-mobile-pick small,
  .match-mobile-conf {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    text-align: right !important;
    white-space: normal !important;
  }

  .match-mobile-pick small,
  .match-mobile-conf {
    color: rgba(239, 242, 248, 0.86) !important;
    font-size: 10.5px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  #favorite-bets .match-mobile-pick .match-bestbet-result {
    display: inline-flex !important;
    margin-top: 4px !important;
    padding: 3px 7px !important;
    border-radius: 999px !important;
    font-size: 8px !important;
    line-height: 1 !important;
  }

  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    grid-template-areas:
      "kickoff fixture"
      ". bet" !important;
    align-items: center !important;
    min-height: 112px !important;
    row-gap: 8px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-bet {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 8px 10px !important;
    padding: 7px 9px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.025) !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick {
    text-align: left !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick strong,
  #favorite-bets .favorite-match-card .match-mobile-pick small {
    text-align: left !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-conf {
    width: auto !important;
    min-width: 74px !important;
    color: var(--gold-l) !important;
    text-align: right !important;
  }

  .predictions-mode-btn.active::before {
    content: "\2713";
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--gold);
    color: #050505;
    font-size: 11px;
    font-weight: 900;
  }

  .predictions-mode-btn-live.active::before {
    background: #40d679;
  }

  .predictions-mode-btn-upcoming.active::before {
    background: var(--gold-l);
  }

  .bet-slip-pick-row {
    grid-template-columns: minmax(0, 1fr) auto auto auto !important;
    align-items: end !important;
    gap: 10px !important;
  }

  .bet-slip-leg-pill {
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .bet-slip-leg-pill small {
    color: rgba(239, 242, 248, 0.48) !important;
  }

  .bet-slip-leg-pill strong {
    color: var(--text-1) !important;
    font-size: 13px !important;
  }

  .bet-slip-leg-result {
    padding: 4px 7px !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.045) !important;
  }
}

@media (max-width: 430px) {
  body[data-page="home"] .hero {
    padding-top: 250px !important;
  }

  body[data-page="home"] .hero-headline {
    font-size: clamp(29px, 8.4vw, 34px) !important;
  }

  #predictions .match-summary,
  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) 104px !important;
    gap: 7px !important;
  }

  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) !important;
  }

  .match-mobile-bet {
    width: 104px !important;
    max-width: 104px !important;
  }

  .match-mobile-pick strong {
    font-size: 11.5px !important;
  }

  .match-mobile-pick small,
  .match-mobile-conf {
    font-size: 10px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-bet {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* mobile-bet-clarity-20260515-001 */
@media (max-width: 768px) {
  #predictions .match-summary,
  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 42px minmax(0, 1fr) minmax(124px, 136px) !important;
    gap: 8px !important;
    min-height: 86px !important;
  }

  #predictions .match-mobile-bet,
  #favorite-bets .favorite-match-card .match-mobile-bet {
    width: 100% !important;
    max-width: none !important;
    min-height: 62px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(54px, auto) !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 9px !important;
    border: 1px solid rgba(201, 168, 108, 0.3) !important;
    border-radius: 12px !important;
    background:
      linear-gradient(145deg, rgba(201,168,108,0.13), rgba(255,255,255,0.035) 52%, rgba(0,0,0,0.16)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
  }

  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    grid-template-areas:
      "kickoff fixture"
      ". bet" !important;
    min-height: 118px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-bet {
    grid-template-columns: minmax(0, 1fr) minmax(72px, auto) !important;
  }

  .match-mobile-pick,
  #favorite-bets .favorite-match-card .match-mobile-pick {
    display: grid !important;
    gap: 3px !important;
    min-width: 0 !important;
    text-align: left !important;
    justify-items: start !important;
  }

  .match-mobile-label,
  .match-mobile-conf small,
  .match-mobile-odds {
    display: block !important;
    color: rgba(239,242,248,0.62) !important;
    font-size: 7.5px !important;
    font-weight: 950 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  .match-mobile-pick strong,
  #favorite-bets .favorite-match-card .match-mobile-pick strong {
    width: auto !important;
    color: var(--gold-l) !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: 1.05 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .match-mobile-conf {
    display: grid !important;
    justify-items: end !important;
    gap: 3px !important;
    width: auto !important;
    min-width: 54px !important;
    max-width: 78px !important;
    color: var(--text-1) !important;
    text-align: right !important;
  }

  .match-mobile-conf strong {
    display: block !important;
    color: #84e3b0 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    line-height: 1.05 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  #favorite-bets .match-mobile-pick .match-bestbet-result {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 3px !important;
  }
}

@media (max-width: 430px) {
  #predictions .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) minmax(116px, 124px) !important;
  }

  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) !important;
  }

  #predictions .match-mobile-bet,
  #favorite-bets .favorite-match-card .match-mobile-bet {
    padding: 8px !important;
  }

  .match-mobile-pick strong,
  #favorite-bets .favorite-match-card .match-mobile-pick strong {
    font-size: 12.5px !important;
  }

  .match-mobile-conf strong {
    font-size: 11.5px !important;
  }
}

/* mobile-predictions-best-bet-row-20260516-001 */
@media (max-width: 768px) {
  #predictions .match-summary {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    grid-template-areas:
      "kickoff fixture"
      ". bet" !important;
    align-items: center !important;
    row-gap: 9px !important;
    min-height: 116px !important;
  }

  #predictions .match-summary-main {
    min-width: 0 !important;
  }

  #predictions .match-mobile-bet {
    grid-area: bet !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    justify-items: stretch !important;
    gap: 9px !important;
    padding: 8px 10px !important;
  }

  #predictions .match-mobile-pick {
    min-width: 0 !important;
    gap: 4px !important;
  }

  #predictions .match-mobile-pick strong {
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.12 !important;
    overflow-wrap: anywhere !important;
  }

  #predictions .match-mobile-odds {
    font-size: 9px !important;
    letter-spacing: 0.06em !important;
  }

  #predictions .match-mobile-conf {
    min-width: 64px !important;
    max-width: 82px !important;
    align-self: stretch !important;
    align-content: center !important;
    padding-left: 8px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
}

/* favorite-bets-right-metric-rail-20260516-001 */
@media (max-width: 768px) {
  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 42px minmax(0, 1fr) minmax(142px, 152px) !important;
    grid-template-areas: "kickoff fixture bet" !important;
    align-items: center !important;
    min-height: 88px !important;
    row-gap: 0 !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-bet {
    grid-area: bet !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 66px !important;
    grid-template-columns: minmax(0, 1fr) minmax(54px, auto) !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 9px !important;
    border-color: rgba(201, 168, 108, 0.22) !important;
    background: rgba(201, 168, 108, 0.055) !important;
    box-shadow: none !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick {
    display: grid !important;
    justify-items: start !important;
    gap: 4px !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-label,
  #favorite-bets .favorite-match-card .match-mobile-odds,
  #favorite-bets .favorite-match-card .match-mobile-conf small {
    color: rgba(239, 242, 248, 0.58) !important;
    font-size: 7.5px !important;
    font-weight: 950 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick strong {
    color: var(--text-1) !important;
    font-size: 12.5px !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-conf {
    display: grid !important;
    justify-items: end !important;
    gap: 4px !important;
    min-width: 54px !important;
    max-width: 64px !important;
    padding-left: 8px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--gold-l) !important;
    text-align: right !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-conf strong {
    color: var(--gold-l) !important;
    font-size: 11.5px !important;
    font-weight: 950 !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  #favorite-bets .match-mobile-pick .match-bestbet-result {
    width: auto !important;
    justify-content: center !important;
    margin-top: 0 !important;
    padding: 3px 7px !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: rgba(239, 242, 248, 0.72) !important;
  }
}

@media (max-width: 430px) {
  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) minmax(122px, 132px) !important;
    gap: 6px !important;
    min-height: 86px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-bet {
    min-height: 64px !important;
    grid-template-columns: minmax(0, 1fr) minmax(48px, auto) !important;
    gap: 6px !important;
    padding: 7px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick strong {
    font-size: 11.5px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-conf {
    min-width: 48px !important;
    max-width: 56px !important;
    padding-left: 6px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-conf strong {
    font-size: 10.5px !important;
  }
}

@media (max-width: 430px) {
  #predictions .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    row-gap: 8px !important;
    min-height: 112px !important;
  }

  #predictions .match-mobile-bet {
    padding: 8px 9px !important;
    gap: 7px !important;
  }

  #predictions .match-mobile-pick strong {
    font-size: 12.5px !important;
  }

  #predictions .match-mobile-conf {
    min-width: 58px !important;
    max-width: 74px !important;
    padding-left: 7px !important;
  }
}

/* mobile-predictions-best-bet-card-20260516-002 */
@media (max-width: 768px) {
  #predictions .match-mobile-bet {
    grid-template-columns: minmax(0, 1fr) minmax(62px, auto) !important;
    gap: 10px !important;
    padding: 10px !important;
    border: 1px solid rgba(201, 168, 108, 0.32) !important;
    border-radius: 12px !important;
    background:
      linear-gradient(135deg, rgba(201, 168, 108, 0.11), rgba(255, 255, 255, 0.025)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  }

  #predictions .match-mobile-pick {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "label odds"
      "pick odds" !important;
    align-items: center !important;
    column-gap: 8px !important;
    row-gap: 5px !important;
    min-width: 0 !important;
  }

  #predictions .match-mobile-label {
    grid-area: label !important;
    color: #f0a9ff !important;
    font-size: 8px !important;
    font-weight: 950 !important;
    letter-spacing: 0.1em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  #predictions .match-mobile-pick strong {
    grid-area: pick !important;
    color: var(--gold-l) !important;
    font-size: 13.5px !important;
    font-weight: 950 !important;
    line-height: 1.12 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  #predictions .match-mobile-odds {
    grid-area: odds !important;
    align-self: end !important;
    justify-self: end !important;
    width: auto !important;
    padding: 4px 7px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.22) !important;
    color: rgba(239, 242, 248, 0.82) !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }

  #predictions .match-mobile-conf {
    display: grid !important;
    justify-items: end !important;
    align-content: center !important;
    gap: 4px !important;
    min-width: 62px !important;
    max-width: 70px !important;
    padding-left: 10px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: right !important;
  }

  #predictions .match-mobile-conf small {
    color: rgba(239, 242, 248, 0.58) !important;
    font-size: 7px !important;
    font-weight: 950 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  #predictions .match-mobile-conf strong {
    color: #84e3b0 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 430px) {
  #predictions .match-mobile-bet {
    grid-template-columns: minmax(0, 1fr) minmax(56px, auto) !important;
    gap: 8px !important;
    padding: 9px !important;
  }

  #predictions .match-mobile-pick {
    grid-template-columns: minmax(0, 1fr) auto !important;
    column-gap: 6px !important;
  }

  #predictions .match-mobile-pick strong {
    font-size: 12.5px !important;
  }

  #predictions .match-mobile-odds {
    padding: 3px 6px !important;
    font-size: 8.5px !important;
  }

  #predictions .match-mobile-conf {
    min-width: 56px !important;
    max-width: 62px !important;
    padding-left: 8px !important;
  }

  #predictions .match-mobile-conf strong {
    font-size: 12px !important;
  }
}

/* favorite-bets-mobile-clean-cards-20260516-004 */
@media (max-width: 768px) {
  #favorite-bets .favorite-summary-card small::after {
    content: none !important;
    display: none !important;
  }

  #favorite-bets .favorite-date-group {
    gap: 10px !important;
  }

  #favorite-bets .favorite-date-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 6px !important;
    padding: 11px 12px !important;
    border-radius: 14px !important;
  }

  #favorite-bets .favorite-date-group-collapsible > summary.favorite-date-head::after {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 14px !important;
  }

  #favorite-bets .favorite-date-head span {
    grid-column: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
    font-size: 16px !important;
  }

  #favorite-bets .favorite-date-head span b {
    flex: 0 0 auto !important;
    margin-right: 0 !important;
  }

  #favorite-bets .favorite-date-head small {
    grid-column: 1 !important;
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
  }

  #favorite-bets .favorite-date-list,
  #favorite-bets .favorite-yesterday-list {
    gap: 10px !important;
  }

  #favorite-bets .favorite-match-card {
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.026) !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  #favorite-bets .favorite-match-card.match-card-featured,
  #favorite-bets .favorite-match-card[open] {
    border-color: rgba(255, 255, 255, 0.11) !important;
    background: rgba(255, 255, 255, 0.026) !important;
    box-shadow: none !important;
  }

  #favorite-bets .favorite-match-card + .favorite-match-card {
    margin-top: 0 !important;
  }

  #favorite-bets .favorite-match-card .match-summary {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    grid-template-areas:
      "kickoff fixture"
      "bet bet" !important;
    align-items: center !important;
    gap: 9px 10px !important;
    min-height: 0 !important;
    padding: 11px 12px !important;
  }

  #favorite-bets .favorite-match-card .match-kickoff {
    grid-area: kickoff !important;
    align-self: center !important;
  }

  #favorite-bets .favorite-match-card .match-summary-main {
    grid-area: fixture !important;
    min-width: 0 !important;
  }

  #favorite-bets .favorite-match-league {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 0 0 5px !important;
    color: rgba(239, 242, 248, 0.54) !important;
    font-size: 8px !important;
    font-weight: 900 !important;
    letter-spacing: 0.07em !important;
    line-height: 1.1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  #favorite-bets .favorite-match-league .league-flag {
    flex: 0 0 auto !important;
    width: 15px !important;
    height: 11px !important;
  }

  #favorite-bets .favorite-match-league > span:last-child {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  #favorite-bets .favorite-match-card .match-fixture {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "home score"
      "away score" !important;
    align-items: center !important;
    gap: 5px 8px !important;
  }

  #favorite-bets .favorite-match-card .match-team-home {
    grid-area: home !important;
  }

  #favorite-bets .favorite-match-card .match-team-away {
    grid-area: away !important;
  }

  #favorite-bets .favorite-match-card .match-team {
    font-size: 12px !important;
    line-height: 1.18 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
  }

  #favorite-bets .favorite-match-card .match-team > span:last-child {
    display: block !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
  }

  #favorite-bets .favorite-match-card .team-logo,
  #favorite-bets .favorite-match-card .team-logo-placeholder {
    width: 20px !important;
    height: 20px !important;
  }

  #favorite-bets .favorite-match-card .match-live-score {
    grid-area: score !important;
    justify-self: end !important;
  }

  #favorite-bets .favorite-match-card .match-live-score.has-score {
    display: inline-grid !important;
    place-items: center !important;
    min-width: 42px !important;
    min-height: 32px !important;
    padding: 5px 7px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    color: var(--text-1) !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  #favorite-bets .favorite-match-card .match-live-score.no-score,
  #favorite-bets .favorite-match-card .match-mobile-score-stack {
    display: none !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-bet {
    grid-area: bet !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 8px 9px !important;
    border: 1px solid rgba(201, 168, 108, 0.2) !important;
    border-radius: 10px !important;
    background: rgba(201, 168, 108, 0.055) !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 76px !important;
    grid-template-areas:
      "label odds"
      "pick odds"
      "status status" !important;
    align-items: stretch !important;
    gap: 6px 9px !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-label {
    grid-area: label !important;
    color: rgba(239, 242, 248, 0.55) !important;
    font-size: 7px !important;
    font-weight: 950 !important;
    letter-spacing: 0.1em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick strong {
    grid-area: pick !important;
    color: var(--gold-l) !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-odds {
    grid-area: odds !important;
    justify-self: end !important;
    align-self: stretch !important;
    display: grid !important;
    place-items: center !important;
    width: 76px !important;
    min-height: 38px !important;
    padding: 6px 7px !important;
    border: 1px solid rgba(201, 168, 108, 0.26) !important;
    border-radius: 9px !important;
    background: rgba(0, 0, 0, 0.24) !important;
    color: var(--gold-l) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-odds small {
    display: block !important;
    color: rgba(239, 242, 248, 0.58) !important;
    font-size: 7px !important;
    font-weight: 950 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-odds strong {
    display: block !important;
    margin-top: 3px !important;
    color: var(--text-1) !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-conf {
    display: none !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick .match-bestbet-result {
    grid-area: status !important;
    justify-self: stretch !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 5px 8px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(0, 0, 0, 0.18) !important;
    color: rgba(239, 242, 248, 0.78) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick .match-bestbet-result small {
    color: rgba(239, 242, 248, 0.52) !important;
    font-size: 7px !important;
    font-weight: 950 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick .match-bestbet-result strong {
    min-width: max-content !important;
    color: rgba(239, 242, 248, 0.88) !important;
    font-size: 10px !important;
    font-weight: 950 !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick .match-bestbet-result.won {
    border-color: rgba(52, 199, 89, 0.34) !important;
    background: rgba(52, 199, 89, 0.1) !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick .match-bestbet-result.won strong {
    color: #7dffae !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick .match-bestbet-result.lost {
    border-color: rgba(255, 69, 58, 0.36) !important;
    background: rgba(255, 69, 58, 0.1) !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick .match-bestbet-result.lost strong {
    color: #ff9b95 !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick .match-bestbet-result.open strong {
    color: rgba(239, 242, 248, 0.86) !important;
  }
}

@media (max-width: 430px) {
  #favorite-bets .favorite-match-card .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 10px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-bet {
    padding: 8px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick strong {
    font-size: 12px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-pick {
    grid-template-columns: minmax(0, 1fr) 70px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-odds {
    width: 70px !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-odds strong {
    font-size: 15px !important;
  }
}

/* mobile-nav-score-refresh-20260516-001 */
@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 34px !important;
    margin-left: auto !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.035) !important;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav-links,
  .nav-actions,
  .nav-mobile {
    display: none !important;
  }

  .nav.nav-menu-open .nav-links {
    order: 2 !important;
    flex: 1 0 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .nav.nav-menu-open .nav-actions {
    order: 3 !important;
    flex: 1 0 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
  }

  body:not([data-page="home"]) main {
    padding-top: 78px !important;
  }

  body[data-page="home"] .hero {
    padding-top: 78px !important;
  }

  body.nav-menu-open:not([data-page="home"]) main {
    padding-top: 178px !important;
  }

  body.nav-menu-open[data-page="home"] .hero {
    padding-top: 178px !important;
  }

  .league-group .match-live-minute,
  .match-kickoff-live .match-live-minute {
    color: #ff6b63 !important;
  }

  #predictions .match-mobile-scoreline {
    display: inline-grid !important;
    justify-self: end !important;
    place-items: center !important;
    min-width: 42px !important;
    margin-top: 2px !important;
    padding: 3px 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.28) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center !important;
  }
}

@media (max-width: 560px) {
  .nav.nav-menu-open .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.nav-menu-open:not([data-page="home"]) main {
    padding-top: 224px !important;
  }

  body.nav-menu-open[data-page="home"] .hero {
    padding-top: 224px !important;
  }
}

@media (max-width: 430px) {
  body.nav-menu-open:not([data-page="home"]) main {
    padding-top: 232px !important;
  }

  body.nav-menu-open[data-page="home"] .hero {
    padding-top: 232px !important;
  }

  #predictions .match-mobile-scoreline {
    min-width: 38px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 10px !important;
  }
}

/* mobile-score-team-row-20260516-001 */
.match-mobile-scoreline {
  display: none;
}

@media (max-width: 768px) {
  #predictions .match-summary {
    position: relative !important;
  }

  #predictions .match-fixture {
    padding-right: 52px !important;
  }

  #predictions .match-mobile-scoreline {
    grid-area: fixture !important;
    align-self: start !important;
    justify-self: end !important;
    display: inline-grid !important;
    place-items: center !important;
    min-width: 38px !important;
    margin: 1px 0 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: right !important;
    z-index: 2 !important;
  }
}

@media (max-width: 430px) {
  #predictions .match-fixture {
    padding-right: 46px !important;
  }

  #predictions .match-mobile-scoreline {
    min-width: 34px !important;
    font-size: 11px !important;
  }
}

/* mobile-fixture-result-stack-20260516-002 */
@media (max-width: 768px) {
  #predictionsApp .match-fixture,
  #predictions .match-fixture {
    grid-template-columns: minmax(0, 1fr) 34px !important;
    grid-template-areas:
      "home scores"
      "away scores" !important;
    column-gap: 8px !important;
    padding-right: 0 !important;
  }

  #predictionsApp .match-team-home,
  #predictions .match-team-home {
    grid-area: home !important;
  }

  #predictionsApp .match-team-away,
  #predictions .match-team-away {
    grid-area: away !important;
  }

  #predictionsApp .match-mobile-score-stack,
  #predictions .match-mobile-score-stack {
    grid-area: scores !important;
    display: grid !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    align-self: stretch !important;
    justify-self: end !important;
    align-items: center !important;
    justify-items: end !important;
    min-width: 28px !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: right !important;
  }

  #predictionsApp .match-mobile-team-score,
  #predictions .match-mobile-team-score {
    display: block !important;
    min-width: 18px !important;
    color: #ffffff !important;
  }

  #predictionsApp .match-mobile-team-score.muted,
  #predictions .match-mobile-team-score.muted {
    color: rgba(245, 247, 252, 0.45) !important;
  }

  #predictionsApp .match-mobile-scoreline,
  #predictions .match-mobile-scoreline {
    display: none !important;
  }
}

@media (max-width: 430px) {
  #predictionsApp .match-fixture,
  #predictions .match-fixture {
    grid-template-columns: minmax(0, 1fr) 30px !important;
  }

  #predictionsApp .match-mobile-score-stack,
  #predictions .match-mobile-score-stack {
    min-width: 24px !important;
    font-size: 11px !important;
  }
}

/* mobile-large-result-scoreline-20260516-001 */
@media (max-width: 768px) {
  #predictionsApp .match-summary,
  #predictions .match-summary {
    position: relative !important;
  }

  #predictionsApp .match-fixture,
  #predictions .match-fixture {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "home"
      "away" !important;
    padding-right: 64px !important;
  }

  #predictionsApp .match-mobile-score-stack,
  #predictions .match-mobile-score-stack {
    display: none !important;
  }

  #predictionsApp .match-mobile-scoreline,
  #predictions .match-mobile-scoreline {
    position: absolute !important;
    top: 18px !important;
    right: 12px !important;
    display: inline-grid !important;
    place-items: center !important;
    min-width: 52px !important;
    min-height: 34px !important;
    padding: 4px 7px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.26) !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    z-index: 3 !important;
  }
}

@media (max-width: 430px) {
  #predictionsApp .match-fixture,
  #predictions .match-fixture {
    padding-right: 58px !important;
  }

  #predictionsApp .match-mobile-scoreline,
  #predictions .match-mobile-scoreline {
    right: 10px !important;
    min-width: 48px !important;
    min-height: 32px !important;
    font-size: 16px !important;
  }
}

/* mobile-stacked-result-digits-20260516-001 */
@media (max-width: 768px) {
  #predictionsApp .match-fixture,
  #predictions .match-fixture,
  #favorite-bets .favorite-match-card .match-fixture {
    grid-template-columns: minmax(0, 1fr) 44px !important;
    grid-template-areas:
      "home scores"
      "away scores" !important;
    column-gap: 10px !important;
    padding-right: 0 !important;
  }

  #predictionsApp .match-mobile-scoreline,
  #predictions .match-mobile-scoreline {
    display: none !important;
  }

  #predictionsApp .match-mobile-score-stack,
  #predictions .match-mobile-score-stack,
  #favorite-bets .favorite-match-card .match-mobile-score-stack {
    grid-area: scores !important;
    display: grid !important;
    grid-template-rows: repeat(2, minmax(24px, 1fr)) !important;
    align-self: stretch !important;
    justify-self: end !important;
    align-items: center !important;
    justify-items: end !important;
    width: 44px !important;
    min-width: 44px !important;
    row-gap: 8px !important;
    color: #ffffff !important;
    font-size: 19px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: right !important;
  }

  #predictionsApp .match-mobile-team-score,
  #predictions .match-mobile-team-score,
  #favorite-bets .favorite-match-card .match-mobile-team-score {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 100% !important;
    min-height: 24px !important;
    color: #ffffff !important;
  }

  #predictionsApp .match-mobile-team-score.muted,
  #predictions .match-mobile-team-score.muted,
  #favorite-bets .favorite-match-card .match-mobile-team-score.muted {
    color: rgba(245, 247, 252, 0.5) !important;
  }
}

@media (max-width: 430px) {
  #predictionsApp .match-fixture,
  #predictions .match-fixture,
  #favorite-bets .favorite-match-card .match-fixture {
    grid-template-columns: minmax(0, 1fr) 38px !important;
    column-gap: 8px !important;
  }

  #predictionsApp .match-mobile-score-stack,
  #predictions .match-mobile-score-stack,
  #favorite-bets .favorite-match-card .match-mobile-score-stack {
    width: 38px !important;
    min-width: 38px !important;
    font-size: 18px !important;
  }
}

/* favorite-hide-inline-score-on-mobile-20260530-001 */
@media (max-width: 768px) {
  #favorite-bets .favorite-match-card .match-live-score,
  #favorite-bets .favorite-match-card .match-live-score.has-score {
    display: none !important;
  }
}

/* favorite-summary-mobile-four-up-20260530-001 */
@media (max-width: 768px) {
  #favorite-bets .favorite-summary-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 5px !important;
  }

  #favorite-bets .favorite-summary-card {
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 7px 3px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    border-radius: 10px !important;
    text-align: center !important;
  }

  #favorite-bets .favorite-summary-card span {
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  #favorite-bets .favorite-summary-card small {
    max-width: 100% !important;
    overflow: hidden !important;
    font-size: 7px !important;
    line-height: 1 !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
  }

  #favorite-bets .favorite-summary-card small::after {
    content: none !important;
    display: none !important;
  }

  #favorite-bets .favorite-match-card .match-live-score,
  #favorite-bets .favorite-match-card .match-live-score.has-score {
    display: none !important;
  }
}

@media (max-width: 430px) {
  #favorite-bets .favorite-summary-grid {
    gap: 4px !important;
  }

  #favorite-bets .favorite-summary-card {
    min-height: 44px !important;
    padding-inline: 2px !important;
  }

  #favorite-bets .favorite-summary-card span {
    font-size: 15px !important;
  }

  #favorite-bets .favorite-summary-card small {
    font-size: 6px !important;
    letter-spacing: 0.02em !important;
  }
}

/* predictions-time-color-parity-20260602-001 */
body[data-page="predictions"] #predictions .match-time-split,
body[data-page="predictions"] #predictionsApp .match-time-split,
body[data-page="predictions"] .league-group .match-time-split,
body[data-page="predictions"] .match-kickoff-live,
body[data-page="predictions"] .league-group .match-live-label,
body[data-page="predictions"] .match-kickoff-live .match-live-label,
body[data-page="predictions"] .league-group .match-live-minute,
body[data-page="predictions"] .match-kickoff-live .match-live-minute {
  color: #ff6b63 !important;
}

/* favorite-date-badge-hidden-20260603-001 */
#favorite-bets .favorite-date-head span b {
  display: none !important;
}

/* free-analysis-date-chip-prominent-20260603-001 */
body[data-page="free-analysis"] .ec-analysis-card .ec-analysis-meta-chip:first-child {
  min-height: 30px !important;
  padding: 7px 13px !important;
  border-color: rgba(201,168,108,0.62) !important;
  background: linear-gradient(135deg, rgba(201,168,108,0.26), rgba(201,168,108,0.11)) !important;
  box-shadow: 0 0 0 1px rgba(201,168,108,0.12), 0 10px 26px rgba(201,168,108,0.12) !important;
  color: var(--gold-l) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
}

/* favorite-league-left-over-kickoff-20260603-001 */
@media (max-width: 768px) {
  #favorite-bets .favorite-match-card .match-summary {
    grid-template-areas:
      "league league"
      "kickoff fixture"
      "bet bet" !important;
  }

  #favorite-bets .favorite-match-card .favorite-match-league {
    grid-area: league !important;
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: start !important;
    max-width: 100% !important;
    margin: 0 0 4px !important;
  }

  #favorite-bets .favorite-match-card .match-kickoff {
    grid-area: kickoff !important;
  }

  #favorite-bets .favorite-match-card .match-summary-main {
    grid-area: fixture !important;
  }

  #favorite-bets .favorite-match-card .match-mobile-bet {
    grid-area: bet !important;
  }
}

/* favorite-league-responsive-visible-20260603-001 */
@media (max-width: 768px) {
  #favorite-bets .favorite-match-card .match-summary {
    grid-template-areas:
      "league league"
      "kickoff fixture"
      "bet bet" !important;
  }

  #favorite-bets .favorite-match-card .favorite-match-league {
    grid-area: league !important;
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    margin: 0 0 4px !important;
    overflow: visible !important;
  }

  #favorite-bets .favorite-match-card .favorite-match-league > span:last-child {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
  }
}

/* bet-slips-mobile-full-width-20260604-001 */
@media (max-width: 768px) {
  body[data-page="bet-slips"] .bet-slips .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  body[data-page="bet-slips"] .bet-slips-shell {
    overflow: hidden;
  }

  body[data-page="bet-slips"] .bet-slip-day-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    overflow: visible;
    overscroll-behavior-inline: auto;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  body[data-page="bet-slips"] .bet-slip-day-grid > .bet-slip-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex: initial;
    scroll-snap-align: none;
  }

  body[data-page="bet-slips"] .bet-slip-card {
    width: 100%;
    max-width: 100%;
  }

  body[data-page="bet-slips"] .bet-slip-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  body[data-page="bet-slips"] .bet-slip-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body[data-page="bet-slips"] .bet-slip-leg-meta {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 6px;
  }

  body[data-page="bet-slips"] .bet-slip-leg-league,
  body[data-page="bet-slips"] .bet-slip-leg-date {
    width: 100%;
    min-width: 0;
  }

  body[data-page="bet-slips"] .bet-slip-leg-league span:last-child,
  body[data-page="bet-slips"] .bet-slip-leg-date {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body[data-page="bet-slips"] .bet-slip-fixture {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: start;
    gap: 7px !important;
  }

  body[data-page="bet-slips"] .bet-slip-team,
  body[data-page="bet-slips"] .bet-slip-team:last-child {
    width: 100%;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  body[data-page="bet-slips"] .bet-slip-team span:last-child {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  body[data-page="bet-slips"] .bet-slip-vs {
    width: auto !important;
    min-width: 34px;
    justify-self: start;
    padding: 0 10px;
  }

  body[data-page="bet-slips"] .bet-slip-pick-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: 8px !important;
  }

  body[data-page="bet-slips"] .bet-slip-pick {
    grid-column: 1 / -1;
  }

  body[data-page="bet-slips"] .bet-slip-leg-pill {
    min-height: 44px;
    padding: 8px 9px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.035) !important;
    text-align: left !important;
  }

  body[data-page="bet-slips"] .bet-slip-leg-pill strong {
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  body[data-page="bet-slips"] .bet-slip-leg-result {
    align-self: stretch !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px !important;
  }
}

/* prediction-bestbet-mobile-polish-20260609-001 */
@media (max-width: 768px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-summary {
    grid-template-columns: 42px minmax(0, 1fr) clamp(112px, 32vw, 128px) !important;
    grid-template-areas: "kickoff fixture bet" !important;
    gap: 8px !important;
    min-height: 92px !important;
    padding: 10px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-bet {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "pick"
      "conf" !important;
    align-content: center !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    justify-self: stretch !important;
    gap: 5px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 66px !important;
    max-height: none !important;
    padding: 7px 8px !important;
    border: 1px solid rgba(201, 168, 108, 0.2) !important;
    border-radius: 11px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card:not(.match-card-settled) .match-mobile-bet {
    background: rgba(201, 168, 108, 0.055) !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-pick {
    grid-area: pick !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "label"
      "pick"
      "odds" !important;
    grid-auto-flow: row !important;
    gap: 3px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    justify-items: start !important;
    align-items: start !important;
    justify-self: stretch !important;
    text-align: left !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-label {
    grid-area: label !important;
    color: #ff9cf3 !important;
    font-size: 7px !important;
    font-weight: 950 !important;
    letter-spacing: 0.06em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-pick strong {
    grid-area: pick !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
    color: var(--text-1) !important;
    font-size: 10px !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
    text-align: left !important;
    text-overflow: clip !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-odds {
    grid-area: odds !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-self: start !important;
    width: max-content !important;
    min-width: 0 !important;
    max-width: 100% !important;
    color: rgba(235, 239, 247, 0.72) !important;
    font-size: 8.5px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf {
    grid-area: conf !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding-top: 5px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
    line-height: 1 !important;
    text-align: left !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf small {
    color: rgba(235, 239, 247, 0.5) !important;
    font-size: 7px !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf strong {
    font-size: 10px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card:not(.match-card-settled) .match-mobile-conf strong {
    color: #8fe6a8 !important;
  }
}

@media (max-width: 430px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) clamp(108px, 31vw, 120px) !important;
    gap: 6px !important;
    min-height: 88px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-bet {
    padding: 6px 7px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-pick strong,
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf strong {
    font-size: 9.5px !important;
  }
}

/* prediction-bestbet-mobile-restore-chip-20260609-001 */
@media (max-width: 768px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-bet {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(56px, auto) !important;
    grid-template-areas: "pick conf" !important;
    align-items: center !important;
    justify-items: stretch !important;
    gap: 8px !important;
    min-height: 62px !important;
    padding: 9px !important;
    border-color: rgba(201, 168, 108, 0.32) !important;
    background:
      linear-gradient(135deg, rgba(201, 168, 108, 0.11), rgba(255, 255, 255, 0.025)) !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-pick {
    grid-area: pick !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "label odds"
      "pick odds" !important;
    align-items: center !important;
    gap: 5px 6px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    text-align: left !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-label {
    grid-area: label !important;
    color: #f0a9ff !important;
    font-size: 7.5px !important;
    letter-spacing: 0.08em !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-pick strong {
    grid-area: pick !important;
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
    color: var(--gold-l) !important;
    font-size: 12px !important;
    line-height: 1.08 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-odds {
    grid-area: odds !important;
    align-self: end !important;
    justify-self: end !important;
    width: auto !important;
    padding: 3px 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.22) !important;
    color: rgba(239, 242, 248, 0.82) !important;
    font-size: 8px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf {
    grid-area: conf !important;
    display: grid !important;
    justify-items: end !important;
    align-content: center !important;
    gap: 4px !important;
    min-width: 56px !important;
    max-width: 62px !important;
    padding: 0 0 0 8px !important;
    border-top: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: right !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf small {
    color: rgba(239, 242, 248, 0.58) !important;
    font-size: 6.5px !important;
    letter-spacing: 0.06em !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf strong {
    color: #84e3b0 !important;
    font-size: 11px !important;
  }
}

@media (max-width: 430px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-pick strong {
    font-size: 11.5px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf strong {
    font-size: 10.5px !important;
  }
}

/* prediction-bestbet-mobile-comment-adjust-20260609-001 */
@media (max-width: 768px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-summary {
    grid-template-columns: 42px minmax(0, 1fr) clamp(128px, 31vw, 144px) !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-bet {
    grid-template-columns: minmax(0, 1fr) 50px !important;
    grid-template-areas: "pick conf" !important;
    gap: 6px !important;
    min-height: 66px !important;
    padding: 8px 9px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-pick {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "label"
      "pick"
      "odds" !important;
    align-content: center !important;
    gap: 3px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-pick strong {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 11px !important;
    line-height: 1.08 !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-odds {
    justify-self: start !important;
    padding: 3px 6px !important;
    font-size: 8px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf {
    min-width: 50px !important;
    max-width: 50px !important;
    padding-left: 7px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf small {
    font-size: 6px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-conf strong {
    font-size: 10.5px !important;
  }
}

@media (max-width: 430px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) 122px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-bet {
    grid-template-columns: minmax(0, 1fr) 48px !important;
    gap: 5px !important;
    padding: 7px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-pick strong {
    font-size: 10.5px !important;
  }
}

/* prediction-kickoff-status-colors-20260609-001 */
body[data-page="predictions"] #predictions .match-kickoff-upcoming .match-time-split,
body[data-page="predictions"] #predictionsApp .match-kickoff-upcoming .match-time-split,
body[data-page="predictions"] #predictions .match-kickoff-upcoming .match-time-split span,
body[data-page="predictions"] #predictionsApp .match-kickoff-upcoming .match-time-split span {
  color: #69e68f !important;
  text-shadow: 0 0 14px rgba(105, 230, 143, 0.24) !important;
}

body[data-page="predictions"] #predictions .match-kickoff-live,
body[data-page="predictions"] #predictionsApp .match-kickoff-live,
body[data-page="predictions"] #predictions .match-kickoff-live .match-live-label,
body[data-page="predictions"] #predictionsApp .match-kickoff-live .match-live-label,
body[data-page="predictions"] #predictions .match-kickoff-live .match-live-minute,
body[data-page="predictions"] #predictionsApp .match-kickoff-live .match-live-minute {
  color: #ff4d5e !important;
  text-shadow: 0 0 14px rgba(255, 77, 94, 0.28) !important;
}

/* prediction-mobile-health-chip-20260609-001 */
body[data-page="predictions"] #predictions .match-mobile-health,
body[data-page="predictions"] #predictionsApp .match-mobile-health {
  display: none;
}

@media (max-width: 768px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-summary,
  body[data-page="predictions"] #predictions .match-card .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card .match-summary {
    grid-template-columns: 42px minmax(0, 1fr) clamp(128px, 31vw, 144px) !important;
    grid-template-areas:
      "kickoff fixture bet"
      "health health health" !important;
    row-gap: 8px !important;
    min-height: 130px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-health,
  body[data-page="predictions"] #predictions .match-card .match-mobile-health,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health {
    grid-area: health !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 32px !important;
    padding: 7px 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    box-sizing: border-box !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-health small,
  body[data-page="predictions"] #predictions .match-card .match-mobile-health small,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health small {
    color: rgba(235, 239, 247, 0.48) !important;
    font-size: 7px !important;
    font-weight: 950 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-health strong,
  body[data-page="predictions"] #predictions .match-card .match-mobile-health strong,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health strong {
    min-width: 0 !important;
    color: var(--gold-l) !important;
    font-size: 10.5px !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
    text-align: right !important;
    overflow-wrap: anywhere !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-health.match-health-stable strong,
  body[data-page="predictions"] #predictions .match-card .match-mobile-health.match-health-healthy strong,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health.match-health-stable strong,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health.match-health-healthy strong {
    color: #84e3b0 !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-health.match-health-watch strong,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health.match-health-watch strong {
    color: #ffd978 !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-health.match-health-risk strong,
  body[data-page="predictions"] #predictions .match-card .match-mobile-health.match-health-broken strong,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health.match-health-risk strong,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health.match-health-broken strong {
    color: #ff8e99 !important;
  }
}

@media (max-width: 430px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-summary,
  body[data-page="predictions"] #predictions .match-card .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) 122px !important;
    min-height: 126px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-health,
  body[data-page="predictions"] #predictions .match-card .match-mobile-health,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health {
    min-height: 30px !important;
    padding: 6px 8px !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-health strong,
  body[data-page="predictions"] #predictions .match-card .match-mobile-health strong,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-health strong {
    font-size: 10px !important;
  }
}

/* prediction-mobile-odds-badge-20260609-001 */
@media (max-width: 768px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-odds,
  body[data-page="predictions"] #predictions .match-card .match-mobile-odds,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-odds {
    grid-area: odds !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: start !important;
    width: max-content !important;
    min-width: 66px !important;
    max-width: 100% !important;
    min-height: 20px !important;
    margin-top: 2px !important;
    padding: 4px 8px !important;
    border: 1px solid rgba(255, 224, 156, 0.75) !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #f3d287, #c9a86c) !important;
    color: #120f08 !important;
    font-size: 10.5px !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    text-transform: none !important;
    white-space: nowrap !important;
    box-shadow: 0 6px 14px rgba(201, 168, 108, 0.22) !important;
  }
}

@media (max-width: 430px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card .match-mobile-odds,
  body[data-page="predictions"] #predictions .match-card .match-mobile-odds,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-odds {
    min-width: 62px !important;
    min-height: 19px !important;
    padding: 4px 7px !important;
    font-size: 10px !important;
  }
}

/* mobile-left-nav-20260619-003 */
@media (max-width: 768px) {
  .nav {
    min-height: 66px !important;
    z-index: 1000 !important;
  }

  .nav-inner {
    min-height: 66px !important;
    position: relative !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    row-gap: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .nav > .nav-inner .nav-logo {
    order: 2 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    flex: 0 0 auto !important;
    width: max-content !important;
    max-width: calc(100% - 112px) !important;
    min-width: 0 !important;
    margin: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    order: 1 !important;
    flex: 0 0 40px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    margin-left: 0 !important;
    margin-right: 12px !important;
    border-radius: 12px !important;
  }

  .nav-links,
  .nav-actions,
  .nav.nav-menu-open .nav-links,
  .nav.nav-menu-open .nav-actions {
    display: none !important;
  }

  .nav-mobile {
    position: fixed !important;
    top: 66px !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    z-index: 1001 !important;
    display: flex !important;
    flex-direction: column !important;
    width: min(82vw, 340px) !important;
    height: calc(100svh - 66px) !important;
    max-height: none !important;
    padding: 18px 16px 22px !important;
    gap: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(8, 8, 8, 0.98) !important;
    box-shadow: 18px 0 36px rgba(0, 0, 0, 0.48) !important;
    overflow-y: auto !important;
    transform: translateX(-105%) !important;
    transition: transform 0.22s ease !important;
  }

  .nav-mobile.open {
    transform: translateX(0) !important;
  }

  .nav.nav-menu-open::after {
    content: "" !important;
    position: fixed !important;
    inset: 66px 0 0 0 !important;
    z-index: 1000 !important;
    background: rgba(0,0,0,0.48) !important;
    backdrop-filter: blur(2px) !important;
    pointer-events: none !important;
  }

  .nav-mobile-brand {
    display: none !important;
  }

  .nav-mobile ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .nav-mobile ul li,
  .nav-mobile ul li a {
    width: 100% !important;
    min-width: 0 !important;
  }

  .nav-mobile ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    color: rgba(239, 242, 248, 0.78) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .nav-mobile ul li a.is-active {
    border-color: rgba(201, 168, 108, 0.58) !important;
    background: rgba(201, 168, 108, 0.16) !important;
    color: #ffffff !important;
  }

  .nav-mobile-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 2px !important;
  }

  .nav-mobile-actions .btn {
    width: 100% !important;
    min-height: 42px !important;
    justify-content: flex-start !important;
    border-radius: 8px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    text-align: left !important;
  }

  body:not([data-page="home"]) main,
  body.nav-menu-open:not([data-page="home"]) main {
    padding-top: 78px !important;
  }

  body[data-page="home"] .hero,
  body.nav-menu-open[data-page="home"] .hero {
    padding-top: 78px !important;
  }
}

@media (max-width: 430px) {
  .nav-mobile {
    width: min(84vw, 318px) !important;
  }

  .nav-mobile ul li a,
  .nav-mobile-actions .btn {
    min-height: 40px !important;
    font-size: 12.5px !important;
  }
}

/* prediction-bookmaker-names-responsive-20260702-001 */
body[data-page="predictions"] #predictions .match-bookmaker-chip,
body[data-page="predictions"] #predictionsApp .match-bookmaker-chip {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-areas:
    "label status"
    "names status" !important;
  align-items: center !important;
  gap: 3px 10px !important;
}

body[data-page="predictions"] #predictions .match-bookmaker-chip small,
body[data-page="predictions"] #predictionsApp .match-bookmaker-chip small {
  grid-area: label !important;
}

body[data-page="predictions"] #predictions .match-bookmaker-chip strong,
body[data-page="predictions"] #predictionsApp .match-bookmaker-chip strong {
  grid-area: names !important;
  min-width: 0 !important;
  overflow: hidden !important;
  color: var(--text-1) !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body[data-page="predictions"] #predictions .match-bookmaker-chip em,
body[data-page="predictions"] #predictionsApp .match-bookmaker-chip em {
  grid-area: status !important;
  justify-self: end !important;
  color: rgba(235, 239, 247, 0.68) !important;
  font-size: 9.5px !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body[data-page="predictions"] #predictions .match-mobile-bookmakers,
body[data-page="predictions"] #predictionsApp .match-mobile-bookmakers {
  display: none;
}

@media (max-width: 768px) {
  body[data-page="predictions"] #predictions .match-card.match-card-has-league .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-league .match-summary {
    grid-template-areas:
      "league league league"
      "kickoff fixture bet"
      "health health health" !important;
    min-height: 0 !important;
    padding: 10px !important;
    row-gap: 8px !important;
  }

  body[data-page="predictions"] #predictions .match-card.match-card-has-bookmakers .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-bookmakers .match-summary {
    grid-template-areas:
      "kickoff fixture bet"
      "health health health"
      "bookmakers bookmakers bookmakers" !important;
    min-height: 0 !important;
    padding: 10px !important;
    row-gap: 8px !important;
  }

  body[data-page="predictions"] #predictions .match-card.match-card-has-league.match-card-has-bookmakers .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-league.match-card-has-bookmakers .match-summary {
    grid-template-areas:
      "league league league"
      "kickoff fixture bet"
      "health health health"
      "bookmakers bookmakers bookmakers" !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-card-league,
  body[data-page="predictions"] #predictionsApp .match-card .match-card-league {
    grid-area: league !important;
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0 2px 2px !important;
    color: rgba(235, 239, 247, 0.78) !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-card-league > span:last-child,
  body[data-page="predictions"] #predictionsApp .match-card .match-card-league > span:last-child {
    min-width: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-bookmakers,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-bookmakers {
    grid-area: bookmakers !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 32px !important;
    padding: 7px 10px !important;
    border: 1px solid rgba(128, 176, 255, 0.18) !important;
    border-radius: 10px !important;
    background: rgba(128, 176, 255, 0.045) !important;
    box-sizing: border-box !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-bookmakers small,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-bookmakers small {
    color: rgba(235, 239, 247, 0.48) !important;
    font-size: 7px !important;
    font-weight: 950 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-bookmakers strong,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-bookmakers strong {
    min-width: 0 !important;
    color: var(--text-1) !important;
    font-size: 10.5px !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
    overflow-wrap: anywhere !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-bookmakers em,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-bookmakers em {
    justify-self: end !important;
    color: rgba(235, 239, 247, 0.68) !important;
    font-size: 9.5px !important;
    font-style: normal !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-bookmakers.match-bookmaker-available,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-bookmakers.match-bookmaker-available {
    border-color: rgba(143, 230, 168, 0.3) !important;
    background: rgba(143, 230, 168, 0.075) !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-bookmakers.match-bookmaker-available em,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-bookmakers.match-bookmaker-available em {
    color: #8fe6a8 !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-bookmakers.match-bookmaker-partial em,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-bookmakers.match-bookmaker-partial em {
    color: #ffd978 !important;
  }
}

@media (max-width: 430px) {
  body[data-page="predictions"] #predictions .match-card.match-card-has-league .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-league .match-summary,
  body[data-page="predictions"] #predictions .match-card.match-card-has-bookmakers .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-bookmakers .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) 122px !important;
    min-height: 0 !important;
    padding: 9px !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-bookmakers,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-bookmakers {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  body[data-page="predictions"] #predictions .match-card .match-mobile-bookmakers em,
  body[data-page="predictions"] #predictionsApp .match-card .match-mobile-bookmakers em {
    grid-column: 2 !important;
    justify-self: start !important;
  }
}

/* prediction-bookmaker-mobile-grid-priority-20260702-002 */
@media (max-width: 768px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card.match-card-has-league .match-summary,
  body[data-page="predictions"] #predictions .match-card.match-card-has-league .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-league .match-summary {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) clamp(128px, 31vw, 144px) !important;
    grid-template-areas:
      "league league league"
      "kickoff fixture bet"
      "health health health" !important;
    grid-template-rows: auto auto auto !important;
    align-items: stretch !important;
    row-gap: 8px !important;
    min-height: 0 !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card.match-card-has-bookmakers .match-summary,
  body[data-page="predictions"] #predictions .match-card.match-card-has-bookmakers .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-bookmakers .match-summary {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) clamp(128px, 31vw, 144px) !important;
    grid-template-areas:
      "kickoff fixture bet"
      "health health health"
      "bookmakers bookmakers bookmakers" !important;
    grid-template-rows: auto auto auto !important;
    align-items: stretch !important;
    row-gap: 8px !important;
    min-height: 0 !important;
  }

  body[data-page="predictions"] #predictions #predictionsApp .match-card.match-card-has-league.match-card-has-bookmakers .match-summary,
  body[data-page="predictions"] #predictions .match-card.match-card-has-league.match-card-has-bookmakers .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-league.match-card-has-bookmakers .match-summary {
    grid-template-areas:
      "league league league"
      "kickoff fixture bet"
      "health health health"
      "bookmakers bookmakers bookmakers" !important;
    grid-template-rows: auto auto auto auto !important;
  }
}

@media (max-width: 430px) {
  body[data-page="predictions"] #predictions #predictionsApp .match-card.match-card-has-league .match-summary,
  body[data-page="predictions"] #predictions #predictionsApp .match-card.match-card-has-bookmakers .match-summary,
  body[data-page="predictions"] #predictions .match-card.match-card-has-league .match-summary,
  body[data-page="predictions"] #predictions .match-card.match-card-has-bookmakers .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-league .match-summary,
  body[data-page="predictions"] #predictionsApp .match-card.match-card-has-bookmakers .match-summary {
    grid-template-columns: 38px minmax(0, 1fr) 122px !important;
  }
}

