/* MatchGPT Tabs UI
   Include this AFTER assets/styles.css */

.vm-tabs-wrap {
    width: min(1284px, 100%);
    margin: 14px auto 0;
    box-sizing: border-box;
}

.vm-tabs-bar {
    display: flex;
    gap: 10px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 2px;
}

.vm-tabs-bar::-webkit-scrollbar {
    display: none;
}

.vm-tab-btn {
    border: 1px solid rgba(15, 23, 42, .10);
    background: transparent;
    color: #0f172a;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .05);
    transition: .18s ease;
}

.vm-tab-btn i {
    font-size: 16px;
}

.vm-tab-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(105, 92, 254, .25);
    border-radius: 999px;

}

.vm-tab-btn.active {
    background: rgba(105, 92, 254, .10);
    color: #2b2675;
    border-color: rgba(105, 92, 254, .22);
    box-shadow: 0 8px 24px rgba(105, 92, 254, .12);
    border-radius: 999px;

}

.vm-tab-panels {
    position: relative;
    margin-top: 12px;
}

.vm-tab-panel {
    display: none;
    animation: vmTabIn .22s ease;
}

.vm-tab-panel.active {
    display: block;
}

@keyframes vmTabIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vm-tab-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
    overflow: hidden;
}

.vm-tab-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.vm-tab-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.vm-tab-title i {
    color: #695CFE;
    font-size: 19px;
}

.vm-tab-sub {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.vm-tab-body {
    padding: 16px 18px 18px;
}

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

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

.vm-mini-stat {
    border: 1px solid rgba(15, 23, 42, .08);
    background: #f8fafc;
    border-radius: 18px;
    padding: 14px;
}

.vm-mini-label {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px;
}

.vm-mini-value {
    color: #0f172a;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.vm-mini-note {
    margin-top: 7px;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}

/* ODDS - NEW STYLE */

.vm-odds-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vm-odds-summaryCard {
    border: 1px solid rgba(15, 23, 42, .08);
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.vm-odds-summaryHead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.vm-odds-summaryTitleWrap {
    min-width: 0;
}

.vm-odds-summaryEyebrow {
    color: #695CFE;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vm-odds-summaryTitle {
    margin-top: 4px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.vm-odds-summaryDate {
    flex: 0 0 auto;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
}

.vm-odds-summaryGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.vm-odds-summaryItem {
    border: 1px solid rgba(15, 23, 42, .07);
    background: #fff;
    border-radius: 18px;
    padding: 14px;
}

.vm-odds-summaryLabel {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vm-odds-summaryValue {
    margin-top: 8px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.vm-odds-summarySub {
    margin-top: 6px;
    color: #475569;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
}

.vm-odds-tableCard {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
    overflow: hidden;
}

.vm-odds-tableHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.vm-odds-tableTitleWrap {
    min-width: 0;
}

.vm-odds-tableEyebrow {
    color: #695CFE;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vm-odds-tableTitle {
    margin-top: 4px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.vm-odds-tableCount {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.vm-odds-tableWrap {
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.vm-odds-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.vm-odds-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f8fafc;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    white-space: nowrap;
}

.vm-odds-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    vertical-align: middle;
    color: #0f172a;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
}

.vm-odds-table tbody tr:hover td {
    background: #fafbff;
}

.vm-odds-marketCell {
    min-width: 210px;
}

.vm-odds-marketName {
    color: #0f172a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.vm-odds-marketCell {
    width: 160px;
}

.vm-odds-labelPill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(105, 92, 254, .08);
    border: 1px solid rgba(105, 92, 254, .14);
    color: #2b2675;
    font-size: 12px;
    font-weight: 600;
}

.vm-odds-lineText {
    color: #475569;
    font-size: 12px;
    font-weight: 500;
}

.vm-odds-num {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.vm-odds-probPill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(59, 130, 246, .08);
    border: 1px solid rgba(59, 130, 246, .14);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.vm-odds-loadWrap {
    display: flex;
    justify-content: center;
    padding: 18px;
    border-top: 1px solid rgba(15, 23, 42, .06);
    background: #fff;
}

.vm-odds-loadBtn {
    appearance: none;
    border: 1px solid rgba(105, 92, 254, .20);
    background: rgba(105, 92, 254, .08);
    color: #2b2675;
    border-radius: 999px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .18s ease;
}

.vm-odds-loadBtn:hover {
    transform: translateY(-1px);
    background: rgba(105, 92, 254, .12);
}

/* LEGACY / OTHER TABS */

.vm-market-card {
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    border-radius: 18px;
    padding: 14px;
}

.vm-market-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.vm-market-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.vm-market-meta {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.vm-market-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vm-odd-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 14px;
}

.vm-odd-left {
    min-width: 0;
}

.vm-odd-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.vm-odd-sub {
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
}

.vm-odd-prob {
    font-size: 12px;
    font-weight: 600;
    color: #2b2675;
    background: rgba(105, 92, 254, .10);
    border: 1px solid rgba(105, 92, 254, .18);
    border-radius: 999px;
    padding: 6px 10px;
}

.vm-odd-price {
    min-width: 58px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 12px;
    padding: 8px 10px;
}

.vm-h2h-list,
.vm-form-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vm-match-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    background: #fff;
    padding: 12px 14px;
}

.vm-match-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(105, 92, 254, .10);
    color: #2b2675;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.vm-match-main {
    min-width: 0;
}

.vm-match-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vm-match-sub {
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vm-match-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #f8fafc;
    color: #334155;
}

.vm-result-pill {
    min-width: 48px;
    text-align: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
}

.vm-result-win {
    background: rgba(34, 197, 94, .10);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, .20);
}

.vm-result-draw {
    background: rgba(245, 158, 11, .10);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, .20);
}

.vm-result-loss {
    background: rgba(239, 68, 68, .10);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, .20);
}

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

.vm-empty-state {
    border: 1px dashed rgba(15, 23, 42, .14);
    background: #f8fafc;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
}

.vm-empty-state .t1 {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
}

.vm-empty-state .t2 {
    margin-top: 6px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

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

.vm-meta-box {
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    border-radius: 18px;
    padding: 14px;
}

.vm-meta-box .k {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vm-meta-box .v {
    margin-top: 8px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .vm-tabs-wrap {
        padding: 0 0 2px;
        margin-top: 12px;
    }

    .vm-tab-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    .vm-tab-head {
        padding: 14px 14px 10px;
        align-items: flex-start;
        flex-direction: column;
    }

    .vm-tab-body {
        padding: 14px;
    }

    .vm-grid-2,
    .vm-grid-3,
    .vm-split,
    .vm-meta-grid,
    .vm-odds-summaryGrid {
        grid-template-columns: 1fr;
    }

    .vm-odds-summaryHead,
    .vm-odds-tableHead {
        flex-direction: column;
        align-items: flex-start;
    }

    .vm-odds-table {
        min-width: 640px;
    }

    .vm-odd-row {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas: "left price" "prob price";
        align-items: start;
    }

    .vm-odd-left {
        grid-area: left;
    }

    .vm-odd-prob {
        grid-area: prob;
        justify-self: start;
    }

    .vm-odd-price {
        grid-area: price;
        align-self: center;
    }

    .vm-match-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .vm-result-pill {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* H2H */

.vm-h2h-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vm-h2h-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 14px;
    padding: 10px 12px;
}

/* top meta */

.vm-h2h-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.vm-h2h-topLeft {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.vm-h2h-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .06);
}

.vm-h2h-chip i {
    font-size: 12px;
}

.vm-h2h-state {
    font-size: 10px;
    font-weight: 700;
    color: #2b2675;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(105, 92, 254, .08);
}

/* teams */

.vm-h2h-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.vm-h2h-team {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 10px;
}

.vm-h2h-team--right {
    justify-content: flex-end;
    text-align: right;
}

/* winner / loser */

.vm-h2h-team.is-winner {
    background: rgba(34, 197, 94, .12);
}

.vm-h2h-team.is-loser {
    background: rgba(239, 68, 68, .10);
}

/* logos */

.vm-h2h-logoWrap {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-h2h-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.vm-h2h-logoFallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #2b2675;
    background: rgba(105, 92, 254, .08);
}

/* team text */

.vm-h2h-teamName {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
}

/* score */

.vm-h2h-scoreWrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-h2h-score {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -.02em;
}

/* LAST 10 */

.vm-last10-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.vm-last10-teamCard {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.vm-last10-teamHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

.vm-last10-teamTitle {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.vm-last10-teamSub {
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.vm-last10-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
}

.vm-last10-row {
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 16px;
    background: #fff;
    padding: 10px 12px;
}

.vm-last10-row.is-win {
    background: rgba(34, 197, 94, .08);
    border-color: rgba(34, 197, 94, .16);
}

.vm-last10-row.is-draw {
    background: rgba(245, 158, 11, .08);
    border-color: rgba(245, 158, 11, .16);
}

.vm-last10-row.is-loss {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .16);
}

.vm-last10-rowTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.vm-last10-date {
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.vm-last10-result {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.vm-last10-result.is-win {
    color: #166534;
    background: rgba(34, 197, 94, .12);
}

.vm-last10-result.is-draw {
    color: #92400e;
    background: rgba(245, 158, 11, .12);
}

.vm-last10-result.is-loss {
    color: #991b1b;
    background: rgba(239, 68, 68, .12);
}

.vm-last10-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.vm-last10-side {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.vm-last10-side--right {
    justify-content: flex-end;
    text-align: right;
}

.vm-last10-logoWrap {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-last10-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.vm-last10-logoFallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #2b2675;
    background: rgba(105, 92, 254, .08);
}

.vm-last10-name {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vm-last10-scoreWrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-last10-score {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.vm-last10-rowBottom {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.vm-last10-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 23, 42, .06);
}

.vm-last10-chip i {
    font-size: 11px;
}

@media (max-width:900px) {
    .vm-last10-wrap {
        grid-template-columns: 1fr;
    }

    .vm-last10-teamHead {
        padding: 14px 14px 10px;
    }

    .vm-last10-list {
        padding: 12px;
    }

    .vm-last10-main {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 6px;
    }

    .vm-last10-name {
        font-size: 11px;
    }

    .vm-last10-score {
        font-size: 15px;
    }

    .vm-last10-logoWrap {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }
}

/* =========================
   MATCH META TAB - CLEANER
   ========================= */

.vm-meta-sectionStack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vm-meta-cleanHead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.vm-meta-cleanHeadLeft {
    min-width: 0;
}

.vm-meta-cleanKicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vm-meta-cleanKicker i {
    font-size: 14px;
    color: #695CFE;
}

.vm-meta-cleanTitle {
    margin-top: 6px;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.vm-meta-cleanSub {
    margin-top: 6px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.vm-meta-cleanBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.vm-meta-cleanBody {
    padding: 16px 18px 18px;
}

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

.vm-meta-cleanGrid3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.vm-meta-cleanBox {
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    border-radius: 18px;
    padding: 14px;
}

.vm-meta-cleanBox.soft {
    background: #f8fafc;
}

.vm-meta-cleanLabel {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.vm-meta-cleanValue {
    margin-top: 8px;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.vm-meta-cleanNote {
    margin-top: 6px;
    color: #475569;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
}

.vm-meta-timeRows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.vm-meta-timeRow {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid rgba(15, 23, 42, .07);
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px;
}

.vm-meta-timeIcon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #695CFE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.vm-meta-timeLabel {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.vm-meta-timeValue {
    margin-top: 4px;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.vm-meta-venueTop {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.vm-meta-venueIcon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #695CFE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.vm-meta-venueName {
    color: #0f172a;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.vm-meta-venueCity {
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.vm-meta-chipRow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.vm-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 8px 11px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #334155;
    font-size: 12px;
    font-weight: 700;
}

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

.vm-meta-teamMiniCard {
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    border-radius: 18px;
    padding: 14px;
}

.vm-meta-teamTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.vm-meta-teamIdentity {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.vm-meta-teamLogo {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-meta-teamLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.vm-meta-teamLogoFallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2675;
    font-size: 14px;
    font-weight: 800;
    background: rgba(105, 92, 254, .10);
}

.vm-meta-teamNameWrap {
    min-width: 0;
}

.vm-meta-teamName {
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.vm-meta-teamCode {
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.vm-meta-rankPill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    border: 1px solid rgba(15, 23, 42, .08);
    font-size: 13px;
    font-weight: 800;
}

.vm-meta-teamStats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.vm-meta-teamStat {
    border: 1px solid rgba(15, 23, 42, .07);
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
}

.vm-meta-teamStatLabel {
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vm-meta-teamStatValue {
    margin-top: 8px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.vm-meta-teamFoot {
    margin-top: 12px;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

@media (max-width: 900px) {

    .vm-meta-cleanGrid2,
    .vm-meta-cleanGrid3,
    .vm-meta-teamGrid,
    .vm-meta-teamStats {
        grid-template-columns: 1fr;
    }

    .vm-meta-cleanHead {
        flex-direction: column;
        align-items: flex-start;
    }

    .vm-meta-cleanTitle,
    .vm-meta-venueName {
        font-size: 17px;
    }

    .vm-meta-teamLogo {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }
}

/* =========================
   LINEUPS / SIDELINE / REFEREE
   ========================= */

.vm-simple-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vm-empty-state.clean {
    background: #fff;
    border: 1px dashed rgba(15, 23, 42, .14);
    border-radius: 18px;
    padding: 26px 18px;
}

.vm-ref-card,
.vm-lineup-card,
.vm-side-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    overflow: hidden;
}

.vm-ref-body,
.vm-lineup-body,
.vm-side-body {
    padding: 16px;
}

.vm-ref-main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vm-ref-avatar {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-ref-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-ref-avatarFallback {
    font-size: 20px;
    color: #695CFE;
}

.vm-ref-name {
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.vm-ref-sub {
    margin-top: 5px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.vm-ref-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.vm-ref-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #334155;
    font-size: 12px;
    font-weight: 700;
}

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

.vm-lineup-teamCard,
.vm-side-teamCard {
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.vm-lineup-teamHead,
.vm-side-teamHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 14px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    background: #f8fafc;
}

.vm-lineup-teamTitle,
.vm-side-teamTitle {
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.vm-lineup-teamSub,
.vm-side-teamSub {
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.vm-lineup-pill,
.vm-side-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.vm-lineup-list,
.vm-side-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
}

.vm-lineup-row,
.vm-side-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(15, 23, 42, .07);
    background: #fff;
    border-radius: 16px;
    padding: 10px 12px;
}

.vm-lineup-avatar,
.vm-side-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-lineup-avatar img,
.vm-side-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-lineup-avatarFallback,
.vm-side-avatarFallback {
    color: #695CFE;
    font-size: 16px;
}

.vm-lineup-name,
.vm-side-name {
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.vm-lineup-sub,
.vm-side-sub {
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}

.vm-lineup-pos,
.vm-side-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    border-radius: 999px;
    padding: 7px 10px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #334155;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.vm-side-type.injury {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .14);
    color: #991b1b;
}

.vm-side-type.suspension {
    background: rgba(245, 158, 11, .10);
    border-color: rgba(245, 158, 11, .16);
    color: #92400e;
}

.vm-side-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.vm-side-extraChip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
}

@media (max-width: 900px) {

    .vm-lineups-grid,
    .vm-side-grid {
        grid-template-columns: 1fr;
    }

    .vm-ref-main {
        align-items: flex-start;
    }
}


.vm-tabs-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-tabs-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 2px;
    flex: 1 1 auto;
    min-width: 0;
}

.vm-tabs-bar::-webkit-scrollbar {
    display: none;
}

.vm-tabs-arrow {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
    color: #0f172a;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
    transition: .18s ease;
    z-index: 2;
}

.vm-tabs-arrow i {
    font-size: 20px;
}

.vm-tabs-arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(105, 92, 254, .22);
    color: #2b2675;
}

.vm-tabs-arrow.is-hidden {
    display: none;
}

@media (max-width: 900px) {
    /* .vm-tabs-nav {
        gap: 8px;
    } */

    /* .vm-tabs-arrow {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .vm-tabs-arrow i {
        font-size: 18px;
    } */

    .vm-tabs-arrow {
        display: none;
        /* hide scroll arrows on mobile */
    }
}

.vm-odds-wrap {
    width: 100%;
}

.vm-odds-shell {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vm-odds-header {
    padding: 2px 2px 0;
}

.vm-odds-headerTop {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 2px 0 8px;
}

.vm-odds-headerIcon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(105, 92, 254, .08);
    color: #695CFE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 auto;
}

.vm-odds-headerText {
    min-width: 0;
    flex: 1 1 auto;
}

.vm-odds-headerTitle {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.vm-odds-headerSub {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    max-width: 760px;
}

.vm-odds-headerMeta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    padding-top: 2px;
}

.vm-odds-headerMetaNum {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.vm-odds-headerMetaLabel {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vm-odds-tabs {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
}

.vm-odds-tabs::-webkit-scrollbar {
    display: none;
}

.vm-odds-tabBtn {
    appearance: none;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    color: #1e293b;
    border-radius: 999px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: .18s ease;
}

.vm-odds-tabBtn i {
    font-size: 16px;
    color: #64748b;
}

.vm-odds-tabBtn b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
}

.vm-odds-tabBtn:hover {
    border-color: rgba(105, 92, 254, .18);
    background: #fcfcff;
}

.vm-odds-tabBtn.is-active {
    background: rgba(105, 92, 254, .08);
    border-color: rgba(105, 92, 254, .22);
    color: #312e81;
    box-shadow: none;
}

.vm-odds-tabBtn.is-active i {
    color: #695CFE;
}

.vm-odds-tabBtn.is-active b {
    background: rgba(105, 92, 254, .12);
    color: #695CFE;
}

.vm-odds-tabBtn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.vm-odds-panels {
    display: block;
}

.vm-odds-panel {
    display: none;
}

.vm-odds-panel.is-active {
    display: block;
}

.vm-odds-marketList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vm-odds-marketCard {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    overflow: hidden;
}

.vm-odds-marketTitle {
    padding: 14px 16px 10px;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.vm-odds-rows {
    display: flex;
    flex-direction: column;
}

.vm-odds-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-top: 1px solid rgba(15, 23, 42, .06);
    background: #fff;
}

.vm-odds-row:first-child {
    border-top: none;
}

.vm-odds-row.is-top {
    background: #fafbff;
}

.vm-odds-rowLeft {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1 1 auto;
}

.vm-odds-rowIcon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex: 0 0 auto;
    border: 1px solid rgba(15, 23, 42, .05);
}

.vm-odds-rowMain {
    min-width: 0;
}

.vm-odds-rowLabel {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
}

.vm-odds-rowHint {
    font-size: 11px;
    line-height: 1.4;
    color: #94a3b8;
    font-weight: 700;
    margin-top: 3px;
}

.vm-odds-rowRight {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 0 0 auto;
}

.vm-odds-rowMetric {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 88px;
}

.vm-odds-rowMetricLabel {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #94a3b8;
}

.vm-odds-rowMetricValue {
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    color: #0f172a;
}

.vm-odds-rowMetricValue--prob {
    font-size: 14px;
    color: #2563eb;
}

.vm-odds-loadWrap {
    display: flex;
    justify-content: center;
    padding: 2px 0 0;
    margin-top: 14px;
}

.vm-odds-loadBtn {
    appearance: none;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    color: #334155;
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .18s ease;
}

.vm-odds-loadBtn i {
    font-size: 16px;
    color: #695CFE;
}

.vm-odds-loadBtn:hover {
    border-color: rgba(105, 92, 254, .18);
    background: #fcfcff;
}

@media (max-width: 768px) {
    .vm-odds-headerTop {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .vm-odds-headerMeta {
        width: 100%;
        align-items: flex-start;
    }

    .vm-odds-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .vm-odds-rowRight {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .vm-odds-rowMetric {
        align-items: flex-start;
        min-width: 0;
    }
}