/* ===== Webrace Sportsbook ===== */

.sb-pending-note {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.25);
    font-size: 12px;
    line-height: 1.5;
    color: #a1a1aa;
}

.sb-pending-note strong {
    color: #fde047;
}

.sportsbook-body .main-content {
    padding: 16px 20px 24px;
    max-width: 1480px;
    margin: 0 auto;
    overflow-y: auto;
}

.app-content--full {
    margin-left: 0 !important;
    width: 100%;
}

.sb-page {
    padding: 0;
    max-width: none;
}

.sb-hero {
    margin: 0 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(163, 38, 255, 0.22);
    background:
        radial-gradient(ellipse 70% 100% at 0% 0%, rgba(163, 38, 255, 0.22), transparent 50%),
        radial-gradient(ellipse 50% 80% at 100% 100%, rgba(34, 197, 94, 0.08), transparent 50%),
        #12101a;
    overflow: hidden;
    position: relative;
}

.sb-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

.sb-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px;
    flex-wrap: wrap;
}

.sb-hero__badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sb-hero__title {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.sb-hero__sub {
    margin: 0;
    max-width: 520px;
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.55;
}

.sb-hero__stats {
    display: flex;
    gap: 16px;
}

.sb-stat {
    min-width: 100px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.sb-stat__val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.sb-stat__label {
    font-size: 11px;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sb-layout {
    display: grid;
    grid-template-columns: 200px minmax(480px, 1fr) 268px;
    gap: 12px;
    align-items: start;
}

.sb-sidebar,
.sb-betslip {
    position: sticky;
    top: 80px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #16121f;
    overflow: hidden;
    max-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
}

.sb-sidebar__head,
.sb-betslip__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-sidebar__head h2,
.sb-betslip__head h2 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #e4e4e7;
}

.sb-cat-nav {
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 2px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.sb-cat-item {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #d4d4d8;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.sb-cat-item:hover {
    background: rgba(163, 38, 255, 0.12);
    color: #fff;
}

.sb-cat-item.is-active {
    background: rgba(163, 38, 255, 0.22);
    color: #fff;
}

.sb-cat-item__icon {
    font-size: 16px;
    line-height: 1;
}

.sb-cat-item__count {
    font-size: 11px;
    color: #71717a;
    font-weight: 700;
}

.sb-sidebar__promo {
    margin: 8px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 12px;
    line-height: 1.5;
    color: #a1a1aa;
}

.sb-sidebar__promo strong {
    color: #86efac;
}

.sb-promo-link {
    display: inline-block;
    margin-top: 6px;
    color: #c084fc;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
}

.sb-main {
    min-width: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #16121f;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 200px);
    max-height: calc(100vh - 160px);
}

.sb-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.sb-tabs {
    display: flex;
    gap: 4px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.sb-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.sb-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.sb-tab.is-active {
    color: #fff;
    background: rgba(163, 38, 255, 0.25);
}

.sb-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.85);
    animation: sb-pulse 1.4s ease infinite;
}

@keyframes sb-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.sb-events-toolbar {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sb-search {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f0c14;
    color: #fff;
    font: inherit;
    font-size: 13px;
}

.sb-search:focus {
    outline: none;
    border-color: rgba(163, 38, 255, 0.5);
}

.sb-refresh-btn {
    width: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f0c14;
    color: #d4d4d8;
    font-size: 18px;
    cursor: pointer;
}

.sb-refresh-btn:hover {
    color: #fff;
    border-color: rgba(163, 38, 255, 0.4);
}

.sb-events-meta {
    margin: 0;
    padding: 0 14px 8px;
    font-size: 12px;
    color: #71717a;
    font-weight: 600;
}

.sb-events-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(163, 38, 255, 0.35) transparent;
}

.sb-events-scroll::-webkit-scrollbar {
    width: 8px;
}

.sb-events-scroll::-webkit-scrollbar-thumb {
    background: rgba(163, 38, 255, 0.35);
    border-radius: 8px;
}

.sb-section-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 4px 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a1a1aa;
    position: sticky;
    top: 0;
    z-index: 2;
    background: linear-gradient(180deg, #16121f 70%, transparent);
}

.sb-section-head--live {
    color: #86efac;
}

/* ===== Match rows (Rainbet-style) ===== */
.sb-match {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #15111f 0%, #100d17 100%);
    overflow: visible;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sb-match:hover {
    border-color: rgba(163, 38, 255, 0.28);
}

.sb-match.is-live {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.1);
}

.sb-match.is-featured {
    border-color: rgba(163, 38, 255, 0.35);
}

.sb-match__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.22);
    flex-wrap: wrap;
}

.sb-match__tags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    min-width: 0;
    font-size: 11px;
    color: #71717a;
    font-weight: 600;
}

.sb-match__sport {
    color: #d4d4d8;
    font-weight: 700;
}

.sb-match__dot {
    opacity: 0.45;
}

.sb-match__league,
.sb-match__market {
    white-space: nowrap;
}

.sb-match__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sb-match__badge--live {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.sb-match__badge--feat {
    background: rgba(163, 38, 255, 0.18);
    color: #d8b4fe;
    border: 1px solid rgba(163, 38, 255, 0.3);
}

.sb-match__when {
    font-size: 11px;
    color: #52525b;
    font-weight: 600;
    white-space: nowrap;
}

.sb-match__teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 8px;
}

.sb-match__team {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.sb-match__team--home {
    justify-content: flex-start;
}

.sb-match__team--away {
    justify-content: flex-end;
}

.sb-match__team-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sb-match__score {
    font-size: 14px;
    font-weight: 800;
    color: #a78bfa;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.sb-match__vs {
    font-size: 10px;
    font-weight: 800;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sb-match__picks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 14px 14px;
}

.sb-match__picks--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.sb-match__no-odds {
    grid-column: 1 / -1;
    margin: 0;
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: #71717a;
}

.sb-page button.sb-pick {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 56px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, #1e1929 0%, #171320 100%);
    color: #e4e4e7;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.12s, box-shadow 0.15s;
}

.sb-page button.sb-pick:hover:not(:disabled) {
    border-color: rgba(163, 38, 255, 0.55);
    background: rgba(163, 38, 255, 0.14);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(163, 38, 255, 0.18);
}

.sb-page button.sb-pick.is-selected {
    border-color: #a326ff;
    background: linear-gradient(180deg, rgba(163, 38, 255, 0.4) 0%, rgba(124, 58, 237, 0.28) 100%);
    box-shadow: 0 0 20px rgba(163, 38, 255, 0.28);
}

.sb-page button.sb-pick:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.sb-pick__name {
    font-size: 10px;
    font-weight: 600;
    color: #71717a;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sb-pick__odd {
    font-size: 16px;
    font-weight: 800;
    color: #86efac;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.sb-page button.sb-pick.is-selected .sb-pick__odd,
.sb-page button.sb-pick.is-selected .sb-pick__name {
    color: #fff;
}

.sb-events {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 200px;
}

.sb-event-card {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #120e1a;
    overflow: hidden;
}

.sb-event-card.is-featured {
    border-color: rgba(163, 38, 255, 0.35);
}

.sb-event-card.is-live {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.1), 0 8px 28px rgba(34, 197, 94, 0.1);
}

.sb-event-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.25);
    font-size: 12px;
    color: #71717a;
}

.sb-event-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.sb-event-card__league {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sb-event-card__live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.05em;
}

.sb-event-card__featured {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(163, 38, 255, 0.2);
    color: #d8b4fe;
    font-weight: 700;
    font-size: 10px;
}

.sb-market-tag {
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #71717a;
    font-size: 10px;
    font-weight: 600;
}

.sb-event-time {
    font-size: 12px;
    color: #71717a;
    white-space: nowrap;
}

.sb-event-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
    align-items: center;
}

.sb-event-teams {
    min-width: 0;
}

.sb-event-teams__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.sb-event-score {
    font-variant-numeric: tabular-nums;
    color: #a78bfa;
    min-width: 24px;
    text-align: right;
}

.sb-event-kickoff {
    margin-top: 6px;
    font-size: 11px;
    color: #52525b;
}

.sb-odds-row {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.sb-odd-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(180deg, #1e1929 0%, #171320 100%);
    color: #e4e4e7;
    font: inherit;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.1s, box-shadow 0.15s;
}

.sb-odd-btn:hover:not(:disabled) {
    border-color: rgba(163, 38, 255, 0.55);
    background: rgba(163, 38, 255, 0.14);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(163, 38, 255, 0.15);
}

.sb-odd-btn.is-selected {
    border-color: #a326ff;
    background: linear-gradient(180deg, rgba(163, 38, 255, 0.35) 0%, rgba(124, 58, 237, 0.25) 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(163, 38, 255, 0.25);
}

.sb-odd-btn__val {
    font-size: 15px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #86efac;
}

.sb-odd-btn.is-selected .sb-odd-btn__val {
    color: #fff;
}

.sb-quick-stakes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

.sb-quick-stakes button {
    padding: 8px 4px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f0c14;
    color: #a1a1aa;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.sb-quick-stakes button:hover {
    border-color: rgba(163, 38, 255, 0.4);
    color: #fff;
    background: rgba(163, 38, 255, 0.1);
}

.sb-betslip {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(163, 38, 255, 0.2);
}

.sb-odd-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.sb-odd-btn__label {
    font-size: 10px;
    color: #71717a;
    max-width: 76px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.sb-loading,
.sb-empty {
    padding: 48px 24px;
    text-align: center;
    color: #71717a;
    font-size: 14px;
}

.sb-betslip__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #a326ff;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.sb-betslip__body {
    padding: 12px;
    min-height: 120px;
    max-height: 340px;
    overflow-y: auto;
}

.sb-betslip__empty {
    padding: 24px 8px;
    text-align: center;
    color: #52525b;
    font-size: 13px;
    line-height: 1.5;
}

.sb-slip-item {
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: #0f0c14;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sb-slip-item__top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.sb-slip-item__match {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.sb-slip-item__remove {
    border: none;
    background: none;
    color: #71717a;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
}

.sb-slip-item__pick {
    font-size: 12px;
    color: #a78bfa;
    font-weight: 600;
}

.sb-slip-item__odds {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 800;
    color: #86efac;
}

.sb-betslip__footer {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.sb-stake-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #a1a1aa;
}

.sb-stake-field input {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f0c14;
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
}

.sb-slip-summary {
    margin-bottom: 12px;
}

.sb-slip-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
    color: #a1a1aa;
}

.sb-slip-row--win strong {
    color: #86efac;
    font-size: 16px;
}

.sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.1s;
}

.sb-btn--block {
    width: 100%;
    margin-bottom: 8px;
}

.sb-btn--primary {
    background: linear-gradient(135deg, #a326ff, #7c3aed);
    color: #fff;
}

.sb-btn--primary:hover:not(:disabled) {
    opacity: 0.92;
}

.sb-btn--primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.sb-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
}

.sb-my-bets {
    padding: 12px;
}

.sb-bet-card {
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #120e1a;
}

.sb-bet-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.sb-bet-card__match {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.sb-bet-status {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sb-bet-status--pending { background: rgba(234, 179, 8, 0.15); color: #fde047; }
.sb-bet-status--won { background: rgba(34, 197, 94, 0.15); color: #86efac; }
.sb-bet-status--lost { background: rgba(239, 68, 68, 0.12); color: #fca5a5; }

.sb-bet-card__pick {
    font-size: 13px;
    color: #a78bfa;
    font-weight: 600;
    margin-bottom: 10px;
}

.sb-bet-card__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sb-bet-card__cell {
    padding: 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.25);
    text-align: center;
}

.sb-bet-card__cell span {
    display: block;
    font-size: 10px;
    color: #52525b;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.sb-bet-card__cell strong {
    font-size: 13px;
    color: #e4e4e7;
}

.sb-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    padding: 12px 18px;
    border-radius: 10px;
    background: #1c1726;
    border: 1px solid rgba(163, 38, 255, 0.4);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    animation: sb-toast-in 0.25s ease;
}

.sb-toast--error {
    border-color: rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

@keyframes sb-toast-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
    .sb-layout {
        grid-template-columns: 180px minmax(0, 1fr);
    }
    .sb-betslip {
        grid-column: 1 / -1;
        position: static;
        max-height: none;
    }
    .sb-match__picks--2 {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .sb-layout {
        grid-template-columns: 1fr;
    }
    .sb-sidebar {
        position: static;
    }
    .sb-cat-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        max-height: none;
    }
    .sb-cat-item {
        flex: 0 0 auto;
        grid-template-columns: auto auto;
    }
    .sb-cat-item__count {
        display: none;
    }
    .sb-match__picks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sb-match__picks--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sb-match__teams {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4px;
    }
    .sb-match__team--home,
    .sb-match__team--away {
        justify-content: center;
    }
    .sb-match__vs {
        display: none;
    }
}
