/*
|--------------------------------------------------------------------------
| OddeminBet User Dashboard CSS
|--------------------------------------------------------------------------
| File: /assets/css/user.css
| Compact premium dashboard cloned from idplaywin / BC.Game style.
|--------------------------------------------------------------------------
*/

:root {
    --od-bg: #202827;
    --od-page: #202827;
    --od-card: #303837;
    --od-card-2: #2a3231;
    --od-card-soft: rgba(255, 255, 255, 0.055);
    --od-line: rgba(255, 255, 255, 0.075);
    --od-text: #f6fbfa;
    --od-muted: #aebbbb;
    --od-icon: #c7d3d3;
    --od-green: #23e884;
    --od-green-2: #16c86f;
    --od-dark-btn: #485453;
    --od-danger: #ff715f;
    --od-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    --od-radius: 15px;
    --od-small-radius: 12px;
    --od-rank: #9ca9aa;
    --od-rank-2: #eef5f5;
    --od-rank-soft: rgba(255, 255, 255, 0.12);
    --od-safe-bottom: env(safe-area-inset-bottom, 0px);
    color-scheme: dark;
}

html[data-theme="light"] {
    --od-bg: #f4f6f7;
    --od-page: #f4f6f7;
    --od-card: #ffffff;
    --od-card-2: #f7f8f9;
    --od-card-soft: rgba(10, 18, 24, 0.045);
    --od-line: rgba(10, 18, 24, 0.07);
    --od-text: #091111;
    --od-muted: #5f686f;
    --od-icon: #566069;
    --od-green: #23e884;
    --od-green-2: #12be67;
    --od-dark-btn: #eef0f2;
    --od-shadow: 0 12px 28px rgba(15, 25, 35, 0.08);
    --od-rank-soft: rgba(15, 25, 35, 0.08);
    color-scheme: light;
}

.od-tier-beginner,
.od-tier-bronze {
    --od-rank: #b8793b;
    --od-rank-2: #f0bd82;
    --od-rank-soft: rgba(184, 121, 59, 0.18);
}

.od-tier-silver {
    --od-rank: #9eaab7;
    --od-rank-2: #edf3f9;
    --od-rank-soft: rgba(158, 170, 183, 0.2);
}

.od-tier-gold {
    --od-rank: #f1b91d;
    --od-rank-2: #fff3a5;
    --od-rank-soft: rgba(241, 185, 29, 0.19);
}

.od-tier-diamond {
    --od-rank: #60d8ff;
    --od-rank-2: #dff8ff;
    --od-rank-soft: rgba(96, 216, 255, 0.2);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--od-bg);
}

body.od-user-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 24% -10%, var(--od-rank-soft), transparent 32%),
        linear-gradient(180deg, var(--od-bg), var(--od-page));
    color: var(--od-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    overflow-x: hidden;
}

body.od-user-page,
body.od-user-page a,
body.od-user-page button {
    -webkit-tap-highlight-color: transparent;
}

body.od-user-page a {
    color: inherit;
    text-decoration: none;
}

body.od-user-page button {
    font: inherit;
}

.od-dashboard {
    width: min(100%, 470px);
    min-height: 100vh;
    margin: 0 auto;
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px calc(24px + var(--od-safe-bottom));
}

.od-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--od-line);
    border-radius: var(--od-radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 32%),
        var(--od-card);
    box-shadow: var(--od-shadow);
}

html[data-theme="light"] .od-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.76)),
        var(--od-card);
}

.od-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.07) 38%, transparent 68%);
    opacity: .6;
    transform: translateX(-85%);
    animation: odCardShine 6.5s ease-in-out infinite;
}

/* SVG icons */
.od-svg {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: var(--od-icon);
}

.od-svg svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    animation: odIconFloat 3.1s ease-in-out infinite;
}

.od-svg-line {
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.od-svg-fill {
    fill: currentColor;
}

.od-svg-fill-soft {
    fill: currentColor;
    opacity: .28;
}

.od-svg-dot {
    fill: currentColor;
    animation: odIconPulse 1.5s ease-in-out infinite;
}

.od-svg-deposit,
.od-svg-live,
.od-svg-support {
    color: var(--od-green);
}

.od-svg-coin {
    color: #ffd64d;
    filter: drop-shadow(0 0 7px rgba(255, 214, 77, .25));
}

.od-svg-gift {
    color: #a576ff;
}

.od-svg-signout {
    color: var(--od-text);
}

/* Top profile */
.od-user-top {
    padding: 3px 0 10px;
}

.od-mini-round {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--od-line);
    border-radius: 10px;
    background: var(--od-card-soft);
    color: var(--od-icon);
    transition: transform .18s ease, background .18s ease;
}

.od-mini-round:active {
    transform: scale(.94);
}

.od-mini-round .od-svg {
    width: 18px;
    height: 18px;
}

.od-profile-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.od-avatar-link {
    min-width: 0;
    display: flex;
    align-items: center;
    flex: 1;
    gap: 11px;
    border-radius: 18px;
}

.od-avatar-wrap {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
}

.od-avatar-img,
.od-avatar-fallback {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(35, 232, 132, 0.28);
    background:
        radial-gradient(circle at 30% 22%, rgba(255,255,255,.18), transparent 22%),
        linear-gradient(145deg, var(--od-card), var(--od-card-2));
    object-fit: cover;
    overflow: hidden;
}

.od-avatar-fallback {
    display: grid;
    place-items: center;
    color: var(--od-green);
}

.od-avatar-fallback .od-svg {
    width: 28px;
    height: 28px;
    color: var(--od-green);
}

.od-avatar-glow {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--od-green), var(--od-rank), var(--od-green));
    filter: blur(7px);
    opacity: .35;
    animation: odSpin 5.5s linear infinite;
}

.od-profile-text {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.od-profile-text strong {
    display: block;
    max-width: 260px;
    overflow: hidden;
    color: var(--od-text);
    font-size: 20px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.od-user-number {
    display: block;
    max-width: 250px;
    overflow: hidden;
    color: var(--od-muted);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .1px;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
}

.od-no-copy {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.od-profile-arrow {
    margin-left: auto;
}

/* Level */
.od-level-card {
    padding: 12px;
    margin-top: 7px;
}

.od-level-head,
.od-level-foot,
.od-balance-line,
.od-balance-label,
.od-main-actions,
.od-list-left,
.od-list-right {
    display: flex;
    align-items: center;
}

.od-level-head {
    justify-content: space-between;
    gap: 8px;
}

.od-level-status {
    display: block;
    color: var(--od-text);
    font-size: 17px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.2px;
}

.od-level-rank {
    display: inline-flex;
    width: fit-content;
    margin-top: 5px;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--od-rank-soft);
    color: var(--od-rank-2);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .5px;
}

html[data-theme="light"] .od-level-rank {
    color: var(--od-rank);
}

.od-xp-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--od-rank-soft), rgba(255,255,255,.04));
    color: var(--od-rank-2);
    font-size: 11px;
    font-weight: 950;
    white-space: nowrap;
    animation: odXpPop .9s ease both;
}

html[data-theme="light"] .od-xp-chip {
    color: var(--od-rank);
    border-color: rgba(0,0,0,.05);
}

.od-progress-shell {
    position: relative;
    margin-top: 13px;
}

.od-progress-track {
    position: relative;
    display: block;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0, 0, 0, .18);
    box-shadow: inset 0 2px 7px rgba(0,0,0,.2);
}

html[data-theme="light"] .od-progress-track {
    background: rgba(10,18,24,.1);
    box-shadow: inset 0 2px 7px rgba(10,18,24,.08);
}

.od-progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--od-progress);
    border-radius: inherit;
    background:
        linear-gradient(90deg, var(--od-rank), var(--od-rank-2), var(--od-rank));
    box-shadow: 0 0 18px var(--od-rank-soft);
    animation: odProgressGrow .85s cubic-bezier(.2,.75,.2,1), odFlow 1.8s linear infinite;
}

.od-progress-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(115deg, transparent 0 30%, rgba(255,255,255,.45) 48%, transparent 66% 100%);
    transform: translateX(-80%);
    animation: odProgressShine 1.65s ease-in-out infinite;
}

.od-progress-star {
    position: absolute;
    top: 50%;
    left: var(--od-progress);
    width: 21px;
    height: 21px;
    border: 5px solid color-mix(in srgb, var(--od-rank-2), white 35%);
    border-radius: 50%;
    background: var(--od-card);
    box-shadow: 0 0 0 4px var(--od-rank-soft), 0 0 22px var(--od-rank);
    transform: translate(-50%, -50%);
    animation: odThumbPop .9s ease both;
}

.od-level-foot {
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    color: var(--od-muted);
    font-size: 10.5px;
    font-weight: 800;
}

/* Balance and wallet */
.od-balance-line {
    justify-content: space-between;
    gap: 10px;
    padding: 14px 4px 8px;
}

.od-balance-label {
    gap: 6px;
    color: var(--od-muted);
    font-size: 13px;
    font-weight: 900;
}

.od-balance-label .od-svg {
    width: 24px;
    height: 24px;
}

.od-balance-line > strong {
    color: var(--od-text);
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -.2px;
}

.od-wallet-card {
    padding: 12px;
}

.od-main-actions {
    gap: 10px;
}

.od-money-btn {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: -.1px;
    transition: transform .16s ease, filter .16s ease;
}

.od-money-btn:active {
    transform: scale(.97);
}

.od-deposit-btn {
    background: linear-gradient(135deg, var(--od-green), var(--od-green-2));
    color: #05130c;
    box-shadow: 0 10px 24px rgba(35, 232, 132, .19);
}

.od-deposit-btn .od-svg {
    color: #05130c;
}

.od-withdraw-btn {
    background: var(--od-dark-btn);
    color: var(--od-text);
}

html[data-theme="light"] .od-withdraw-btn {
    color: #101616;
}

.od-shortcut-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-top: 13px;
}

.od-shortcut {
    display: grid;
    justify-items: center;
    gap: 5px;
    min-width: 0;
    padding: 8px 3px;
    border-radius: 12px;
    color: var(--od-text);
    transition: background .18s ease, transform .18s ease;
}

.od-shortcut:active {
    transform: scale(.95);
}

.od-shortcut:hover {
    background: var(--od-card-soft);
}

.od-shortcut .od-svg {
    width: 26px;
    height: 26px;
}

.od-shortcut span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    font-size: 10.5px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Bonus */
.od-bonus-card {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    padding: 10px 12px;
}

.od-bonus-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(165,118,255,.18), rgba(35,232,132,.10));
}

.od-bonus-icon .od-svg {
    width: 25px;
    height: 25px;
}

.od-bonus-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--od-muted);
    font-size: 11.5px;
    font-weight: 850;
}

.od-bonus-card strong {
    color: var(--od-green);
    font-weight: 950;
}

/* List cards */
.od-list-card {
    margin-top: 12px;
    padding: 4px 0;
}

.od-list-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    min-height: 47px;
    padding: 7px 12px;
    border-bottom: 1px solid var(--od-line);
    transition: background .16s ease, transform .16s ease;
}

.od-list-row:last-child {
    border-bottom: 0;
}

.od-list-row:active {
    transform: scale(.99);
}

.od-list-row:hover {
    background: var(--od-card-soft);
}

.od-list-left {
    min-width: 0;
    gap: 10px;
}

.od-list-left .od-svg {
    width: 23px;
    height: 23px;
}

.od-list-left strong {
    overflow: hidden;
    color: var(--od-text);
    font-size: 14.5px;
    font-weight: 950;
    letter-spacing: -.1px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.od-list-right {
    gap: 8px;
    color: var(--od-muted);
}

.od-list-right > .od-svg {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    padding: 6px;
    border-radius: 9px;
    background: var(--od-card-soft);
}

.od-list-right > .od-svg svg {
    width: 16px;
    height: 16px;
}

.od-badge {
    display: inline-grid;
    place-items: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--od-green);
    color: #06120c;
    font-size: 10px;
    font-style: normal;
    font-weight: 950;
    box-shadow: 0 0 0 3px rgba(35, 232, 132, .12);
}

.od-theme-row {
    cursor: default;
}

.od-theme-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    width: 74px;
    height: 36px;
    padding: 4px;
    border: 0;
    border-radius: 13px;
    background: rgba(0, 0, 0, .23);
    cursor: pointer;
}

html[data-theme="light"] .od-theme-switch {
    background: rgba(10, 18, 24, .07);
}

.od-theme-option {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 31px;
    height: 28px;
    border-radius: 10px;
    color: var(--od-muted);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.od-theme-option .od-svg {
    width: 18px;
    height: 18px;
}

.od-theme-switch[data-active-theme="dark"] .od-theme-moon,
.od-theme-switch[data-active-theme="light"] .od-theme-sun {
    background: var(--od-card);
    color: var(--od-text);
    transform: scale(1.03);
    box-shadow: 0 5px 14px rgba(0,0,0,.16);
}

.od-support-card {
    border: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
    gap: 9px;
    padding: 0;
}

.od-support-card::before {
    display: none;
}

.od-support-card .od-list-row {
    border: 1px solid var(--od-line);
    border-radius: var(--od-radius);
    background: var(--od-card);
    box-shadow: var(--od-shadow);
}

/* Sign out */
.od-signout {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 17px auto 0;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--od-text);
    font-size: 15px;
    font-weight: 950;
    transition: background .16s ease, transform .16s ease;
}

.od-signout:hover {
    background: var(--od-card-soft);
}

.od-signout:active {
    transform: scale(.96);
}

.od-signout .od-svg {
    width: 22px;
    height: 22px;
}

/* Tiny phones */
@media (max-width: 370px) {
    .od-dashboard {
        padding-left: 9px;
        padding-right: 9px;
    }

    .od-profile-text strong {
        font-size: 18px;
    }

    .od-avatar-wrap {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .od-avatar-img,
    .od-avatar-fallback {
        width: 49px;
        height: 49px;
    }

    .od-level-status {
        font-size: 15px;
    }

    .od-xp-chip {
        padding: 5px 8px;
        font-size: 10px;
    }

    .od-money-btn {
        min-height: 40px;
        font-size: 12.5px;
    }

    .od-shortcut span {
        font-size: 9.5px;
    }

    .od-list-left strong {
        font-size: 13.5px;
    }
}

/* Desktop keeps it compact like a mobile app panel */
@media (min-width: 720px) {
    body.od-user-page {
        background:
            radial-gradient(circle at 50% -16%, var(--od-rank-soft), transparent 25%),
            linear-gradient(180deg, var(--od-bg), var(--od-page));
    }

    .od-dashboard {
        padding-top: 18px;
        padding-bottom: 34px;
    }
}

/* Animations */
@keyframes odCardShine {
    0%, 72%, 100% {
        transform: translateX(-92%);
        opacity: 0;
    }
    80% {
        opacity: .65;
    }
    96% {
        transform: translateX(92%);
        opacity: 0;
    }
}

@keyframes odIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-1.25px) scale(1.02);
    }
}

@keyframes odIconPulse {
    0%, 100% {
        opacity: .68;
        transform: scale(.85);
    }
    50% {
        opacity: 1;
        transform: scale(1.18);
    }
}

@keyframes odSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes odProgressGrow {
    from {
        width: 0;
    }
    to {
        width: var(--od-progress);
    }
}

@keyframes odProgressShine {
    0% {
        transform: translateX(-90%);
    }
    100% {
        transform: translateX(110%);
    }
}

@keyframes odFlow {
    0% {
        filter: saturate(1);
    }
    50% {
        filter: saturate(1.3) brightness(1.06);
    }
    100% {
        filter: saturate(1);
    }
}

@keyframes odThumbPop {
    0% {
        transform: translate(-50%, -50%) scale(.3);
        opacity: 0;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes odXpPop {
    0% {
        transform: translateY(-4px) scale(.94);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .od-card::before,
    .od-svg svg,
    .od-svg-dot,
    .od-avatar-glow,
    .od-progress-fill,
    .od-progress-fill::after,
    .od-progress-star,
    .od-xp-chip {
        animation: none !important;
    }
}
/* =========================================================
   DESKTOP ONLY HARDCORE FULL WIDTH DASHBOARD FIX
   Mobile stays untouched
   ========================================================= */
@media (min-width: 721px) {

    html,
    body.od-user-page {
        width: 100% !important;
        max-width: none !important;
        overflow-x: hidden !important;
    }

    body.od-user-page {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .od-dashboard {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 22px !important;
        padding-right: 22px !important;
        box-sizing: border-box !important;
    }

    .od-user-top,
    .od-level-card,
    .od-balance-line,
    .od-wallet-card,
    .od-bonus-card,
    .od-list-card,
    .od-support-card {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .od-profile-row {
        width: 100% !important;
        max-width: none !important;
    }

    .od-avatar-link {
        width: 100% !important;
        max-width: none !important;
    }

    .od-main-actions {
        width: 100% !important;
    }

    .od-shortcut-grid {
        width: 100% !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .od-list-row {
        width: 100% !important;
    }
}
/* Hide approved deposit count and approved amount text */
.od-level-foot {
    display: none !important;
} 

/* =========================================================
   PROFILE + EDIT PROFILE DESKTOP ONLY FULL WIDTH FIX
   This touches only /user/profile.php and /user/edit-profile.php
   ========================================================= */
@media (min-width: 721px) {
    body.odp-page {
        width: 100% !important;
        max-width: none !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    .odp-shell {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 22px !important;
        padding-right: 22px !important;
        box-sizing: border-box !important;
    }

    .odp-topbar,
    .odp-hero,
    .odp-card,
    .odp-edit-form,
    .odp-edit-avatar-area,
    .odp-form-section,
    .odp-avatar-grid-section {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
}


/* =========================================================
   ODDEMINBET PROFILE + EDIT PROFILE
   Small, full-width, premium, animated SVG icon system
   ========================================================= */

.odp-tier-beginner,
.odp-tier-bronze {
    --odp-rank: #b8793b;
    --odp-rank-2: #f0bd82;
    --odp-rank-soft: rgba(184, 121, 59, 0.18);
}

.odp-tier-silver {
    --odp-rank: #aab4be;
    --odp-rank-2: #f0f5fb;
    --odp-rank-soft: rgba(170, 180, 190, 0.20);
}

.odp-tier-gold {
    --odp-rank: #efb71b;
    --odp-rank-2: #fff1a1;
    --odp-rank-soft: rgba(239, 183, 27, 0.20);
}

.odp-tier-diamond {
    --odp-rank: #55d9ff;
    --odp-rank-2: #dcf8ff;
    --odp-rank-soft: rgba(85, 217, 255, 0.22);
}

body.odp-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 50% -12%, var(--odp-rank-soft, rgba(35,232,132,.08)), transparent 28%),
        linear-gradient(180deg, var(--od-bg, #202827), var(--od-page, #202827));
    color: var(--od-text, #f6fbfa);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    overflow-x: hidden;
}

body.odp-page,
body.odp-page a,
body.odp-page button,
body.odp-page input {
    -webkit-tap-highlight-color: transparent;
}

body.odp-page a {
    color: inherit;
    text-decoration: none;
}

body.odp-page button,
body.odp-page input {
    font: inherit;
}

.odp-shell {
    width: min(100%, 470px);
    min-height: 100vh;
    margin: 0 auto;
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px calc(22px + env(safe-area-inset-bottom, 0px));
}

.odp-topbar {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    min-height: 48px;
    margin-bottom: 16px;
}

.odp-topbar h1 {
    margin: 0;
    color: var(--od-text, #f6fbfa);
    font-size: 19px;
    font-weight: 950;
    letter-spacing: -.3px;
    text-align: center;
}

.odp-round-btn,
.odp-edit-btn {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--od-line, rgba(255,255,255,.075));
    border-radius: 11px;
    background: var(--od-card-soft, rgba(255,255,255,.055));
    color: var(--od-icon, #c7d3d3);
    transition: transform .16s ease, background .16s ease;
}

.odp-round-btn:active,
.odp-edit-btn:active {
    transform: scale(.94);
}

.odp-top-spacer {
    width: 34px;
    height: 34px;
}

/* SVG icons */
.odp-svg {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    color: currentColor;
}

.odp-svg svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    animation: odpIconFloat 3s ease-in-out infinite;
}

.odp-svg-line {
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.odp-svg-fill {
    fill: currentColor;
}

.odp-svg-heart {
    color: #ff444f;
    filter: drop-shadow(0 0 8px rgba(255,68,79,.22));
}

.odp-svg-edit,
.odp-svg-chart,
.odp-svg-check,
.odp-svg-upload {
    color: var(--od-green, #23e884);
}

.odp-svg-medal {
    color: #f3f6f6;
}

.odp-svg-details {
    width: 18px;
    height: 18px;
}

/* My Profile */
.odp-hero {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 30px 0 20px;
    border-radius: 0 0 18px 18px;
}

.odp-heart-pill {
    position: absolute;
    left: 0;
    top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 56px;
    height: 35px;
    padding: 0 11px;
    border-radius: 12px;
    background: var(--od-card, #303837);
    border: 1px solid var(--od-line, rgba(255,255,255,.075));
    box-shadow: var(--od-shadow, 0 14px 34px rgba(0,0,0,.24));
}

.odp-heart-pill strong {
    color: var(--od-text, #fff);
    font-size: 20px;
    font-weight: 950;
}

.odp-hero .odp-edit-btn {
    position: absolute;
    right: 0;
    top: 28px;
    width: 36px;
    height: 36px;
}

.odp-edit-btn span {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--od-green, #23e884);
    box-shadow: 0 0 0 3px rgba(35,232,132,.13), 0 0 12px rgba(35,232,132,.45);
}

.odp-avatar-large {
    position: relative;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, var(--odp-rank, #b8793b), var(--od-green, #23e884), var(--odp-rank, #b8793b));
    box-shadow: 0 0 0 5px var(--odp-rank-soft, rgba(184,121,59,.18)), 0 16px 35px rgba(0,0,0,.18);
    animation: odpAvatarGlow 4.5s ease-in-out infinite;
}

.odp-avatar-large img,
.odp-avatar-empty {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--od-card, #303837);
    border: 2px solid rgba(255,255,255,.12);
    overflow: hidden;
}

.odp-avatar-empty {
    display: grid;
    place-items: center;
}

.odp-avatar-empty .odp-svg {
    width: 38px;
    height: 38px;
    color: var(--od-green, #23e884);
}

.odp-rank-badge {
    transform: translateY(-7px);
    min-width: 78px;
    padding: 4px 11px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: color-mix(in srgb, var(--od-card, #303837), var(--odp-rank, #b8793b) 16%);
    color: var(--od-text, #fff);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.14);
}

.odp-hero h2 {
    margin: 2px 0 0;
    max-width: 92%;
    overflow: hidden;
    color: var(--od-text, #fff);
    font-size: 24px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -.7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.odp-id-text {
    margin: 7px 0 0;
    max-width: 92%;
    overflow: hidden;
    color: var(--od-muted, #aebbbb);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

/* Profile cards */
.odp-card {
    position: relative;
    overflow: hidden;
    margin-top: 13px;
    padding: 13px;
    border: 1px solid var(--od-line, rgba(255,255,255,.075));
    border-radius: var(--od-radius, 15px);
    background:
        linear-gradient(145deg, rgba(255,255,255,.035), transparent 34%),
        var(--od-card, #303837);
    box-shadow: var(--od-shadow, 0 14px 34px rgba(0,0,0,.24));
}

html[data-theme="light"] .odp-card,
html[data-theme="light"] .odp-heart-pill,
html[data-theme="light"] .odp-round-btn,
html[data-theme="light"] .odp-edit-btn {
    background:
        linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,255,255,.76)),
        var(--od-card, #fff);
}

.odp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.07) 38%, transparent 68%);
    opacity: .6;
    transform: translateX(-85%);
    animation: odpCardShine 6.3s ease-in-out infinite;
}

.odp-card-head,
.odp-card-title,
.odp-details-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.odp-card-head {
    justify-content: space-between;
    gap: 10px;
}

.odp-card-title {
    gap: 8px;
    min-width: 0;
}

.odp-card-title strong {
    overflow: hidden;
    color: var(--od-text, #fff);
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -.3px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.odp-details-link {
    gap: 5px;
    color: var(--od-green, #23e884);
    font-size: 12.5px;
    font-weight: 950;
    white-space: nowrap;
}

.odp-card-line {
    position: relative;
    z-index: 1;
    height: 1px;
    margin: 13px 0;
    background: var(--od-line, rgba(255,255,255,.075));
}

/* Level inside medals */
.odp-profile-level-box {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 11px;
    padding: 12px;
    border-radius: 14px;
    background: var(--od-card-2, #2a3231);
}

.odp-profile-level-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.odp-profile-level-text strong {
    color: var(--od-text, #fff);
    font-size: 15px;
    font-weight: 950;
}

.odp-profile-level-text span {
    color: var(--odp-rank-2, #f0bd82);
    font-size: 12px;
    font-weight: 950;
}

.odp-profile-level-text em {
    color: var(--od-green, #23e884);
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.odp-profile-progress {
    position: relative;
    height: 12px;
    border-radius: 999px;
    background: rgba(0,0,0,.18);
    box-shadow: inset 0 2px 7px rgba(0,0,0,.20);
}

html[data-theme="light"] .odp-profile-progress {
    background: rgba(10,18,24,.10);
    box-shadow: inset 0 2px 7px rgba(10,18,24,.08);
}

.odp-profile-progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--odp-progress);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--odp-rank, #b8793b), var(--odp-rank-2, #f0bd82), var(--odp-rank, #b8793b));
    box-shadow: 0 0 18px var(--odp-rank-soft, rgba(184,121,59,.18));
    animation: odpProgressGrow .85s cubic-bezier(.2,.75,.2,1), odpFlow 1.8s linear infinite;
}

.odp-profile-progress span::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(115deg, transparent 0 30%, rgba(255,255,255,.42) 48%, transparent 66% 100%);
    transform: translateX(-90%);
    animation: odpProgressShine 1.6s ease-in-out infinite;
}

.odp-profile-progress i {
    position: absolute;
    top: 50%;
    left: var(--odp-progress);
    width: 20px;
    height: 20px;
    border: 5px solid color-mix(in srgb, var(--odp-rank-2, #f0bd82), white 30%);
    border-radius: 50%;
    background: var(--od-card, #303837);
    box-shadow: 0 0 0 4px var(--odp-rank-soft, rgba(184,121,59,.18)), 0 0 22px var(--odp-rank, #b8793b);
    transform: translate(-50%, -50%);
    animation: odpThumbPop .85s ease both;
}

/* Statistics */
.odp-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.odp-stat-box {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 78px;
    padding: 12px 8px;
    border-radius: 13px;
    background: var(--od-card-2, #2a3231);
    border: 1px solid var(--od-line, rgba(255,255,255,.075));
    text-align: center;
}

.odp-stat-wide {
    grid-column: 1 / -1;
    min-height: 83px;
}

.odp-stat-box span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--od-muted, #aebbbb);
    font-size: 12.5px;
    font-weight: 800;
}

.odp-stat-box span .odp-svg {
    width: 17px;
    height: 17px;
}

.odp-stat-box strong {
    color: var(--od-text, #fff);
    font-size: 21px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.2px;
}

/* Alerts */
.odp-alert {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 13px;
    border: 1px solid var(--od-line, rgba(255,255,255,.075));
    font-size: 12px;
    font-weight: 850;
}

.odp-alert p {
    margin: 0;
}

.odp-alert p + p {
    margin-top: 5px;
}

.odp-alert-success {
    background: rgba(35, 232, 132, .12);
    color: var(--od-green, #23e884);
}

.odp-alert-error {
    background: rgba(255, 89, 89, .12);
    color: #ff7979;
}

/* Edit Profile */
.odp-edit-avatar-area {
    display: grid;
    justify-items: center;
    padding: 13px 0 18px;
}

.odp-edit-avatar-preview {
    display: grid;
    place-items: center;
    width: 152px;
    height: 152px;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, var(--od-green, #23e884), #9ee51c, var(--od-green, #23e884));
    box-shadow: 0 0 0 6px rgba(35,232,132,.10), 0 18px 44px rgba(0,0,0,.20);
    overflow: visible;
    animation: odpAvatarGlow 4.5s ease-in-out infinite;
}

.odp-edit-avatar-preview img,
.odp-edit-avatar-preview .odp-avatar-empty {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--od-card, #303837);
    border: 2px solid rgba(255,255,255,.12);
    overflow: hidden;
}

.odp-upload-btn {
    position: relative;
    z-index: 2;
    transform: translateY(-18px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--od-green, #23e884), var(--od-green-2, #16c86f));
    color: #06120c;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(35,232,132,.20);
    cursor: pointer;
}

.odp-upload-btn .odp-svg {
    color: #06120c;
}

.odp-hidden-file {
    display: none !important;
}

.odp-form-section {
    display: grid;
    gap: 13px;
}

.odp-field {
    display: grid;
    gap: 7px;
}

.odp-field > span,
.odp-avatar-grid-section h2 {
    color: var(--od-muted, #aebbbb);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.2px;
}

.odp-field input {
    width: 100%;
    min-height: 49px;
    padding: 0 13px;
    border: 1px solid color-mix(in srgb, var(--od-line, rgba(255,255,255,.075)), white 18%);
    border-radius: 12px;
    outline: 0;
    background: var(--od-card-2, #2a3231);
    color: var(--od-text, #fff);
    font-size: 15px;
    font-weight: 750;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.odp-field input:focus {
    border-color: rgba(35,232,132,.55);
    box-shadow: 0 0 0 4px rgba(35,232,132,.10);
}

.odp-field small {
    color: var(--od-muted, #aebbbb);
    font-size: 12px;
    font-weight: 700;
}

.odp-avatar-grid-section {
    margin-top: 18px;
}

.odp-avatar-grid-section h2 {
    margin: 0 0 12px;
}

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

.odp-avatar-choice {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid transparent;
    border-radius: 15px;
    background: var(--od-card, #303837);
    box-shadow: none;
    cursor: pointer;
    overflow: hidden;
    transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.odp-avatar-choice:active {
    transform: scale(.96);
}

.odp-avatar-choice img {
    width: 76%;
    height: 76%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--od-card-2, #2a3231);
    box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}

.odp-avatar-choice::before {
    content: "";
    position: absolute;
    inset: 9%;
    border-radius: 50%;
    border: 3px solid color-mix(in srgb, var(--od-green, #23e884), white 30%);
    opacity: .30;
    animation: odpAvatarRing 3.8s ease-in-out infinite;
}

.odp-avatar-choice.is-active {
    border-color: rgba(35,232,132,.60);
    background: color-mix(in srgb, var(--od-card, #303837), var(--od-green, #23e884) 8%);
    box-shadow: 0 12px 26px rgba(35,232,132,.12);
}

.odp-avatar-choice.is-active::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--od-green, #23e884);
    box-shadow: 0 0 0 4px rgba(35,232,132,.14), 0 0 13px rgba(35,232,132,.48);
}

.odp-in-use {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    min-width: 48px;
    padding: 3px 7px;
    border-radius: 999px;
    background: var(--od-green, #23e884);
    color: #06120c;
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    text-align: center;
}

.odp-avatar-choice:not(.is-active) .odp-in-use {
    background: rgba(255,255,255,.12);
    color: var(--od-muted, #aebbbb);
}

html[data-theme="light"] .odp-avatar-choice:not(.is-active) .odp-in-use {
    background: rgba(10,18,24,.08);
}

.odp-empty-avatars {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 20px 12px;
    border: 1px dashed var(--od-line, rgba(255,255,255,.075));
    border-radius: 15px;
    color: var(--od-muted, #aebbbb);
}

.odp-empty-avatars strong {
    color: var(--od-text, #fff);
}

.odp-save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    margin-top: 22px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--od-green, #23e884), var(--od-green-2, #16c86f));
    color: #06120c;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(35,232,132,.20);
    transition: transform .16s ease, filter .16s ease;
}

.odp-save-btn:active {
    transform: scale(.98);
}

.odp-save-btn .odp-svg {
    color: #06120c;
}

/* Small mobile */
@media (max-width: 370px) {
    .odp-shell {
        padding-left: 9px;
        padding-right: 9px;
    }

    .odp-hero h2 {
        font-size: 21px;
    }

    .odp-id-text {
        font-size: 14px;
    }

    .odp-avatar-large {
        width: 82px;
        height: 82px;
    }

    .odp-avatar-large img,
    .odp-avatar-empty {
        width: 75px;
        height: 75px;
    }

    .odp-edit-avatar-preview {
        width: 134px;
        height: 134px;
    }

    .odp-edit-avatar-preview img,
    .odp-edit-avatar-preview .odp-avatar-empty {
        width: 126px;
        height: 126px;
    }

    .odp-avatar-grid {
        gap: 9px;
    }

    .odp-card-title strong {
        font-size: 15.5px;
    }

    .odp-stat-box span {
        font-size: 11px;
    }
}

@media (min-width: 520px) {
    .odp-avatar-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* Animations */
@keyframes odpIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-1.2px) scale(1.025);
    }
}

@keyframes odpAvatarGlow {
    0%, 100% {
        filter: saturate(1);
        transform: translateY(0);
    }
    50% {
        filter: saturate(1.18) brightness(1.05);
        transform: translateY(-1px);
    }
}

@keyframes odpCardShine {
    0%, 72%, 100% {
        transform: translateX(-92%);
        opacity: 0;
    }
    80% {
        opacity: .65;
    }
    96% {
        transform: translateX(92%);
        opacity: 0;
    }
}

@keyframes odpProgressGrow {
    from {
        width: 0;
    }
    to {
        width: var(--odp-progress);
    }
}

@keyframes odpProgressShine {
    0% {
        transform: translateX(-90%);
    }
    100% {
        transform: translateX(110%);
    }
}

@keyframes odpFlow {
    0%, 100% {
        filter: saturate(1);
    }
    50% {
        filter: saturate(1.3) brightness(1.06);
    }
}

@keyframes odpThumbPop {
    0% {
        transform: translate(-50%, -50%) scale(.3);
        opacity: 0;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes odpAvatarRing {
    0%, 100% {
        transform: scale(.96);
        opacity: .24;
    }
    50% {
        transform: scale(1.04);
        opacity: .48;
    }
}

@media (prefers-reduced-motion: reduce) {
    .odp-svg svg,
    .odp-card::before,
    .odp-avatar-large,
    .odp-edit-avatar-preview,
    .odp-profile-progress span,
    .odp-profile-progress span::after,
    .odp-profile-progress i,
    .odp-avatar-choice::before {
        animation: none !important;
    }
}
/* Remove profile love icon and 0 */
.odp-heart-pill {
    display: none !important;
}
/* Fix profile edit pencil icon */
.odp-edit-btn {
    position: absolute !important;
    right: 0 !important;
    top: 28px !important;
    display: grid !important;
    place-items: center !important;
    color: var(--od-green, #23e884) !important;
}

.odp-edit-pencil {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    stroke: currentColor !important;
    stroke-width: 2.35 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    animation: odpIconFloat 3s ease-in-out infinite !important;
}

.odp-edit-pencil path {
    stroke: currentColor !important;
}

.odp-edit-btn i {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 50% !important;
    background: var(--od-green, #23e884) !important;
    box-shadow: 0 0 0 3px rgba(35,232,132,.13), 0 0 12px rgba(35,232,132,.45) !important;
}
/* =========================================================
   OddeminBet Upcoming Page
   File: /assets/css/user.css
   Page: /user/upcoming.php
========================================================= */

.od-upcoming-body {
  margin: 0;
  min-height: 100vh;
  color: #f2f7f5;
  background:
    radial-gradient(circle at 8% 0%, rgba(37, 232, 135, 0.10), transparent 28%),
    linear-gradient(180deg, #2a302e 0%, #1f2624 38%, #1f2624 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.od-upcoming-body button,
.od-upcoming-body input,
.od-upcoming-body a {
  -webkit-tap-highlight-color: transparent;
}

.od-upcoming-page {
  width: 100%;
  min-height: 100vh;
  padding: 12px 14px 118px;
}

.od-upcoming-page .od-go-live {
  width: 100%;
  height: 46px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.045);
  color: #cdd5d2;
  font-weight: 900;
  font-size: 15px;
  margin: 6px 0 22px;
}

.od-upcoming-page .od-go-live svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  opacity: 0.9;
}

.od-upcoming-page .od-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.od-upcoming-page .od-title-left {
  display: flex;
  align-items: center;
  gap: 13px;
}

.od-upcoming-page .od-title-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #14a8ff;
  background: rgba(20, 168, 255, 0.10);
}

.od-upcoming-page .od-title-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-upcoming-page .od-title-left h1 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -0.6px;
  line-height: 1;
}

.od-upcoming-page .od-fixture-count {
  flex: 0 0 auto;
  min-width: 36px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #aeb8b5;
  font-size: 12px;
  font-weight: 1000;
}

.od-upcoming-page .od-category-wrap,
.od-upcoming-page .od-league-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.od-upcoming-page .od-category-wrap::-webkit-scrollbar,
.od-upcoming-page .od-league-wrap::-webkit-scrollbar {
  display: none;
}

.od-upcoming-page .od-category-tabs {
  display: flex;
  gap: 11px;
  padding: 1px 2px 16px;
}

.od-upcoming-page .category-tab {
  flex: 0 0 auto;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 7px 17px 7px 9px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  color: #e7eeeb;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.od-upcoming-page .category-tab-icon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #9aa6a2;
  background: rgba(255, 255, 255, 0.055);
}

.od-upcoming-page .category-tab-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-upcoming-page .category-tab span:last-child {
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -0.2px;
}

.od-upcoming-page .category-tab.active {
  color: #101614;
  background: linear-gradient(135deg, #25e887, #21f596);
  box-shadow: 0 14px 28px rgba(37, 232, 135, 0.22);
}

.od-upcoming-page .category-tab.active .category-tab-icon {
  color: #0b1511;
  background: rgba(0, 0, 0, 0.08);
}

.od-upcoming-page .od-league-wrap {
  margin-bottom: 14px;
}

.od-upcoming-page .od-league-tabs {
  display: flex;
  gap: 10px;
  padding: 0 2px 2px;
}

.od-upcoming-page .league-tab {
  flex: 0 0 auto;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  cursor: pointer;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.045);
  color: #b6bfbc;
  font-size: 13px;
  font-weight: 900;
}

.od-upcoming-page .league-tab.active {
  color: #101614;
  background: linear-gradient(135deg, #25e887, #20ef8f);
}

.od-upcoming-page .hidden-tab {
  display: none !important;
}

.od-upcoming-page .od-match-list {
  display: grid;
  gap: 14px;
}

.od-upcoming-page .match-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  padding: 16px 16px 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(145deg, #272e2c, #222826);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.od-upcoming-page .match-row:active {
  transform: scale(0.992);
}

.od-upcoming-page .match-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.od-upcoming-page .match-league {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a9b3b0;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
}

.od-upcoming-page .match-league svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  opacity: 0.65;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-upcoming-page .match-league span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.od-upcoming-page .match-star {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: #7f8986;
  opacity: 0.72;
}

.od-upcoming-page .match-star svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.od-upcoming-page .kickoff-line {
  margin-bottom: 16px;
  color: #aab4b1;
  font-size: 14px;
  font-weight: 950;
}

.od-upcoming-page .kickoff-line strong {
  color: #aeb8b5;
  font-weight: 1000;
}

.od-upcoming-page .team-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.od-upcoming-page .team-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.od-upcoming-page .team-logo-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.055);
}

.od-upcoming-page .team-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.od-upcoming-page .team-placeholder-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #7f8a87;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-upcoming-page .team-name {
  min-width: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.25px;
}

.od-upcoming-page .market-label {
  margin-bottom: 8px;
  color: #b2bbb8;
  font-size: 13px;
  font-weight: 900;
}

.od-upcoming-page .match-odds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.od-upcoming-page .odd-box {
  min-height: 50px;
  border: 0;
  border-radius: 13px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: #5a605e;
  color: #f4f6f5;
  font-weight: 1000;
}

.od-upcoming-page .odd-box small {
  color: #bec5c2;
  font-size: 15px;
  font-weight: 1000;
  text-transform: none;
}

.od-upcoming-page .odd-box span {
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
}

.od-upcoming-page .odd-box.selected {
  background: linear-gradient(135deg, #25e887, #20ef8f);
  color: #111614;
}

.od-upcoming-page .odd-box.selected small,
.od-upcoming-page .odd-box.selected span {
  color: #111614;
}

.od-upcoming-page .odd-box.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.od-upcoming-page .no-filter-state,
.od-upcoming-page .empty-state {
  display: none;
  border-radius: 18px;
  padding: 34px 18px;
  text-align: center;
  color: #aab3b0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.od-upcoming-page .empty-state {
  display: block;
}

.od-upcoming-page .hidden-by-filter {
  display: none !important;
}

@media (min-width: 760px) {
  .od-upcoming-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .od-upcoming-page .od-match-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .od-upcoming-page .od-match-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .od-upcoming-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .od-upcoming-page .od-title-left h1 {
    font-size: 25px;
  }

  .od-upcoming-page .category-tab span:last-child {
    font-size: 15px;
  }

  .od-upcoming-page .team-name {
    font-size: 17px;
  }

  .od-upcoming-page .odd-box {
    padding-left: 10px;
    padding-right: 10px;
  }

  .od-upcoming-page .odd-box small,
  .od-upcoming-page .odd-box span {
    font-size: 14px;
  }
}
/* =========================================================
   Upcoming compact fixes + lime selected odds
   Add to bottom of /assets/css/user.css
========================================================= */

.od-upcoming-page {
  padding: 8px 10px 108px !important;
}

.od-upcoming-page .od-go-live {
  height: 38px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  margin: 4px 0 14px !important;
}

.od-upcoming-page .od-go-live svg {
  width: 13px !important;
  height: 13px !important;
}

.od-upcoming-page .od-title-row {
  margin-bottom: 12px !important;
}

.od-upcoming-page .od-title-left {
  gap: 9px !important;
}

.od-upcoming-page .od-title-icon {
  width: 34px !important;
  height: 34px !important;
}

.od-upcoming-page .od-title-icon svg {
  width: 28px !important;
  height: 28px !important;
}

.od-upcoming-page .od-title-left h1 {
  font-size: 22px !important;
  letter-spacing: -0.35px !important;
}

.od-upcoming-page .od-fixture-count {
  min-width: 30px !important;
  height: 25px !important;
  font-size: 10px !important;
}

.od-upcoming-page .od-category-tabs {
  gap: 8px !important;
  padding-bottom: 11px !important;
}

.od-upcoming-page .category-tab {
  min-height: 39px !important;
  padding: 6px 12px 6px 7px !important;
  gap: 7px !important;
}

.od-upcoming-page .category-tab-icon {
  width: 25px !important;
  height: 25px !important;
}

.od-upcoming-page .category-tab-icon svg {
  width: 16px !important;
  height: 16px !important;
}

.od-upcoming-page .category-tab span:last-child {
  font-size: 13px !important;
}

.od-upcoming-page .od-league-wrap {
  margin-bottom: 10px !important;
}

.od-upcoming-page .od-league-tabs {
  gap: 7px !important;
}

.od-upcoming-page .league-tab {
  min-height: 32px !important;
  padding: 7px 11px !important;
  font-size: 11px !important;
}

.od-upcoming-page .od-match-list {
  gap: 10px !important;
}

.od-upcoming-page .match-row {
  border-radius: 14px !important;
  padding: 11px 12px 12px !important;
}

.od-upcoming-page .match-top {
  margin-bottom: 8px !important;
}

.od-upcoming-page .match-league {
  font-size: 11px !important;
  gap: 5px !important;
}

.od-upcoming-page .match-league svg {
  width: 13px !important;
  height: 13px !important;
}

.od-upcoming-page .match-star {
  display: none !important;
}

.od-upcoming-page .kickoff-line {
  margin-bottom: 11px !important;
  font-size: 11px !important;
}

.od-upcoming-page .team-list {
  gap: 8px !important;
  margin-bottom: 12px !important;
}

.od-upcoming-page .team-row {
  gap: 8px !important;
}

.od-upcoming-page .team-logo-wrap {
  width: 28px !important;
  height: 28px !important;
  flex-basis: 28px !important;
}

.od-upcoming-page .team-logo {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
}

.od-upcoming-page .team-placeholder-icon {
  width: 17px !important;
  height: 17px !important;
}

.od-upcoming-page .team-name {
  font-size: 14px !important;
  line-height: 1.15 !important;
}

.od-upcoming-page .market-label {
  margin-bottom: 6px !important;
  font-size: 11px !important;
}

.od-upcoming-page .match-odds {
  gap: 7px !important;
}

.od-upcoming-page .odd-box {
  min-height: 39px !important;
  border-radius: 10px !important;
  padding: 6px 9px !important;
  background: #505654 !important;
  color: #f4f6f5 !important;
  border: 1px solid rgba(255, 255, 255, 0.045) !important;
}

.od-upcoming-page .odd-box small {
  color: #c7cfcc !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
}

.od-upcoming-page .odd-box span {
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
}

/* Selected odd: lime green with black text */
.od-upcoming-page .odd-box.selected {
  background: linear-gradient(135deg, #c8ff00, #74ff35) !important;
  color: #061107 !important;
  border-color: rgba(200, 255, 0, 0.75) !important;
  box-shadow:
    0 10px 20px rgba(116, 255, 53, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}

.od-upcoming-page .odd-box.selected small,
.od-upcoming-page .odd-box.selected span {
  color: #061107 !important;
}

/* Disabled stays dull */
.od-upcoming-page .odd-box.disabled {
  opacity: 0.42 !important;
  cursor: not-allowed !important;
  background: #414744 !important;
  color: #8f9995 !important;
  box-shadow: none !important;
}

.od-upcoming-page .odd-box.disabled small,
.od-upcoming-page .odd-box.disabled span {
  color: #8f9995 !important;
}

@media (max-width: 420px) {
  .od-upcoming-page {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .od-upcoming-page .team-name {
    font-size: 13.5px !important;
  }

  .od-upcoming-page .odd-box small,
  .od-upcoming-page .odd-box span {
    font-size: 11.5px !important;
  }
}
/* =========================================================
   OddeminBet Live Page Clone
   Add this to the bottom of /assets/css/user.css
   Page: /user/live.php
========================================================= */

.od-live-body {
  margin: 0;
  min-height: 100vh;
  color: #f2f7f5;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 54, 77, 0.10), transparent 27%),
    linear-gradient(180deg, #303735 0%, #1f2624 38%, #1f2624 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.od-live-body button,
.od-live-body input,
.od-live-body a {
  -webkit-tap-highlight-color: transparent;
}

.od-live-page {
  width: 100%;
  min-height: 100vh;
  padding: 12px 14px 118px;
}

.od-live-page .od-live-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 8px 0 18px;
}

.od-live-page .od-live-title-left {
  display: flex;
  align-items: center;
  gap: 13px;
}

.od-live-page .od-live-title-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ff354d;
  background: rgba(255, 53, 77, 0.10);
  animation: odLiveTitlePulse 1.35s ease-in-out infinite;
}

.od-live-page .od-live-title-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-live-page .od-live-title-text {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 1000;
  letter-spacing: -0.7px;
  line-height: 1;
  animation: odLiveTextGlow 1.5s ease-in-out infinite;
}

.od-live-page .od-live-count {
  flex: 0 0 auto;
  min-width: 36px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 53, 77, 0.10);
  border: 1px solid rgba(255, 53, 77, 0.18);
  color: #ffd5db;
  font-size: 12px;
  font-weight: 1000;
}

.od-live-page .od-live-category-wrap,
.od-live-page .od-live-league-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.od-live-page .od-live-category-wrap::-webkit-scrollbar,
.od-live-page .od-live-league-wrap::-webkit-scrollbar {
  display: none;
}

.od-live-page .od-live-category-tabs {
  display: flex;
  gap: 11px;
  padding: 1px 2px 13px;
}

.od-live-page .od-live-category-tab {
  flex: 0 0 auto;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 7px 17px 7px 9px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  color: #e7eeeb;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.od-live-page .od-live-category-icon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #aeb8b5;
  background: rgba(255, 255, 255, 0.055);
}

.od-live-page .od-live-category-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: odLiveIconFloat 1.8s ease-in-out infinite;
}

.od-live-page .od-live-category-tab span:last-child {
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -0.2px;
}

.od-live-page .od-live-category-tab.active {
  color: #101614;
  background: linear-gradient(135deg, #25e887, #21f596);
  box-shadow: 0 14px 28px rgba(37, 232, 135, 0.22);
}

.od-live-page .od-live-category-tab.active .od-live-category-icon {
  color: #0b1511;
  background: rgba(0, 0, 0, 0.08);
}

.od-live-page .od-live-league-wrap {
  margin-bottom: 12px;
}

.od-live-page .od-live-league-tabs {
  display: flex;
  gap: 9px;
  padding: 0 2px 2px;
}

.od-live-page .od-live-league-tab {
  flex: 0 0 auto;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  cursor: pointer;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.045);
  color: #b6bfbc;
  font-size: 12px;
  font-weight: 900;
}

.od-live-page .od-live-league-tab.active {
  color: #101614;
  background: linear-gradient(135deg, #25e887, #20ef8f);
}

.od-live-page .hidden-tab {
  display: none !important;
}

.od-live-page .od-live-list {
  display: grid;
  gap: 14px;
}

.od-live-page .od-live-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  padding: 16px 16px 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 53, 77, 0.08), transparent 29%),
    linear-gradient(145deg, #272e2c, #222826);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.od-live-page .od-live-card:active {
  transform: scale(0.992);
}

.od-live-page .od-live-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.od-live-page .od-live-league-name {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a9b3b0;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
}

.od-live-page .od-live-league-name svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  opacity: 0.65;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-live-page .od-live-league-name span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.od-live-page .od-live-broadcast-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  color: #ff354d;
  animation: odLiveBroadcastPulse 1.05s ease-in-out infinite;
}

.od-live-page .od-live-broadcast-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-live-page .od-live-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #29a9ff;
  font-size: 14px;
  font-weight: 1000;
}

.od-live-page .od-live-clock {
  color: #29a9ff;
  font-variant-numeric: tabular-nums;
  font-weight: 1000;
  animation: odLiveClockMove 1s steps(2, end) infinite;
}

.od-live-page .od-live-clock.clock-flash {
  animation: odLiveClockFlash 0.55s ease both;
}

.od-live-page .od-live-play-icon {
  width: 21px;
  height: 21px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #ff3b4f;
  animation: odLiveIconBeat 1.2s ease-in-out infinite;
}

.od-live-page .od-live-play-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.od-live-page .od-live-flow-icon {
  display: inline-grid;
  gap: 3px;
  transform: skewX(-12deg);
}

.od-live-page .od-live-flow-icon i {
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: #22aaf7;
  display: block;
  animation: odLiveFlow 1s ease-in-out infinite;
}

.od-live-page .od-live-flow-icon i:nth-child(2) {
  width: 14px;
  animation-delay: 0.12s;
}

.od-live-page .od-live-flow-icon i:nth-child(3) {
  width: 10px;
  animation-delay: 0.24s;
}

.od-live-page .od-live-teams {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.od-live-page .od-live-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  min-width: 0;
}

.od-live-page .od-live-team-left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.od-live-page .team-logo-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.055);
}

.od-live-page .team-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.od-live-page .team-placeholder-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #7f8a87;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-live-page .team-name {
  min-width: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.25px;
}

.od-live-page .team-score {
  min-width: 48px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.085);
  font-size: 20px;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.od-live-page .team-score.score-flash {
  animation: odLiveScoreFlash 0.75s ease both;
}

.od-live-page .od-live-market-label {
  margin-bottom: 8px;
  color: #b2bbb8;
  font-size: 13px;
  font-weight: 900;
}

.od-live-page .od-live-odds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.od-live-page .live-odd-box {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 13px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: #5a605e;
  color: #f4f6f5;
  font-weight: 1000;
}

.od-live-page .live-odd-box small {
  color: #bec5c2;
  font-size: 15px;
  font-weight: 1000;
  text-transform: none;
}

.od-live-page .live-odd-box span {
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
}

.od-live-page .live-odd-box.selected,
.od-live-page .live-odd-box.is-selected,
.od-live-page .live-odd-box.active,
.od-live-page .live-odd-box.in-slip {
  background: linear-gradient(135deg, #c8ff00, #74ff35) !important;
  color: #061107 !important;
  border-color: rgba(200, 255, 0, 0.75) !important;
  box-shadow:
    0 10px 20px rgba(116, 255, 53, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
  animation: odLiveOddSelectPop 0.25s ease both;
}

.od-live-page .live-odd-box.selected small,
.od-live-page .live-odd-box.selected span,
.od-live-page .live-odd-box.is-selected small,
.od-live-page .live-odd-box.is-selected span,
.od-live-page .live-odd-box.active small,
.od-live-page .live-odd-box.active span,
.od-live-page .live-odd-box.in-slip small,
.od-live-page .live-odd-box.in-slip span {
  color: #061107 !important;
}

.od-live-page .od-live-all-markets {
  min-height: 50px;
  width: 100%;
  border-radius: 13px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #5a605e;
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
}

.od-live-page .od-live-empty {
  border-radius: 18px;
  padding: 34px 18px;
  text-align: center;
  color: #aab3b0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.od-live-page .od-live-no-filter {
  display: none;
}

.od-live-page .hidden-by-filter,
.od-live-page .hidden-by-status {
  display: none !important;
}

@keyframes odLiveTitlePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 53, 77, 0.30);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 53, 77, 0.06);
    transform: scale(1.04);
  }
}

@keyframes odLiveTextGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(255, 53, 77, 0);
  }
  50% {
    text-shadow: 0 0 18px rgba(255, 53, 77, 0.35);
  }
}

@keyframes odLiveIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-1px) rotate(-3deg);
  }
}

@keyframes odLiveBroadcastPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 53, 77, 0));
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(255, 53, 77, 0.75));
  }
}

@keyframes odLiveIconBeat {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
}

@keyframes odLiveFlow {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(3px);
  }
}

@keyframes odLiveClockMove {
  0%, 100% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
  }
}

@keyframes odLiveClockFlash {
  0% {
    transform: scale(1);
    color: #29a9ff;
  }
  45% {
    transform: scale(1.08);
    color: #74ff35;
  }
  100% {
    transform: scale(1);
    color: #29a9ff;
  }
}

@keyframes odLiveScoreFlash {
  0% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.055);
  }
  45% {
    transform: scale(1.18);
    color: #061107;
    background: linear-gradient(135deg, #c8ff00, #74ff35);
  }
  100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.055);
  }
}

@keyframes odLiveOddSelectPop {
  0% {
    transform: scale(0.94);
  }
  70% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width: 760px) {
  .od-live-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .od-live-page .od-live-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .od-live-page .od-live-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .od-live-page {
    padding: 9px 10px 108px;
  }

  .od-live-page .od-live-title-row {
    margin-top: 6px;
    margin-bottom: 14px;
  }

  .od-live-page .od-live-title-icon {
    width: 38px;
    height: 38px;
  }

  .od-live-page .od-live-title-icon svg {
    width: 32px;
    height: 32px;
  }

  .od-live-page .od-live-title-text {
    font-size: 27px;
  }

  .od-live-page .od-live-category-tabs {
    gap: 8px;
    padding-bottom: 11px;
  }

  .od-live-page .od-live-category-tab {
    min-height: 41px;
    padding: 6px 13px 6px 7px;
    gap: 7px;
  }

  .od-live-page .od-live-category-icon {
    width: 27px;
    height: 27px;
  }

  .od-live-page .od-live-category-icon svg {
    width: 17px;
    height: 17px;
  }

  .od-live-page .od-live-category-tab span:last-child {
    font-size: 14px;
  }

  .od-live-page .od-live-league-tab {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 11px;
  }

  .od-live-page .od-live-list {
    gap: 11px;
  }

  .od-live-page .od-live-card {
    border-radius: 15px;
    padding: 12px;
  }

  .od-live-page .od-live-league-name {
    font-size: 12px;
  }

  .od-live-page .od-live-status-row {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .od-live-page .team-logo-wrap {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .od-live-page .team-logo {
    width: 25px;
    height: 25px;
  }

  .od-live-page .team-name {
    font-size: 15px;
  }

  .od-live-page .team-score {
    min-width: 40px;
    height: 36px;
    border-radius: 12px;
    font-size: 17px;
  }

  .od-live-page .od-live-market-label {
    font-size: 12px;
  }

  .od-live-page .od-live-odds {
    gap: 7px;
  }

  .od-live-page .live-odd-box {
    min-height: 42px;
    border-radius: 11px;
    padding: 7px 10px;
  }

  .od-live-page .live-odd-box small,
  .od-live-page .live-odd-box span {
    font-size: 13px;
  }

  .od-live-page .od-live-all-markets {
    min-height: 44px;
    font-size: 14px;
  }
}
/* =========================================================
   LIVE PAGE FORCE-COMPACT OVERRIDE
   Paste this at the VERY BOTTOM of /assets/css/user.css
   It targets BOTH the new live.php classes and the old live.php classes.
========================================================= */

/* page spacing */
body.od-live-body .od-live-page,
body .od-live-page,
body .live-page {
  padding: 7px 8px 105px !important;
}

/* title/header inside live content */
body.od-live-body .od-live-title-row,
body .od-live-title-row {
  margin: 3px 0 10px !important;
}

body.od-live-body .od-live-title-left,
body .od-live-title-left {
  gap: 8px !important;
}

body.od-live-body .od-live-title-icon,
body .od-live-title-icon {
  width: 30px !important;
  height: 30px !important;
}

body.od-live-body .od-live-title-icon svg,
body .od-live-title-icon svg {
  width: 24px !important;
  height: 24px !important;
}

body.od-live-body .od-live-title-text,
body .od-live-title-text {
  font-size: 20px !important;
  line-height: 1 !important;
}

body.od-live-body .od-live-count,
body .od-live-count {
  min-width: 26px !important;
  height: 22px !important;
  padding: 0 7px !important;
  font-size: 9px !important;
}

/* old live.php topbar/search/sports head force small */
body .page-topbar {
  min-height: 46px !important;
  padding: 6px 8px !important;
}

body .page-topbar a {
  width: 30px !important;
  height: 30px !important;
  flex-basis: 30px !important;
}

body .topbar-title strong {
  font-size: 15px !important;
}

body .topbar-title span {
  font-size: 8px !important;
  margin-top: 3px !important;
}

body .search-box {
  top: 46px !important;
  padding: 6px 8px !important;
}

body .search-box input {
  height: 36px !important;
  border-radius: 11px !important;
  font-size: 11px !important;
  padding-left: 35px !important;
}

body .sports-head {
  padding: 7px 8px 6px !important;
}

body .sports-head-title {
  margin-bottom: 6px !important;
}

body .sports-head-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 11px !important;
}

body .sports-head-icon svg {
  width: 15px !important;
  height: 15px !important;
}

body .sports-head-title strong {
  font-size: 13px !important;
}

body .sports-head-kicker {
  font-size: 8px !important;
}

body .sports-count-badge {
  padding: 5px 8px !important;
  font-size: 8px !important;
}

/* category tabs: new and old */
body.od-live-body .od-live-category-tabs,
body .od-live-category-tabs,
body .category-tabs {
  gap: 6px !important;
  padding: 0 1px 8px !important;
}

body.od-live-body .od-live-category-tab,
body .od-live-category-tab,
body .category-tab {
  min-height: 33px !important;
  height: 33px !important;
  padding: 5px 9px 5px 6px !important;
  gap: 6px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
}

body.od-live-body .od-live-category-icon,
body .od-live-category-icon,
body .category-tab-icon {
  width: 22px !important;
  height: 22px !important;
  flex-basis: 22px !important;
}

body.od-live-body .od-live-category-icon svg,
body .od-live-category-icon svg,
body .category-tab-icon svg {
  width: 14px !important;
  height: 14px !important;
}

body.od-live-body .od-live-category-tab span:last-child,
body .od-live-category-tab span:last-child,
body .category-tab span:last-child {
  font-size: 11px !important;
}

/* league tabs: new and old */
body.od-live-body .od-live-league-wrap,
body .od-live-league-wrap {
  margin-bottom: 8px !important;
}

body.od-live-body .od-live-league-tabs,
body .od-live-league-tabs,
body .league-tabs {
  gap: 6px !important;
  padding: 5px 8px 7px !important;
}

body.od-live-body .od-live-league-tab,
body .od-live-league-tab,
body .league-tab {
  min-height: 28px !important;
  height: 28px !important;
  padding: 5px 9px !important;
  font-size: 10px !important;
}

/* list and card: new and old */
body.od-live-body .od-live-list,
body .od-live-list,
body .live-list {
  gap: 8px !important;
}

body .match-section {
  padding: 7px 8px !important;
}

body.od-live-body .od-live-card,
body .od-live-card,
body .match-row {
  border-radius: 12px !important;
  padding: 9px 10px 10px !important;
}

/* remove old pseudo decoration if it makes card look bigger */
body .match-row::before,
body .match-row::after {
  display: none !important;
}

/* top row inside card */
body.od-live-body .od-live-card-top,
body .od-live-card-top,
body .match-meta {
  margin-bottom: 6px !important;
  gap: 8px !important;
}

body.od-live-body .od-live-league-name,
body .od-live-league-name,
body .league-name {
  font-size: 10.5px !important;
  gap: 5px !important;
  line-height: 1.15 !important;
}

body.od-live-body .od-live-league-name svg,
body .od-live-league-name svg {
  width: 12px !important;
  height: 12px !important;
  flex-basis: 12px !important;
}

body .category-badge {
  display: none !important;
}

/* no star icon */
body .match-star,
body .od-live-star,
body [class*="star"] {
  display: none !important;
}

/* live broadcast icon */
body.od-live-body .od-live-broadcast-icon,
body .od-live-broadcast-icon {
  width: 18px !important;
  height: 18px !important;
  flex-basis: 18px !important;
}

body.od-live-body .od-live-broadcast-icon svg,
body .od-live-broadcast-icon svg {
  width: 17px !important;
  height: 17px !important;
}

body .live-badge {
  min-height: 22px !important;
  padding: 4px 7px !important;
  font-size: 8px !important;
}

/* time row */
body.od-live-body .od-live-status-row,
body .od-live-status-row,
body .live-time-line {
  gap: 5px !important;
  margin: 4px 0 8px !important;
  font-size: 10px !important;
}

body.od-live-body .od-live-clock,
body .od-live-clock,
body .live-clock {
  min-height: 20px !important;
  padding: 3px 6px !important;
  font-size: 10px !important;
  border-radius: 999px !important;
}

body .live-clock::before {
  width: 5px !important;
  height: 5px !important;
}

body.od-live-body .od-live-play-icon,
body .od-live-play-icon {
  width: 15px !important;
  height: 15px !important;
  border-radius: 4px !important;
}

body.od-live-body .od-live-play-icon svg,
body .od-live-play-icon svg {
  width: 10px !important;
  height: 10px !important;
}

body.od-live-body .od-live-flow-icon i,
body .od-live-flow-icon i {
  width: 12px !important;
  height: 3px !important;
}

/* teams */
body.od-live-body .od-live-teams,
body .od-live-teams,
body .teams-box {
  gap: 6px !important;
  margin-bottom: 9px !important;
}

body.od-live-body .od-live-team-row,
body .od-live-team-row,
body .team-row {
  gap: 7px !important;
}

body.od-live-body .od-live-team-left,
body .od-live-team-left,
body .team-left {
  gap: 7px !important;
}

body.od-live-body .team-logo-wrap,
body .team-logo-wrap {
  width: 24px !important;
  height: 24px !important;
  flex-basis: 24px !important;
  border-radius: 50% !important;
}

body.od-live-body .team-logo,
body .team-logo {
  width: 21px !important;
  height: 21px !important;
  object-fit: contain !important;
}

body.od-live-body .team-placeholder-icon,
body .team-placeholder-icon {
  width: 15px !important;
  height: 15px !important;
}

body.od-live-body .team-name,
body .team-name {
  font-size: 12.5px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.12px !important;
}

body.od-live-body .team-score,
body .team-score {
  min-width: 29px !important;
  width: 29px !important;
  height: 27px !important;
  min-height: 27px !important;
  border-radius: 9px !important;
  font-size: 13px !important;
}

/* odds */
body.od-live-body .od-live-market-label,
body .od-live-market-label {
  margin-bottom: 5px !important;
  font-size: 10px !important;
}

body.od-live-body .od-live-odds,
body .od-live-odds,
body .match-odds {
  gap: 6px !important;
  margin-top: 8px !important;
}

body.od-live-body .live-odd-box,
body .live-odd-box,
body .lock-box {
  min-height: 34px !important;
  height: 34px !important;
  border-radius: 9px !important;
  padding: 5px 8px !important;
}

body.od-live-body .live-odd-box small,
body .live-odd-box small,
body .live-odd-box .odd-label,
body .lock-box .odd-label {
  font-size: 10.5px !important;
  margin: 0 !important;
  line-height: 1 !important;
}

body.od-live-body .live-odd-box span,
body .live-odd-box span,
body .live-odd-box .odd-price,
body .lock-box .lock-value {
  font-size: 11px !important;
  line-height: 1 !important;
}

body.od-live-body .od-live-all-markets,
body .od-live-all-markets {
  min-height: 34px !important;
  height: 34px !important;
  border-radius: 9px !important;
  font-size: 11px !important;
}

/* selected odd lime + black text */
body.od-live-body .live-odd-box.selected,
body.od-live-body .live-odd-box.is-selected,
body.od-live-body .live-odd-box.active,
body.od-live-body .live-odd-box.in-slip,
body .live-odd-box.selected,
body .live-odd-box.is-selected,
body .live-odd-box.active,
body .live-odd-box.in-slip {
  background: linear-gradient(135deg, #c8ff00, #74ff35) !important;
  color: #061107 !important;
  border-color: rgba(200, 255, 0, 0.75) !important;
}

body.od-live-body .live-odd-box.selected *,
body.od-live-body .live-odd-box.is-selected *,
body.od-live-body .live-odd-box.active *,
body.od-live-body .live-odd-box.in-slip *,
body .live-odd-box.selected *,
body .live-odd-box.is-selected *,
body .live-odd-box.active *,
body .live-odd-box.in-slip * {
  color: #061107 !important;
}

/* extra small phones */
@media (max-width: 420px) {
  body.od-live-body .od-live-page,
  body .od-live-page,
  body .live-page {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }

  body.od-live-body .od-live-title-text,
  body .od-live-title-text {
    font-size: 19px !important;
  }

  body.od-live-body .team-name,
  body .team-name {
    font-size: 12px !important;
  }

  body.od-live-body .team-score,
  body .team-score {
    min-width: 28px !important;
    width: 28px !important;
    height: 26px !important;
    font-size: 12.5px !important;
  }

  body.od-live-body .live-odd-box small,
  body .live-odd-box small,
  body.od-live-body .live-odd-box span,
  body .live-odd-box span {
    font-size: 10px !important;
  }
}
/* =========================================================
   Index Upcoming Matches Partial
   Add this to the bottom of /assets/css/user.css
   File: /user/partials/upcoming-matches.php
========================================================= */

#index-upcoming-section.idx-upcoming-section {
  width: 100%;
  margin: 0;
  padding: 8px 10px 12px;
  color: #f2f7f5;
  background:
    radial-gradient(circle at 8% 0%, rgba(37, 232, 135, 0.10), transparent 28%),
    linear-gradient(180deg, #2a302e 0%, #1f2624 38%, #1f2624 100%);
  box-sizing: border-box;
}

#index-upcoming-section.idx-upcoming-section *,
#index-upcoming-section.idx-upcoming-section *::before,
#index-upcoming-section.idx-upcoming-section *::after {
  box-sizing: border-box;
}

#index-upcoming-section .idx-upcoming-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  margin: 3px 0 12px;
}

#index-upcoming-section .idx-upcoming-title-left {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

#index-upcoming-section .idx-upcoming-title-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #14a8ff;
  background: rgba(20, 168, 255, 0.10);
  flex: 0 0 34px;
}

#index-upcoming-section .idx-upcoming-title-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#index-upcoming-section .idx-upcoming-title-left h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -0.35px;
  line-height: 1;
}

#index-upcoming-section .idx-upcoming-title-left span:not(.idx-upcoming-title-icon) {
  display: block;
  margin-top: 3px;
  color: #aeb8b5;
  font-size: 10px;
  font-weight: 900;
}

#index-upcoming-section .idx-upcoming-view-all {
  min-height: 29px;
  border-radius: 999px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #101614;
  background: linear-gradient(135deg, #25e887, #21f596);
  text-decoration: none;
  font-size: 11px;
  font-weight: 1000;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(37, 232, 135, 0.18);
}

/* category tabs */
#index-upcoming-section .idx-upcoming-category-wrap,
#index-upcoming-section .idx-upcoming-league-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

#index-upcoming-section .idx-upcoming-category-wrap::-webkit-scrollbar,
#index-upcoming-section .idx-upcoming-league-wrap::-webkit-scrollbar {
  display: none;
}

#index-upcoming-section .idx-upcoming-category-tabs {
  display: flex;
  gap: 8px;
  padding: 1px 2px 10px;
}

#index-upcoming-section .idx-upcoming-category-tab {
  flex: 0 0 auto;
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  padding: 6px 12px 6px 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  white-space: nowrap;
  color: #e7eeeb;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#index-upcoming-section .idx-upcoming-category-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #9aa6a2;
  background: rgba(255, 255, 255, 0.055);
  flex: 0 0 25px;
}

#index-upcoming-section .idx-upcoming-category-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#index-upcoming-section .idx-upcoming-category-tab span:last-child {
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: -0.2px;
}

#index-upcoming-section .idx-upcoming-category-tab.active {
  color: #101614;
  background: linear-gradient(135deg, #25e887, #21f596);
  box-shadow: 0 14px 28px rgba(37, 232, 135, 0.22);
}

#index-upcoming-section .idx-upcoming-category-tab.active .idx-upcoming-category-icon {
  color: #0b1511;
  background: rgba(0, 0, 0, 0.08);
}

/* league tabs */
#index-upcoming-section .idx-upcoming-league-wrap {
  margin-bottom: 10px;
}

#index-upcoming-section .idx-upcoming-league-tabs {
  display: flex;
  gap: 7px;
  padding: 0 2px 2px;
}

#index-upcoming-section .idx-upcoming-league-tab {
  flex: 0 0 auto;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 7px 11px;
  cursor: pointer;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.045);
  color: #b6bfbc;
  font-size: 11px;
  font-weight: 900;
}

#index-upcoming-section .idx-upcoming-league-tab.active {
  color: #101614;
  background: linear-gradient(135deg, #25e887, #20ef8f);
}

#index-upcoming-section .idx-upcoming-hidden-tab {
  display: none !important;
}

/* match cards */
#index-upcoming-section .idx-upcoming-list {
  display: grid;
  gap: 10px;
}

#index-upcoming-section .idx-upcoming-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  padding: 11px 12px 12px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(145deg, #272e2c, #222826);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

#index-upcoming-section .idx-upcoming-card:active {
  transform: scale(0.992);
}

#index-upcoming-section .idx-upcoming-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

#index-upcoming-section .idx-upcoming-league-name {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #a9b3b0;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
}

#index-upcoming-section .idx-upcoming-league-name svg {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  opacity: 0.65;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#index-upcoming-section .idx-upcoming-league-name span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#index-upcoming-section .idx-upcoming-kickoff {
  margin-bottom: 11px;
  color: #aab4b1;
  font-size: 11px;
  font-weight: 950;
}

#index-upcoming-section .idx-upcoming-kickoff strong {
  color: #aeb8b5;
  font-weight: 1000;
}

#index-upcoming-section .idx-upcoming-teams {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

#index-upcoming-section .idx-upcoming-team-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

#index-upcoming-section .idx-upcoming-team-logo-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.055);
}

#index-upcoming-section .idx-upcoming-team-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

#index-upcoming-section .idx-upcoming-team-placeholder {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #7f8a87;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#index-upcoming-section .idx-upcoming-team-name {
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 1000;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.25px;
}

/* odds */
#index-upcoming-section .idx-upcoming-market-label {
  margin-bottom: 6px;
  color: #b2bbb8;
  font-size: 11px;
  font-weight: 900;
}

#index-upcoming-section .idx-upcoming-odds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

#index-upcoming-section .idx-upcoming-odd-box {
  min-height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 10px;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: #505654;
  color: #f4f6f5;
  font-weight: 1000;
}

#index-upcoming-section .idx-upcoming-odd-box small {
  color: #c7cfcc;
  font-size: 12px;
  font-weight: 1000;
  text-transform: none;
}

#index-upcoming-section .idx-upcoming-odd-box span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 1000;
}

#index-upcoming-section .idx-upcoming-odd-box.selected,
#index-upcoming-section .idx-upcoming-odd-box.is-selected,
#index-upcoming-section .idx-upcoming-odd-box.active,
#index-upcoming-section .idx-upcoming-odd-box.in-slip {
  background: linear-gradient(135deg, #c8ff00, #74ff35) !important;
  color: #061107 !important;
  border-color: rgba(200, 255, 0, 0.75) !important;
  box-shadow:
    0 10px 20px rgba(116, 255, 53, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}

#index-upcoming-section .idx-upcoming-odd-box.selected small,
#index-upcoming-section .idx-upcoming-odd-box.selected span,
#index-upcoming-section .idx-upcoming-odd-box.is-selected small,
#index-upcoming-section .idx-upcoming-odd-box.is-selected span,
#index-upcoming-section .idx-upcoming-odd-box.active small,
#index-upcoming-section .idx-upcoming-odd-box.active span,
#index-upcoming-section .idx-upcoming-odd-box.in-slip small,
#index-upcoming-section .idx-upcoming-odd-box.in-slip span {
  color: #061107 !important;
}

#index-upcoming-section .idx-upcoming-odd-box.disabled {
  opacity: 0.42;
  cursor: not-allowed;
  background: #414744;
  color: #8f9995;
  box-shadow: none;
}

#index-upcoming-section .idx-upcoming-odd-box.disabled small,
#index-upcoming-section .idx-upcoming-odd-box.disabled span {
  color: #8f9995;
}

#index-upcoming-section .idx-upcoming-empty {
  border-radius: 14px;
  padding: 24px 14px;
  text-align: center;
  color: #aab3b0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

#index-upcoming-section .idx-upcoming-no-filter {
  display: none;
}

#index-upcoming-section .idx-upcoming-hidden {
  display: none !important;
}

@media (min-width: 760px) {
  #index-upcoming-section .idx-upcoming-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  #index-upcoming-section .idx-upcoming-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  #index-upcoming-section.idx-upcoming-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  #index-upcoming-section .idx-upcoming-title-left h2 {
    font-size: 21px;
  }

  #index-upcoming-section .idx-upcoming-team-name {
    font-size: 13.5px;
  }

  #index-upcoming-section .idx-upcoming-odd-box small,
  #index-upcoming-section .idx-upcoming-odd-box span {
    font-size: 11.5px;
  }
}
/* =========================================================
   HARD FORCE: Upcoming partial full width on index
   File affected: /user/partials/upcoming-matches.php
========================================================= */

body.od-index-page #index-upcoming-section.idx-upcoming-section,
body #page-content #index-upcoming-section.idx-upcoming-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  border-radius: 0 !important;
}

/* make inner content also stretch properly */
body.od-index-page #index-upcoming-section .idx-upcoming-head,
body.od-index-page #index-upcoming-section .idx-upcoming-category-wrap,
body.od-index-page #index-upcoming-section .idx-upcoming-league-wrap,
body.od-index-page #index-upcoming-section .idx-upcoming-list {
  width: 100% !important;
  max-width: 100% !important;
}

/* keep cards full width on index mobile */
body.od-index-page #index-upcoming-section .idx-upcoming-list {
  grid-template-columns: 1fr !important;
}

/* stop parent from clipping the full-width section */
body.od-index-page #page-content {
  overflow: visible !important;
}

/* prevent horizontal scroll issue */
html,
body {
  overflow-x: hidden !important;
}

@media (min-width: 760px) {
  body.od-index-page #index-upcoming-section .idx-upcoming-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1120px) {
  body.od-index-page #index-upcoming-section .idx-upcoming-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* =========================================================
   OddeminBet Live Page Clone
   Add this to the bottom of /assets/css/user.css
   Page: /user/live.php
========================================================= */

.od-live-body {
  margin: 0;
  min-height: 100vh;
  color: #f2f7f5;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 54, 77, 0.10), transparent 27%),
    linear-gradient(180deg, #303735 0%, #1f2624 38%, #1f2624 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.od-live-body button,
.od-live-body input,
.od-live-body a {
  -webkit-tap-highlight-color: transparent;
}

.od-live-page {
  width: 100%;
  min-height: 100vh;
  padding: 12px 14px 118px;
}

.od-live-page .od-live-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 8px 0 18px;
}

.od-live-page .od-live-title-left {
  display: flex;
  align-items: center;
  gap: 13px;
}

.od-live-page .od-live-title-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ff354d;
  background: rgba(255, 53, 77, 0.10);
  animation: odLiveTitlePulse 1.35s ease-in-out infinite;
}

.od-live-page .od-live-title-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-live-page .od-live-title-text {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 1000;
  letter-spacing: -0.7px;
  line-height: 1;
  animation: odLiveTextGlow 1.5s ease-in-out infinite;
}

.od-live-page .od-live-count {
  flex: 0 0 auto;
  min-width: 36px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 53, 77, 0.10);
  border: 1px solid rgba(255, 53, 77, 0.18);
  color: #ffd5db;
  font-size: 12px;
  font-weight: 1000;
}

.od-live-page .od-live-category-wrap,
.od-live-page .od-live-league-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.od-live-page .od-live-category-wrap::-webkit-scrollbar,
.od-live-page .od-live-league-wrap::-webkit-scrollbar {
  display: none;
}

.od-live-page .od-live-category-tabs {
  display: flex;
  gap: 11px;
  padding: 1px 2px 13px;
}

.od-live-page .od-live-category-tab {
  flex: 0 0 auto;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 7px 17px 7px 9px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  color: #e7eeeb;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.od-live-page .od-live-category-icon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #aeb8b5;
  background: rgba(255, 255, 255, 0.055);
}

.od-live-page .od-live-category-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: odLiveIconFloat 1.8s ease-in-out infinite;
}

.od-live-page .od-live-category-tab span:last-child {
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -0.2px;
}

.od-live-page .od-live-category-tab.active {
  color: #101614;
  background: linear-gradient(135deg, #25e887, #21f596);
  box-shadow: 0 14px 28px rgba(37, 232, 135, 0.22);
}

.od-live-page .od-live-category-tab.active .od-live-category-icon {
  color: #0b1511;
  background: rgba(0, 0, 0, 0.08);
}

.od-live-page .od-live-league-wrap {
  margin-bottom: 12px;
}

.od-live-page .od-live-league-tabs {
  display: flex;
  gap: 9px;
  padding: 0 2px 2px;
}

.od-live-page .od-live-league-tab {
  flex: 0 0 auto;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  cursor: pointer;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.045);
  color: #b6bfbc;
  font-size: 12px;
  font-weight: 900;
}

.od-live-page .od-live-league-tab.active {
  color: #101614;
  background: linear-gradient(135deg, #25e887, #20ef8f);
}

.od-live-page .hidden-tab {
  display: none !important;
}

.od-live-page .od-live-list {
  display: grid;
  gap: 14px;
}

.od-live-page .od-live-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  padding: 16px 16px 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 53, 77, 0.08), transparent 29%),
    linear-gradient(145deg, #272e2c, #222826);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.od-live-page .od-live-card:active {
  transform: scale(0.992);
}

.od-live-page .od-live-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.od-live-page .od-live-league-name {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a9b3b0;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.2;
}

.od-live-page .od-live-league-name svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  opacity: 0.65;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-live-page .od-live-league-name span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.od-live-page .od-live-broadcast-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  color: #ff354d;
  animation: odLiveBroadcastPulse 1.05s ease-in-out infinite;
}

.od-live-page .od-live-broadcast-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-live-page .od-live-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #29a9ff;
  font-size: 14px;
  font-weight: 1000;
}

.od-live-page .od-live-clock {
  color: #29a9ff;
  font-variant-numeric: tabular-nums;
  font-weight: 1000;
  animation: odLiveClockMove 1s steps(2, end) infinite;
}

.od-live-page .od-live-clock.clock-flash {
  animation: odLiveClockFlash 0.55s ease both;
}

.od-live-page .od-live-play-icon {
  width: 21px;
  height: 21px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #ff3b4f;
  animation: odLiveIconBeat 1.2s ease-in-out infinite;
}

.od-live-page .od-live-play-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.od-live-page .od-live-flow-icon {
  display: inline-grid;
  gap: 3px;
  transform: skewX(-12deg);
}

.od-live-page .od-live-flow-icon i {
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: #22aaf7;
  display: block;
  animation: odLiveFlow 1s ease-in-out infinite;
}

.od-live-page .od-live-flow-icon i:nth-child(2) {
  width: 14px;
  animation-delay: 0.12s;
}

.od-live-page .od-live-flow-icon i:nth-child(3) {
  width: 10px;
  animation-delay: 0.24s;
}

.od-live-page .od-live-teams {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.od-live-page .od-live-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  min-width: 0;
}

.od-live-page .od-live-team-left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.od-live-page .team-logo-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.055);
}

.od-live-page .team-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.od-live-page .team-placeholder-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #7f8a87;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-live-page .team-name {
  min-width: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.25px;
}

.od-live-page .team-score {
  min-width: 48px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.085);
  font-size: 20px;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.od-live-page .team-score.score-flash {
  animation: odLiveScoreFlash 0.75s ease both;
}

.od-live-page .od-live-market-label {
  margin-bottom: 8px;
  color: #b2bbb8;
  font-size: 13px;
  font-weight: 900;
}

.od-live-page .od-live-odds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.od-live-page .live-odd-box {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 13px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: #5a605e;
  color: #f4f6f5;
  font-weight: 1000;
}

.od-live-page .live-odd-box small {
  color: #bec5c2;
  font-size: 15px;
  font-weight: 1000;
  text-transform: none;
}

.od-live-page .live-odd-box span {
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
}

.od-live-page .live-odd-box.selected,
.od-live-page .live-odd-box.is-selected,
.od-live-page .live-odd-box.active,
.od-live-page .live-odd-box.in-slip {
  background: linear-gradient(135deg, #c8ff00, #74ff35) !important;
  color: #061107 !important;
  border-color: rgba(200, 255, 0, 0.75) !important;
  box-shadow:
    0 10px 20px rgba(116, 255, 53, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
  animation: odLiveOddSelectPop 0.25s ease both;
}

.od-live-page .live-odd-box.selected small,
.od-live-page .live-odd-box.selected span,
.od-live-page .live-odd-box.is-selected small,
.od-live-page .live-odd-box.is-selected span,
.od-live-page .live-odd-box.active small,
.od-live-page .live-odd-box.active span,
.od-live-page .live-odd-box.in-slip small,
.od-live-page .live-odd-box.in-slip span {
  color: #061107 !important;
}

.od-live-page .od-live-all-markets {
  min-height: 50px;
  width: 100%;
  border-radius: 13px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #5a605e;
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
}

.od-live-page .od-live-empty {
  border-radius: 18px;
  padding: 34px 18px;
  text-align: center;
  color: #aab3b0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.od-live-page .od-live-no-filter {
  display: none;
}

.od-live-page .hidden-by-filter,
.od-live-page .hidden-by-status {
  display: none !important;
}

@keyframes odLiveTitlePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 53, 77, 0.30);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 53, 77, 0.06);
    transform: scale(1.04);
  }
}

@keyframes odLiveTextGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(255, 53, 77, 0);
  }
  50% {
    text-shadow: 0 0 18px rgba(255, 53, 77, 0.35);
  }
}

@keyframes odLiveIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-1px) rotate(-3deg);
  }
}

@keyframes odLiveBroadcastPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 53, 77, 0));
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(255, 53, 77, 0.75));
  }
}

@keyframes odLiveIconBeat {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
}

@keyframes odLiveFlow {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(3px);
  }
}

@keyframes odLiveClockMove {
  0%, 100% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
  }
}

@keyframes odLiveClockFlash {
  0% {
    transform: scale(1);
    color: #29a9ff;
  }
  45% {
    transform: scale(1.08);
    color: #74ff35;
  }
  100% {
    transform: scale(1);
    color: #29a9ff;
  }
}

@keyframes odLiveScoreFlash {
  0% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.055);
  }
  45% {
    transform: scale(1.18);
    color: #061107;
    background: linear-gradient(135deg, #c8ff00, #74ff35);
  }
  100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.055);
  }
}

@keyframes odLiveOddSelectPop {
  0% {
    transform: scale(0.94);
  }
  70% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width: 760px) {
  .od-live-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .od-live-page .od-live-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .od-live-page .od-live-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .od-live-page {
    padding: 9px 10px 108px;
  }

  .od-live-page .od-live-title-row {
    margin-top: 6px;
    margin-bottom: 14px;
  }

  .od-live-page .od-live-title-icon {
    width: 38px;
    height: 38px;
  }

  .od-live-page .od-live-title-icon svg {
    width: 32px;
    height: 32px;
  }

  .od-live-page .od-live-title-text {
    font-size: 27px;
  }

  .od-live-page .od-live-category-tabs {
    gap: 8px;
    padding-bottom: 11px;
  }

  .od-live-page .od-live-category-tab {
    min-height: 41px;
    padding: 6px 13px 6px 7px;
    gap: 7px;
  }

  .od-live-page .od-live-category-icon {
    width: 27px;
    height: 27px;
  }

  .od-live-page .od-live-category-icon svg {
    width: 17px;
    height: 17px;
  }

  .od-live-page .od-live-category-tab span:last-child {
    font-size: 14px;
  }

  .od-live-page .od-live-league-tab {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 11px;
  }

  .od-live-page .od-live-list {
    gap: 11px;
  }

  .od-live-page .od-live-card {
    border-radius: 15px;
    padding: 12px;
  }

  .od-live-page .od-live-league-name {
    font-size: 12px;
  }

  .od-live-page .od-live-status-row {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .od-live-page .team-logo-wrap {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .od-live-page .team-logo {
    width: 25px;
    height: 25px;
  }

  .od-live-page .team-name {
    font-size: 15px;
  }

  .od-live-page .team-score {
    min-width: 40px;
    height: 36px;
    border-radius: 12px;
    font-size: 17px;
  }

  .od-live-page .od-live-market-label {
    font-size: 12px;
  }

  .od-live-page .od-live-odds {
    gap: 7px;
  }

  .od-live-page .live-odd-box {
    min-height: 42px;
    border-radius: 11px;
    padding: 7px 10px;
  }

  .od-live-page .live-odd-box small,
  .od-live-page .live-odd-box span {
    font-size: 13px;
  }

  .od-live-page .od-live-all-markets {
    min-height: 44px;
    font-size: 14px;
  }
}



/* =========================================================
   HARD FORCE: live-matches partial full width on index
   File affected: /user/partials/live-matches.php
========================================================= */

body.od-index-page #page-content {
  overflow: visible !important;
}

body.od-index-page #index-live-section.od-index-live-page,
body #page-content #index-live-section.od-index-live-page {
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: 0 !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  padding: 8px 10px 14px !important;
  border-radius: 0 !important;
}

/* keep the live section from behaving like a full standalone page on index */
body.od-index-page #index-live-section.od-live-page {
  padding-bottom: 14px !important;
}

/* force all inner live blocks to stretch */
body.od-index-page #index-live-section .od-live-title-row,
body.od-index-page #index-live-section .od-live-category-wrap,
body.od-index-page #index-live-section .od-live-league-wrap,
body.od-index-page #index-live-section .od-live-list {
  width: 100% !important;
  max-width: 100% !important;
}

/* full mobile width */
body.od-index-page #index-live-section .od-live-list {
  grid-template-columns: 1fr !important;
}

/* stop horizontal scroll */
html,
body {
  overflow-x: hidden !important;
}

/* compact index spacing while keeping same live.php look */
body.od-index-page #index-live-section .od-live-title-row {
  margin-top: 4px !important;
  margin-bottom: 12px !important;
}

body.od-index-page #index-live-section .od-live-card {
  width: 100% !important;
}

@media (min-width: 760px) {
  body.od-index-page #index-live-section .od-live-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1120px) {
  body.od-index-page #index-live-section .od-live-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
