.sw-sportsbook-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 350px;
  gap: 0;
  min-height: calc(100vh - 91px);
}
.sw-sidebar {
  background: var(--sw-surface);
  border-right: 1px solid #1b2b35;
  position: sticky;
  top: 91px;
  height: calc(100vh - 91px);
  overflow: auto;
}
.sw-sidebar__tabs {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--sw-border);
}
.sw-sidebar__tabs a, .sw-sidebar__tabs span {
  min-height: 70px;
  display: grid;
  place-items: center;
  gap: 2px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 3px solid transparent;
}
.sw-sidebar__tabs .active { color: var(--sw-yellow); border-bottom-color: var(--sw-yellow); background: #20303b; }
.sw-sidebar__tabs .disabled { opacity: .45; }
.sw-sidebar__tabs i { font-size: 22px; }
.sw-sidebar__search {
  height: 44px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid var(--sw-border);
}
.sw-sidebar__search input { width: 100%; border: 0; background: transparent; color: var(--sw-text); outline: 0; }
.sw-sidebar__nav a {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  color: var(--sw-text);
  border-bottom: 1px solid #1d2f3a;
  font-weight: 800;
}
.sw-sidebar__nav a.active { color: var(--sw-yellow); box-shadow: inset 3px 0 0 var(--sw-yellow); background: #22323e; }
.sw-sidebar__nav i, .sw-sidebar__nav svg { width: 18px; color: var(--sw-muted); }
.sw-sidebar__sub { padding-left: 28px !important; font-size: 13px; color: var(--sw-muted) !important; }
.sw-sportsbook-main { min-width: 0; padding: 8px; padding-bottom: 74px; }

.sw-promo {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  background: linear-gradient(90deg, #014b26, #07803d 55%, #14242e);
  border: 1px solid #12663a;
  border-radius: 5px;
}
.sw-promo span { display: block; color: var(--sw-yellow); font-weight: 900; text-transform: uppercase; }
.sw-promo strong { display: block; font-size: 24px; line-height: 1.1; }
.sw-promo small { color: #d5ffe4; }
.sw-promo a { background: var(--sw-yellow); color: #111; font-weight: 900; padding: 10px 18px; border-radius: 4px; }
.sw-winners {
  height: 38px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 0 10px;
  overflow: hidden;
  background: #22323e;
  border: 1px solid var(--sw-border);
  border-radius: 4px;
  color: var(--sw-muted);
  white-space: nowrap;
}
.sw-winners > span { color: var(--sw-green); font-size: 18px; }
.sw-winners__track {
  display: flex;
  gap: 12px;
  min-width: max-content;
  animation: swTicker 24s linear infinite;
}
.sw-winners b { color: white; }
.sw-winners strong { color: var(--sw-yellow); }
@keyframes swTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sw-featured-events, .sw-shortcuts, .sw-market-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 8px;
}
.sw-featured-events::-webkit-scrollbar, .sw-shortcuts::-webkit-scrollbar, .sw-market-tabs::-webkit-scrollbar { display: none; }
.sw-featured-card {
  flex: 0 0 310px;
  min-height: 94px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: var(--sw-bg-deep);
  border: 1px solid var(--sw-market);
  border-radius: 5px;
}
.sw-featured-card span, .sw-featured-card small { color: var(--sw-muted); font-size: 12px; }
.sw-featured-card strong { color: var(--sw-yellow); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sw-featured-card b { color: var(--sw-text); }
.sw-shortcuts a {
  flex: 0 0 132px;
  min-height: 70px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 8px;
  background: linear-gradient(180deg, #304454, #0f713d);
  border: 1px solid #4a6478;
  border-radius: 5px;
  color: var(--sw-yellow);
  font-weight: 900;
}
.sw-shortcuts i { font-size: 24px; color: var(--sw-text); }
.sw-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 8px;
}
.sw-filters a, .sw-toggle-row button {
  min-height: 44px;
  border: 0;
  background: var(--sw-surface);
  color: var(--sw-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  border-radius: 4px;
}
.sw-filters a.active, .sw-toggle-row button.active { background: var(--sw-odds); color: var(--sw-yellow); box-shadow: inset 0 -2px 0 var(--sw-yellow); }
.sw-toggle-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 6px; }
.sw-search-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sw-surface);
  border: 1px solid var(--sw-border);
  padding: 10px 12px;
  margin-top: 8px;
  border-radius: 4px;
}
.sw-search-meta a { color: var(--sw-yellow); font-weight: 900; }
.sw-market-tabs { background: var(--sw-surface); padding: 6px; border-radius: 4px; }
.sw-market-tabs button {
  flex: 0 0 auto;
  min-width: 62px;
  min-height: 34px;
  border: 0;
  border-radius: 17px;
  padding: 0 12px;
  background: transparent;
  color: var(--sw-text);
  font-weight: 800;
  white-space: nowrap;
}
.sw-market-tabs button.active { background: var(--sw-yellow); color: #101820; }
.sw-event-board { margin-top: 6px; overflow: hidden; border-radius: 4px; }
.sw-event-board__head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(86px, 150px));
  gap: 4px;
  align-items: center;
  min-height: 36px;
  padding: 0 6px;
  background: var(--sw-market);
  font-weight: 900;
}
.sw-event-board__head span:not(:first-child) { text-align: center; }
.sw-league-header {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 30px;
  padding: 5px 8px;
  background: #22323e;
  border-top: 1px solid var(--sw-border);
  color: var(--sw-muted);
  font-size: 12px;
}
.sw-league-header strong { color: var(--sw-text); }
.sw-event {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(258px, 450px);
  gap: 4px;
  min-height: 70px;
  padding: 4px;
  background: var(--sw-surface);
  border-bottom: 1px solid #1d2c37;
}
.sw-event__info {
  display: grid;
  grid-template-columns: 58px 1fr auto auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.sw-event__meta { display: grid; color: var(--sw-muted); font-size: 12px; }
.sw-event__meta em { color: white; background: var(--sw-red); border-radius: 3px; padding: 1px 4px; font-style: normal; width: fit-content; }
.sw-event__teams { display: grid; min-width: 0; gap: 3px; font-weight: 800; }
.sw-event__teams span { display: flex; align-items: center; gap: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sw-team-badge {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #506d86, #162633);
  color: #fff;
  font-size: 10px;
  border: 1px solid var(--sw-line);
  flex: 0 0 auto;
}
.sw-event__score { color: var(--sw-yellow); font-weight: 900; }
.sw-event__markets { color: var(--sw-muted); font-size: 12px; white-space: nowrap; }
.sw-event__odds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.sw-odd {
  min-height: 58px;
  border: 1px solid #20313c;
  border-radius: 4px;
  background: var(--sw-odds);
  color: var(--sw-text);
  display: grid;
  place-items: center;
  gap: 1px;
  font-weight: 900;
}
.sw-odd span { color: var(--sw-muted); font-size: 12px; }
.sw-odd strong { font-size: 18px; line-height: 1; }
.sw-odd.active { background: var(--sw-yellow); color: #111; border-color: var(--sw-yellow); }
.sw-odd.active span { color: #263238; }
.sw-odd.locked, .sw-odd:disabled { opacity: .45; cursor: not-allowed; }

.sw-betslip-panel {
  position: sticky;
  top: 91px;
  height: calc(100vh - 91px);
  background: var(--sw-surface);
  border-left: 1px solid #1b2b35;
  display: flex;
  flex-direction: column;
}
.sw-betslip-tabs {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 4px;
  align-items: center;
  padding: 6px;
  background: var(--sw-bg-deep);
}
.sw-betslip-tabs label { margin: 0; }
.sw-betslip-tabs input { display: none; }
.sw-betslip-tabs span {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 4px;
  background: var(--sw-surface);
  font-weight: 900;
  white-space: nowrap;
  font-size: 13px;
  padding: 0 6px;
}
.sw-betslip-tabs input:checked + span { background: var(--sw-yellow); color: #111; }
.sw-betslip-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 4px;
  background: #314353;
  color: white;
}
.sw-betslip-pane { min-height: 0; flex: 1; display: flex; flex-direction: column; }
.mybet-container { display: none; }
.sw-betslip-panel:has(#mybets-btn:checked) .bet-slip-container { display: none; }
.sw-betslip-panel:has(#mybets-btn:checked) .mybet-container { display: flex; }
.betslip__body { flex: 1; min-height: 0; overflow: auto; padding: 10px; }
.betslip__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.empty-slip-message {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  color: var(--sw-muted);
  gap: 10px;
}
.empty-slip-message img { width: 56px; opacity: .7; }
.betslip__footer { padding: 10px; border-top: 1px solid var(--sw-border); background: #22323e; }
.betslip__footer-list { display: grid; gap: 10px; }
.betslip-select select, .bookingCodeInput, .amount, .betslip-form {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--sw-border);
  background: var(--sw-odds);
  color: var(--sw-text);
  border-radius: 4px;
  padding: 0 10px;
}
.booking-code-box label, .betslip__list-ratio span { font-size: 12px; color: var(--sw-muted); font-weight: 900; text-transform: uppercase; }
.booking-code-box__row { display: grid; grid-template-columns: 1fr 76px; gap: 6px; margin-top: 5px; }
.booking-code-box__row button, .booking-code-box__generate {
  border: 0;
  border-radius: 4px;
  background: var(--sw-yellow);
  color: #111;
  font-weight: 900;
}
.booking-code-box__generate { width: 100%; min-height: 38px; margin-top: 6px; }
.booking-code-box__result { margin-top: 6px; color: var(--sw-green); font-weight: 900; }
.betslip-input-inner { position: absolute; left: 9px; top: 10px; color: var(--sw-muted); font-size: 12px; }
.betslip__list-ratio .position-relative input { padding-left: 48px; }
.amount-recommendations { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.amount-recommendation {
  border: 0;
  border-radius: 4px;
  min-height: 30px;
  padding: 0 10px;
  background: #416177;
  color: white;
  font-weight: 800;
}
.bet-return { display: grid; gap: 4px; color: var(--sw-muted); }
.bet-return span { display: flex; justify-content: space-between; }
.betslip__footer-bottom { display: grid !important; grid-template-columns: 1fr 38px 120px; gap: 6px; margin-top: 10px; }
.delete-btn { border: 0; border-radius: 4px; background: #3a4d5d; color: var(--sw-red); }
.bet-place-btn { width: 100%; min-height: 40px; border: 0; border-radius: 4px; background: var(--sw-green); color: #061d10; font-weight: 950; }
.sw-betslip-item { background: var(--sw-bg-deep); border: 1px solid var(--sw-border); border-radius: 5px; overflow: hidden; }
.sw-betslip-item__top {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 8px;
  background: #2c3e4c;
  color: var(--sw-muted);
  font-size: 12px;
  font-weight: 900;
}
.sw-betslip-item__top button { border: 0; background: transparent; color: var(--sw-muted); font-size: 18px; }
.sw-betslip-item__body { padding: 9px; display: grid; gap: 8px; }
.sw-slip-match { display: flex; gap: 5px; flex-wrap: wrap; font-size: 13px; }
.sw-slip-match span { color: var(--sw-muted); }
.sw-slip-selection, .sw-slip-return {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.sw-slip-selection small { display: block; color: var(--sw-muted); }
.sw-slip-selection b { display: block; }
.sw-slip-selection em { font-style: normal; background: var(--sw-yellow); color: #111; font-weight: 950; border-radius: 4px; padding: 4px 8px; }
.sw-slip-selection em.is-suspended { background: var(--sw-red); color: white; }
.sw-slip-stake label, .sw-slip-return span { color: var(--sw-muted); font-size: 12px; }
.sw-slip-stake div { display: grid; grid-template-columns: 48px 1fr; }
.sw-slip-stake span {
  display: grid;
  place-items: center;
  background: #34495a;
  color: var(--sw-muted);
  border-radius: 4px 0 0 4px;
}
.sw-slip-stake input { border-radius: 0 4px 4px 0; border: 1px solid var(--sw-border); background: var(--sw-odds); color: white; min-height: 38px; padding: 0 8px; }
.sw-match-crumbs {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  background: var(--sw-surface);
  color: var(--sw-muted);
}
.sw-match-crumbs a, .sw-match-crumbs button { color: var(--sw-yellow); font-weight: 900; }
.sw-match-crumbs button { margin-left: auto; border: 0; background: #20313e; border-radius: 14px; padding: 5px 10px; }
.sw-match-hero {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 150px;
  padding: 18px;
  background: var(--sw-bg-deep);
  text-align: center;
}
.sw-team { display: grid; place-items: center; gap: 8px; font-size: 18px; font-weight: 900; }
.sw-team-emblem {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 25%, #7f96aa, #182735 70%);
  border: 2px solid var(--sw-line);
  font-weight: 1000;
  font-size: 18px;
}
.sw-scorebox { display: grid; gap: 8px; place-items: center; }
.sw-scorebox strong { color: var(--sw-yellow); font-size: 24px; }
.sw-scorebox span { color: var(--sw-muted); font-size: 12px; }
.sw-scorebox button { border: 0; border-radius: 4px; background: var(--sw-yellow); color: #111; font-weight: 900; padding: 6px 10px; }
.sw-market-search {
  display: grid;
  grid-template-columns: 1fr 200px;
  min-height: 48px;
  background: var(--sw-surface);
}
.sw-market-search label { display: grid; grid-template-columns: 32px 1fr; align-items: center; padding: 0 12px; margin: 0; }
.sw-market-search input { border: 0; outline: 0; background: transparent; color: white; }
.sw-market-search button { border: 0; border-left: 1px solid var(--sw-border); background: #263541; color: var(--sw-muted); }
.sw-market-list { display: grid; gap: 6px; margin-top: 6px; }
.sw-market-section__head {
  width: 100%;
  min-height: 42px;
  border: 0;
  background: var(--sw-market);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-weight: 900;
}
.sw-market-section__head small { background: #435d73; border-radius: 4px; padding: 4px 7px; margin-right: 8px; }
.sw-market-section__odds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  background: var(--sw-surface);
}
