/*
|--------------------------------------------------------------------------
| 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;
  }
}
/* =========================================================
   OddeminBet Support Messages Clone
   Add this CSS at the bottom of: /assets/css/user.css
   Used by: /user/support.php
========================================================= */

.od-support-page,
.od-support-page * {
  box-sizing: border-box;
}

.od-support-page {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #111418;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.od-support-app {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.od-support-topbar {
  height: 78px;
  flex: 0 0 78px;
  padding: 18px 28px 12px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  border-bottom: 1px solid rgba(17, 20, 24, 0.08);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.od-support-topbar h1 {
  margin: 0;
  color: #111418;
  font-size: clamp(25px, 4vw, 33px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: center;
}

.od-support-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f747b;
  background: transparent;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.od-support-close svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.65;
  stroke-linecap: round;
}

.od-support-close:hover {
  color: #111418;
  background: rgba(17,20,24,.055);
  transform: rotate(4deg) scale(1.03);
}

.od-support-close:active {
  transform: scale(.92);
}

.od-support-main {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  width: 100%;
  padding-bottom: 130px;
}

.od-support-empty {
  width: 100%;
  flex: 1 1 auto;
  min-height: calc(100vh - 208px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 33vh 24px 42px;
  background: #ffffff;
}

.od-support-empty__center {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: odSupportFadeUp .42s ease both;
}

.od-support-empty__icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #101217;
  animation: odSupportFloat 3.4s ease-in-out infinite;
}

.od-support-empty__icon svg {
  width: 58px;
  height: 58px;
  fill: #101217;
  stroke: #101217;
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 18px rgba(17,20,24,.10));
}

.od-support-empty h2 {
  margin: 0;
  color: #101217;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.od-support-empty p {
  margin: 24px 0 0;
  color: #111418;
  font-size: clamp(19px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.035em;
}

.od-support-system-note {
  width: min(520px, calc(100vw - 42px));
  padding: 12px 14px;
  border-radius: 14px;
  text-align: center;
  color: #047539;
  background: #eafff0;
  border: 1px solid rgba(0,166,75,.15);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.od-support-system-note.is-error {
  color: #b42318;
  background: #fff3f3;
  border-color: rgba(180,35,24,.16);
}

.od-support-start-btn {
  width: min(410px, calc(100vw - 74px));
  min-height: 82px;
  border: 0;
  border-radius: 17px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #ffffff;
  background: linear-gradient(180deg, #05b645 0%, #009e39 100%);
  box-shadow:
    0 18px 34px rgba(0,166,75,.20),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -2px 0 rgba(0,0,0,.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  animation: odSupportButtonIn .55s ease both .12s, odSupportSoftPulse 3.2s ease-in-out infinite 1.2s;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.od-support-start-btn span {
  font-size: clamp(21px, 3.7vw, 31px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.od-support-start-btn svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: odSupportSendNudge 1.9s ease-in-out infinite;
}

.od-support-start-btn:hover {
  filter: brightness(1.03);
  transform: translateY(-2px);
  box-shadow:
    0 22px 42px rgba(0,166,75,.24),
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 -2px 0 rgba(0,0,0,.08);
}

.od-support-start-btn:active {
  transform: scale(.96);
}

.od-support-start-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  animation: none;
}

.od-support-tabs {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 28;
  height: 116px;
  padding: 12px 34px max(18px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 14px;
  background: rgba(255,255,255,.98);
  border-top: 1px solid rgba(17,20,24,.08);
  box-shadow: 0 -12px 34px rgba(17,20,24,.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.od-support-tab {
  min-width: 0;
  height: 88px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #70757d;
  text-decoration: none;
  font-weight: 650;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.od-support-tab svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease, filter .22s ease;
}

.od-support-tab span {
  display: block;
  font-size: clamp(15px, 3.5vw, 24px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.035em;
}

.od-support-tab:hover {
  background: rgba(17,20,24,.035);
  color: #2f363c;
  transform: translateY(-1px);
}

.od-support-tab.is-active {
  color: #00a63e;
  font-weight: 950;
}

.od-support-tab.is-active svg {
  stroke-width: 2.8;
  filter: drop-shadow(0 8px 14px rgba(0,166,75,.20));
  animation: odSupportActivePop 2.6s ease-in-out infinite;
}

.od-support-tab.is-active span {
  font-weight: 950;
}

/* Live chat screen */
.od-support-chat-panel {
  display: none;
  width: 100%;
  min-height: calc(100vh - 208px);
  padding: 18px 18px 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,166,75,.06), transparent 34%),
    #ffffff;
}

.od-support-app.is-chat-open .od-support-empty {
  display: none;
}

.od-support-app.is-chat-open .od-support-chat-panel {
  display: flex;
  flex-direction: column;
  animation: odSupportChatIn .28s ease both;
}

.od-support-chat-head {
  width: min(780px, 100%);
  margin: 0 auto;
  min-height: 68px;
  padding: 10px 12px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, #06b949, #00a43d);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(0,166,75,.14);
}

.od-support-chat-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00a43d;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 18px rgba(0,0,0,.10);
}

.od-support-chat-avatar svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-support-chat-title {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.od-support-chat-title strong {
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
}

.od-support-chat-title span {
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 750;
}

.od-support-end-btn {
  display: none;
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.od-support-end-btn:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-1px);
}

.od-support-chat-box {
  width: min(780px, 100%);
  flex: 1 1 auto;
  min-height: 360px;
  max-height: none;
  margin: 0 auto;
  padding: 18px;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(0,166,75,.035), rgba(255,255,255,.72)),
    #f4f8f5;
  border-left: 1px solid rgba(0,166,75,.10);
  border-right: 1px solid rgba(0,166,75,.10);
}

.chat-empty {
  width: 100%;
  max-width: 430px;
  margin: 38px auto;
  padding: 20px 18px;
  border-radius: 20px;
  text-align: center;
  color: #606971;
  background: #ffffff;
  border: 1px solid rgba(17,20,24,.06);
  box-shadow: 0 12px 30px rgba(17,20,24,.05);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.chat-row {
  display: flex;
  margin-bottom: 12px;
}

.chat-row.me {
  justify-content: flex-end;
}

.chat-row.admin {
  justify-content: flex-start;
}

.chat-bubble {
  max-width: min(76%, 470px);
  border-radius: 19px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  word-wrap: break-word;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(17,20,24,.065);
  animation: odSupportBubbleIn .22s ease both;
}

.chat-row.me .chat-bubble {
  color: #ffffff;
  background: #00a63e;
  border-bottom-right-radius: 6px;
}

.chat-row.admin .chat-bubble {
  color: #111418;
  background: #ffffff;
  border: 1px solid rgba(17,20,24,.06);
  border-bottom-left-radius: 6px;
}

.chat-quoted {
  border-left: 3px solid #00a63e;
  background: rgba(255,255,255,.72);
  padding: 7px 9px;
  border-radius: 10px;
  margin-bottom: 7px;
  font-size: 12px;
  color: #34403a;
}

.chat-row.me .chat-quoted {
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.16);
  border-left-color: rgba(255,255,255,.75);
}

.chat-quoted b {
  display: block;
  color: inherit;
  margin-bottom: 2px;
  font-weight: 950;
}

.chat-img-link {
  display: block;
  margin-bottom: 7px;
}

.chat-img {
  display: block;
  max-width: 240px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
}

.chat-audio {
  display: block;
  width: 240px;
  max-width: 100%;
  margin: 4px 0;
}

.chat-time {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  text-align: right;
  opacity: .62;
}

.chat-typing {
  background: #ffffff;
  border-radius: 16px;
  border-bottom-left-radius: 5px;
  padding: 10px 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 3px 12px rgba(17,20,24,.065);
}

.chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00a63e;
  animation: odSupportTypingDot 1s infinite ease-in-out;
}

.chat-dot:nth-child(2) { animation-delay: .15s; }
.chat-dot:nth-child(3) { animation-delay: .3s; }

.od-support-reply-preview,
.od-support-media-preview,
.od-support-compose {
  width: min(780px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.chat-reply-preview {
  display: none;
  padding: 10px 14px;
  background: #f7faf8;
  border-left: 1px solid rgba(0,166,75,.10);
  border-right: 1px solid rgba(0,166,75,.10);
}

.chat-reply-inner {
  border-left: 3px solid #00a63e;
  background: #ffffff;
  border-radius: 14px;
  padding: 9px 11px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 8px 20px rgba(17,20,24,.045);
}

.chat-reply-label {
  font-size: 11px;
  font-weight: 950;
  color: #00a63e;
  margin-bottom: 2px;
}

.chat-reply-text {
  font-size: 12px;
  color: #33413a;
  line-height: 1.4;
}

.chat-reply-cancel {
  border: 0;
  background: #eef7f1;
  color: #00a63e;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 950;
}

.chat-preview {
  display: none;
  background: #f7faf8;
  padding: 0 14px 10px;
  font-size: 12px;
  color: #00a63e;
  font-weight: 850;
  border-left: 1px solid rgba(0,166,75,.10);
  border-right: 1px solid rgba(0,166,75,.10);
}

.chat-preview audio {
  width: 100%;
  margin-top: 8px;
}

.chat-remove-media {
  border: 0;
  background: #fff3f3;
  color: #b42318;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  margin-top: 8px;
}

.od-support-compose {
  min-height: 72px;
  padding: 11px 12px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 0 0 22px 22px;
  background: #ffffff;
  border: 1px solid rgba(0,166,75,.10);
  border-top: 1px solid rgba(17,20,24,.06);
  box-shadow: 0 14px 28px rgba(17,20,24,.06);
}

.chat-file-input {
  display: none;
}

.od-support-round-action,
.od-support-send-round {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, background .18s ease;
}

.od-support-round-action {
  color: #00a63e;
  background: #eafff0;
  border: 1px solid rgba(0,166,75,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 8px 20px rgba(0,166,75,.08);
}

.od-support-send-round {
  color: #ffffff;
  background: #00a63e;
  box-shadow: 0 10px 22px rgba(0,166,75,.20), inset 0 1px 0 rgba(255,255,255,.18);
}

.od-support-round-action svg,
.od-support-send-round svg,
.chat-record-btn .mic-icon,
.chat-record-btn .stop-icon {
  width: 22px;
  height: 22px;
}

.od-support-round-action svg,
.od-support-send-round svg,
.chat-record-btn .mic-icon svg,
.chat-record-btn .stop-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-support-send-round svg {
  stroke-width: 2.9;
}

.od-support-round-action:hover,
.od-support-send-round:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.od-support-round-action:active,
.od-support-send-round:active {
  transform: scale(.94);
}

.chat-record-btn .stop-icon {
  display: none;
}

.chat-record-btn.recording {
  color: #b42318;
  background: #fff1f1;
  animation: odSupportRecordPulse 1s infinite;
}

.chat-record-btn.recording .mic-icon {
  display: none;
}

.chat-record-btn.recording .stop-icon {
  display: inline-flex;
}

.chat-input {
  min-width: 0;
  flex: 1 1 auto;
  height: 46px;
  border: 1px solid rgba(17,20,24,.10);
  border-radius: 999px;
  padding: 0 16px;
  outline: none;
  background: #f6f8f7;
  color: #111418;
  font-size: 15px;
  font-weight: 650;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.chat-input::placeholder {
  color: #8a9299;
  font-weight: 650;
}

.chat-input:focus {
  border-color: rgba(0,166,75,.34);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0,166,75,.08);
}

.chat-send-btn:disabled,
.chat-input:disabled,
.chat-file-label.disabled,
.chat-record-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.od-support-chat-alert {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 16px;
  border-radius: 0 0 22px 22px;
  text-align: center;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
}

.od-support-chat-alert.is-error {
  color: #b42318;
  background: #fff3f3;
  border: 1px solid rgba(180,35,24,.15);
}

@keyframes odSupportFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes odSupportFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes odSupportButtonIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes odSupportSoftPulse {
  0%, 100% { box-shadow: 0 18px 34px rgba(0,166,75,.20), inset 0 1px 0 rgba(255,255,255,.18), inset 0 -2px 0 rgba(0,0,0,.08); }
  50% { box-shadow: 0 21px 42px rgba(0,166,75,.28), inset 0 1px 0 rgba(255,255,255,.22), inset 0 -2px 0 rgba(0,0,0,.08); }
}

@keyframes odSupportSendNudge {
  0%, 100% { transform: translateX(0); }
  45% { transform: translateX(4px); }
}

@keyframes odSupportActivePop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.04); }
}

@keyframes odSupportChatIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes odSupportBubbleIn {
  from { opacity: 0; transform: translateY(6px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes odSupportTypingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: .42; }
  40% { transform: translateY(-4px); opacity: 1; }
}

@keyframes odSupportRecordPulse {
  0% { box-shadow: 0 0 0 0 rgba(180,35,24,.32); }
  70% { box-shadow: 0 0 0 10px rgba(180,35,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(180,35,24,0); }
}

@media (min-width: 760px) {
  .od-support-app {
    max-width: 900px;
    margin: 0 auto;
    border-left: 1px solid rgba(17,20,24,.06);
    border-right: 1px solid rgba(17,20,24,.06);
  }

  .od-support-tabs {
    left: 50%;
    right: auto;
    width: min(900px, 100vw);
    transform: translateX(-50%);
  }
}

@media (max-width: 520px) {
  .od-support-topbar {
    height: 68px;
    flex-basis: 68px;
    padding: 14px 18px 10px;
    grid-template-columns: 38px 1fr 38px;
  }

  .od-support-close {
    width: 38px;
    height: 38px;
  }

  .od-support-close svg {
    width: 25px;
    height: 25px;
  }

  .od-support-empty {
    min-height: calc(100vh - 184px);
    padding-top: 34vh;
    padding-left: 18px;
    padding-right: 18px;
  }

  .od-support-empty__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 21px;
  }

  .od-support-empty__icon svg {
    width: 50px;
    height: 50px;
  }

  .od-support-empty p {
    max-width: 330px;
  }

  .od-support-start-btn {
    width: min(330px, calc(100vw - 54px));
    min-height: 66px;
    border-radius: 14px;
    gap: 14px;
    padding: 0 22px;
  }

  .od-support-start-btn svg {
    width: 29px;
    height: 29px;
  }

  .od-support-tabs {
    height: 104px;
    padding: 10px 16px max(14px, env(safe-area-inset-bottom));
    gap: 6px;
  }

  .od-support-tab {
    height: 78px;
    border-radius: 18px;
    gap: 7px;
  }

  .od-support-tab svg {
    width: 29px;
    height: 29px;
  }

  .od-support-main {
    padding-bottom: 112px;
  }

  .od-support-chat-panel {
    min-height: calc(100vh - 180px);
    padding: 13px 10px 16px;
  }

  .od-support-chat-head {
    border-radius: 18px 18px 0 0;
  }

  .od-support-chat-box {
    min-height: 350px;
    padding: 14px 10px;
  }

  .chat-bubble {
    max-width: 82%;
    font-size: 13.5px;
  }

  .od-support-compose {
    min-height: 66px;
    padding: 10px 8px;
    gap: 6px;
    border-radius: 0 0 18px 18px;
  }

  .od-support-round-action,
  .od-support-send-round {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .chat-input {
    height: 42px;
    padding: 0 13px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .od-support-start-btn {
    width: min(310px, calc(100vw - 40px));
    padding: 0 18px;
  }

  .od-support-start-btn span {
    font-size: 19px;
  }

  .od-support-tab span {
    font-size: 14px;
  }

  .od-support-round-action,
  .od-support-send-round {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .od-support-compose {
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .od-support-empty__center,
  .od-support-empty__icon,
  .od-support-start-btn,
  .od-support-start-btn svg,
  .od-support-tab.is-active svg,
  .od-support-app.is-chat-open .od-support-chat-panel,
  .chat-bubble,
  .chat-dot,
  .chat-record-btn.recording {
    animation: none !important;
  }

  .od-support-close,
  .od-support-start-btn,
  .od-support-tab,
  .od-support-round-action,
  .od-support-send-round,
  .chat-input {
    transition: none !important;
  }
}
/* =========================================================
   OddeminBet Support Messages - Live Chat Only
   Paste at the bottom of: /assets/css/user.css
   Purpose:
   - Direct live chat display, no landing button/screen
   - Full-width, compact, mobile/desktop ready
   - Keeps top close button and bottom Home/Help/Messages nav
========================================================= */

html:has(body.od-support-page),
body.od-support-page {
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

body.od-support-page,
body.od-support-page * {
  box-sizing: border-box !important;
}

body.od-support-page {
  color: #121417 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
}

body.od-support-page a,
body.od-support-page button,
body.od-support-page input,
body.od-support-page label {
  -webkit-tap-highlight-color: transparent !important;
}

body.od-support-page svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.15 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body.od-support-page .od-support-app {
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  max-height: 100dvh !important;
  display: grid !important;
  grid-template-rows: 54px minmax(0, 1fr) 72px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

body.od-support-page .od-support-topbar {
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) 44px !important;
  align-items: center !important;
  padding: 0 10px !important;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(10,18,24,.08) !important;
  box-shadow: 0 1px 0 rgba(10,18,24,.025) !important;
  z-index: 5 !important;
}

body.od-support-page .od-support-topbar h1 {
  margin: 0 !important;
  color: #101316 !important;
  text-align: center !important;
  font-size: 19px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
}

body.od-support-page .od-support-topbar__spacer {
  width: 44px !important;
  height: 44px !important;
}

body.od-support-page .od-support-close {
  width: 38px !important;
  height: 38px !important;
  justify-self: end !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #6f747a !important;
  text-decoration: none !important;
  transition: transform .18s ease, color .18s ease, background .18s ease !important;
}

body.od-support-page .od-support-close svg {
  width: 24px !important;
  height: 24px !important;
  stroke-width: 2.6 !important;
}

body.od-support-page .od-support-close:hover {
  color: #101316 !important;
  background: rgba(16,19,22,.055) !important;
}

body.od-support-page .od-support-close:active {
  transform: scale(.92) !important;
}

body.od-support-page .od-support-main {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(35,236,137,.06), transparent 34%),
    #f6f8f7 !important;
}

/* Force-remove old landing/empty view and starter button */
body.od-support-page .od-support-empty,
body.od-support-page #supportEmptyView,
body.od-support-page .od-support-empty__center,
body.od-support-page .od-support-empty__icon,
body.od-support-page .od-support-start-btn,
body.od-support-page #openLiveChatBtn {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Direct chat panel */
body.od-support-page .od-support-chat-panel {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  background: #f6f8f7 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
}

body.od-support-page .od-support-chat-head {
  width: 100% !important;
  height: 50px !important;
  min-height: 50px !important;
  flex: 0 0 50px !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 7px 10px !important;
  color: #101316 !important;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(250,252,251,.99)) !important;
  border-bottom: 1px solid rgba(10,18,24,.07) !important;
  box-shadow: 0 8px 20px rgba(15,23,42,.035) !important;
  z-index: 3 !important;
}

body.od-support-page .od-support-chat-avatar {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #23ec89, #0aa95f) !important;
  box-shadow:
    0 8px 18px rgba(35,236,137,.20),
    inset 0 1px 0 rgba(255,255,255,.30) !important;
  animation: odSupportIconFloat 3.6s ease-in-out infinite !important;
}

body.od-support-page .od-support-chat-avatar svg {
  width: 19px !important;
  height: 19px !important;
  stroke-width: 2.25 !important;
}

body.od-support-page .od-support-chat-title {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  display: grid !important;
  gap: 2px !important;
}

body.od-support-page .od-support-chat-title strong {
  min-width: 0 !important;
  color: #101316 !important;
  font-size: 13.5px !important;
  line-height: 1.05 !important;
  font-weight: 1000 !important;
  letter-spacing: -0.035em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

body.od-support-page .od-support-chat-title span {
  min-width: 0 !important;
  color: #08a65d !important;
  font-size: 10.5px !important;
  line-height: 1.05 !important;
  font-weight: 850 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

body.od-support-page .od-support-end-btn {
  min-width: 46px !important;
  height: 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0 12px !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #23ec89, #0ea55f) !important;
  box-shadow:
    0 8px 18px rgba(35,236,137,.18),
    inset 0 1px 0 rgba(255,255,255,.25) !important;
  font-size: 11px !important;
  font-weight: 1000 !important;
  cursor: pointer !important;
  transition: transform .18s ease, filter .18s ease !important;
}

body.od-support-page .od-support-end-btn:active {
  transform: scale(.94) !important;
}

body.od-support-page .od-support-chat-alert {
  width: calc(100% - 20px) !important;
  margin: 10px !important;
  padding: 12px 13px !important;
  border-radius: 14px !important;
  color: #9a271f !important;
  background: #fff2f2 !important;
  border: 1px solid rgba(255,93,103,.22) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
}

/* Messages area */
body.od-support-page .od-support-chat-box,
body.od-support-page .chat-box {
  width: 100% !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 12px 10px 14px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(35,236,137,.09), transparent 30%),
    linear-gradient(180deg, #f7f8f8 0%, #f1f4f2 100%) !important;
  scroll-behavior: smooth !important;
}

body.od-support-page .chat-empty {
  width: min(390px, calc(100% - 18px)) !important;
  margin: 16px auto !important;
  padding: 13px 14px !important;
  border-radius: 17px !important;
  color: #59625e !important;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.78)) !important;
  border: 1px solid rgba(10,18,24,.065) !important;
  box-shadow:
    0 12px 24px rgba(15,23,42,.055),
    inset 0 1px 0 rgba(255,255,255,.70) !important;
  text-align: center !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 800 !important;
}

body.od-support-page .od-support-chat-ready span,
body.od-support-page .od-support-chat-ready strong {
  display: block !important;
}

body.od-support-page .od-support-chat-ready span {
  color: #0b9c59 !important;
  font-size: 11px !important;
  font-weight: 1000 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  margin-bottom: 4px !important;
}

body.od-support-page .od-support-chat-ready strong {
  color: #101316 !important;
  font-size: 13px !important;
  font-weight: 1000 !important;
  letter-spacing: -0.035em !important;
}

body.od-support-page .chat-row {
  width: 100% !important;
  display: flex !important;
  margin: 0 0 8px !important;
  animation: odSupportMsgIn .22s ease both !important;
}

body.od-support-page .chat-row.me {
  justify-content: flex-end !important;
}

body.od-support-page .chat-row.admin {
  justify-content: flex-start !important;
}

body.od-support-page .chat-bubble {
  max-width: min(76%, 560px) !important;
  min-width: 0 !important;
  border-radius: 17px !important;
  padding: 8px 10px 6px !important;
  font-size: 12.8px !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
  word-wrap: break-word !important;
  overflow-wrap: anywhere !important;
  cursor: pointer !important;
  box-shadow: 0 7px 16px rgba(15,23,42,.08) !important;
}

body.od-support-page .chat-row.me .chat-bubble {
  color: #06120c !important;
  background: linear-gradient(135deg, #d7ffe7, #c2f8d8) !important;
  border: 1px solid rgba(35,236,137,.24) !important;
  border-bottom-right-radius: 5px !important;
}

body.od-support-page .chat-row.admin .chat-bubble {
  color: #101316 !important;
  background: #ffffff !important;
  border: 1px solid rgba(10,18,24,.06) !important;
  border-bottom-left-radius: 5px !important;
}

body.od-support-page .chat-time {
  display: block !important;
  margin-top: 4px !important;
  color: rgba(16,19,22,.50) !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-align: right !important;
}

body.od-support-page .chat-quoted {
  margin-bottom: 6px !important;
  padding: 6px 8px !important;
  border-radius: 10px !important;
  border-left: 3px solid #0ca75f !important;
  background: rgba(255,255,255,.62) !important;
  color: #4b5652 !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}

body.od-support-page .chat-quoted b {
  display: block !important;
  margin-bottom: 2px !important;
  color: #078e50 !important;
  font-size: 10px !important;
  font-weight: 1000 !important;
}

body.od-support-page .chat-img-link {
  display: block !important;
  margin-bottom: 6px !important;
}

body.od-support-page .chat-img {
  display: block !important;
  width: min(220px, 100%) !important;
  max-width: 100% !important;
  border-radius: 12px !important;
  border: 1px solid rgba(10,18,24,.08) !important;
}

body.od-support-page .chat-audio {
  display: block !important;
  width: min(230px, 100%) !important;
  max-width: 100% !important;
  height: 34px !important;
  margin: 3px 0 !important;
}

body.od-support-page .chat-typing {
  min-height: 29px !important;
  padding: 8px 11px !important;
  border-radius: 16px !important;
  border-bottom-left-radius: 5px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: #ffffff !important;
  border: 1px solid rgba(10,18,24,.06) !important;
  box-shadow: 0 7px 16px rgba(15,23,42,.07) !important;
}

body.od-support-page .chat-dot {
  width: 5px !important;
  height: 5px !important;
  border-radius: 999px !important;
  background: #0ca75f !important;
  animation: odSupportTypingDot 1s infinite ease-in-out !important;
}

body.od-support-page .chat-dot:nth-child(2) {
  animation-delay: .15s !important;
}

body.od-support-page .chat-dot:nth-child(3) {
  animation-delay: .3s !important;
}

/* Reply/media previews */
body.od-support-page .od-support-reply-preview,
body.od-support-page .chat-reply-preview,
body.od-support-page .od-support-media-preview,
body.od-support-page .chat-preview {
  display: none;
  width: 100% !important;
  padding: 7px 10px !important;
  background: rgba(255,255,255,.96) !important;
  border-top: 1px solid rgba(10,18,24,.07) !important;
  flex: 0 0 auto !important;
}

body.od-support-page .chat-reply-inner {
  width: 100% !important;
  border-left: 3px solid #0ca75f !important;
  background: #f6fbf8 !important;
  border-radius: 12px !important;
  padding: 7px 9px !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 8px !important;
  align-items: flex-start !important;
}

body.od-support-page .chat-reply-label {
  color: #078e50 !important;
  font-size: 10px !important;
  font-weight: 1000 !important;
  line-height: 1.1 !important;
  margin-bottom: 3px !important;
}

body.od-support-page .chat-reply-text {
  color: #38423e !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

body.od-support-page .chat-reply-cancel {
  width: 24px !important;
  height: 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  color: #078e50 !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

body.od-support-page .chat-preview {
  color: #078e50 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

body.od-support-page .chat-preview audio {
  width: 100% !important;
  height: 34px !important;
  margin-top: 6px !important;
}

body.od-support-page .chat-remove-media {
  height: 26px !important;
  margin-top: 6px !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #fff1f1 !important;
  color: #b42318 !important;
  font-size: 10.5px !important;
  font-weight: 1000 !important;
  cursor: pointer !important;
}

/* Compose */
body.od-support-page .od-support-compose,
body.od-support-page .chat-compose {
  width: 100% !important;
  min-height: 56px !important;
  flex: 0 0 56px !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 8px 9px !important;
  background: rgba(255,255,255,.99) !important;
  border-top: 1px solid rgba(10,18,24,.08) !important;
  box-shadow: 0 -10px 24px rgba(15,23,42,.045) !important;
}

body.od-support-page .chat-file-input {
  display: none !important;
}

body.od-support-page .od-support-round-action,
body.od-support-page .chat-file-label,
body.od-support-page .chat-record-btn,
body.od-support-page .od-support-send-round,
body.od-support-page .chat-send-btn {
  width: 39px !important;
  height: 39px !important;
  flex: 0 0 39px !important;
  border: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease !important;
}

body.od-support-page .od-support-round-action,
body.od-support-page .chat-file-label,
body.od-support-page .chat-record-btn {
  color: #078e50 !important;
  background: linear-gradient(135deg, #f4fff8, #dff9ea) !important;
  border: 1px solid rgba(12,167,95,.12) !important;
  box-shadow:
    0 7px 16px rgba(12,167,95,.10),
    inset 0 1px 0 rgba(255,255,255,.95) !important;
}

body.od-support-page .od-support-round-action svg,
body.od-support-page .chat-file-label svg,
body.od-support-page .chat-record-btn svg {
  width: 19px !important;
  height: 19px !important;
  stroke-width: 2.25 !important;
}

body.od-support-page .chat-record-btn .stop-icon {
  display: none !important;
}

body.od-support-page .chat-record-btn .mic-icon {
  width: 19px !important;
  height: 19px !important;
  display: inline-flex !important;
}

body.od-support-page .chat-record-btn.recording {
  color: #b42318 !important;
  background: linear-gradient(135deg, #fff4f4, #ffdada) !important;
  border-color: rgba(180,35,24,.14) !important;
  animation: odSupportRecordPulse 1s infinite !important;
}

body.od-support-page .chat-record-btn.recording .mic-icon {
  display: none !important;
}

body.od-support-page .chat-record-btn.recording .stop-icon {
  width: 19px !important;
  height: 19px !important;
  display: inline-flex !important;
}

body.od-support-page .chat-input {
  min-width: 0 !important;
  height: 39px !important;
  flex: 1 1 auto !important;
  border: 1px solid rgba(10,18,24,.10) !important;
  border-radius: 999px !important;
  padding: 0 13px !important;
  outline: none !important;
  color: #101316 !important;
  background: #f7f9f8 !important;
  box-shadow: inset 0 1px 2px rgba(15,23,42,.035) !important;
  font-size: 12.8px !important;
  font-weight: 750 !important;
  line-height: 39px !important;
}

body.od-support-page .chat-input::placeholder {
  color: #8a938f !important;
  font-weight: 750 !important;
}

body.od-support-page .chat-input:focus {
  border-color: rgba(12,167,95,.38) !important;
  box-shadow:
    0 0 0 3px rgba(12,167,95,.08),
    inset 0 1px 2px rgba(15,23,42,.03) !important;
  background: #ffffff !important;
}

body.od-support-page .od-support-send-round,
body.od-support-page .chat-send-btn {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0fc86f, #069c57) !important;
  box-shadow:
    0 9px 19px rgba(12,167,95,.23),
    inset 0 1px 0 rgba(255,255,255,.28) !important;
  animation: odSupportSendBreath 2.8s ease-in-out infinite !important;
}

body.od-support-page .od-support-send-round svg,
body.od-support-page .chat-send-btn svg {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 2.5 !important;
}

body.od-support-page .od-support-round-action:active,
body.od-support-page .chat-file-label:active,
body.od-support-page .chat-record-btn:active,
body.od-support-page .chat-send-btn:active {
  transform: scale(.92) !important;
}

body.od-support-page .chat-send-btn:disabled,
body.od-support-page .chat-input:disabled,
body.od-support-page .chat-file-label.disabled,
body.od-support-page .chat-record-btn:disabled {
  opacity: .55 !important;
  cursor: not-allowed !important;
  animation: none !important;
}

/* Bottom nav */
body.od-support-page .od-support-tabs {
  width: 100% !important;
  height: 72px !important;
  min-height: 72px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: center !important;
  padding: 5px 8px calc(5px + env(safe-area-inset-bottom, 0px)) !important;
  background: rgba(255,255,255,.99) !important;
  border-top: 1px solid rgba(10,18,24,.08) !important;
  box-shadow: 0 -12px 28px rgba(15,23,42,.045) !important;
  z-index: 6 !important;
}

body.od-support-page .od-support-tab {
  min-width: 0 !important;
  height: 58px !important;
  border-radius: 16px !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  gap: 4px !important;
  color: #6b7277 !important;
  text-decoration: none !important;
  transition: transform .18s ease, color .18s ease, background .18s ease !important;
}

body.od-support-page .od-support-tab svg {
  width: 25px !important;
  height: 25px !important;
  stroke-width: 2.25 !important;
}

body.od-support-page .od-support-tab span {
  color: currentColor !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: -0.035em !important;
}

body.od-support-page .od-support-tab.is-active {
  color: #069c57 !important;
  background: rgba(35,236,137,.075) !important;
}

body.od-support-page .od-support-tab.is-active svg {
  animation: odSupportActiveTab 2.5s ease-in-out infinite !important;
  filter: drop-shadow(0 5px 10px rgba(12,167,95,.18)) !important;
}

body.od-support-page .od-support-tab:active {
  transform: scale(.94) !important;
}

@keyframes odSupportIconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.025); }
}

@keyframes odSupportMsgIn {
  from { opacity: 0; transform: translateY(5px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes odSupportTypingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: .45; }
  40% { transform: translateY(-4px); opacity: 1; }
}

@keyframes odSupportSendBreath {
  0%, 100% {
    box-shadow:
      0 9px 19px rgba(12,167,95,.23),
      inset 0 1px 0 rgba(255,255,255,.28);
  }
  50% {
    box-shadow:
      0 12px 24px rgba(12,167,95,.31),
      inset 0 1px 0 rgba(255,255,255,.28);
  }
}

@keyframes odSupportRecordPulse {
  0% { box-shadow: 0 0 0 0 rgba(180,35,24,.32); }
  70% { box-shadow: 0 0 0 9px rgba(180,35,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(180,35,24,0); }
}

@keyframes odSupportActiveTab {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.04); }
}

@media (min-width: 701px) {
  body.od-support-page .od-support-app {
    grid-template-rows: 58px minmax(0, 1fr) 76px !important;
  }

  body.od-support-page .od-support-topbar {
    height: 58px !important;
    min-height: 58px !important;
    grid-template-columns: 54px minmax(0, 1fr) 54px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.od-support-page .od-support-topbar h1 {
    font-size: 21px !important;
  }

  body.od-support-page .od-support-close {
    width: 42px !important;
    height: 42px !important;
  }

  body.od-support-page .od-support-chat-head {
    height: 54px !important;
    min-height: 54px !important;
    flex-basis: 54px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.od-support-page .od-support-chat-avatar {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
  }

  body.od-support-page .od-support-chat-title strong {
    font-size: 14.5px !important;
  }

  body.od-support-page .od-support-chat-title span {
    font-size: 11px !important;
  }

  body.od-support-page .od-support-chat-box,
  body.od-support-page .chat-box {
    padding: 16px 18px 18px !important;
  }

  body.od-support-page .chat-bubble {
    max-width: min(62%, 680px) !important;
    font-size: 13px !important;
  }

  body.od-support-page .od-support-compose,
  body.od-support-page .chat-compose {
    min-height: 58px !important;
    flex-basis: 58px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.od-support-page .od-support-tabs {
    height: 76px !important;
    min-height: 76px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.od-support-page .od-support-tab {
    height: 62px !important;
  }
}

@media (max-width: 420px) {
  body.od-support-page .od-support-app {
    grid-template-rows: 52px minmax(0, 1fr) 68px !important;
  }

  body.od-support-page .od-support-topbar {
    height: 52px !important;
    min-height: 52px !important;
    grid-template-columns: 38px minmax(0, 1fr) 38px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  body.od-support-page .od-support-topbar h1 {
    font-size: 18px !important;
  }

  body.od-support-page .od-support-close {
    width: 36px !important;
    height: 36px !important;
  }

  body.od-support-page .od-support-close svg {
    width: 22px !important;
    height: 22px !important;
  }

  body.od-support-page .od-support-chat-head {
    height: 48px !important;
    min-height: 48px !important;
    flex-basis: 48px !important;
    padding: 7px 8px !important;
    gap: 7px !important;
  }

  body.od-support-page .od-support-chat-avatar {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
    border-radius: 11px !important;
  }

  body.od-support-page .od-support-chat-title strong {
    font-size: 13px !important;
  }

  body.od-support-page .od-support-chat-title span {
    font-size: 10px !important;
  }

  body.od-support-page .od-support-end-btn {
    min-width: 42px !important;
    height: 27px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 10.5px !important;
  }

  body.od-support-page .od-support-chat-box,
  body.od-support-page .chat-box {
    padding: 10px 8px 11px !important;
  }

  body.od-support-page .chat-bubble {
    max-width: 80% !important;
    padding: 7px 9px 6px !important;
    font-size: 12.3px !important;
    border-radius: 15px !important;
  }

  body.od-support-page .od-support-compose,
  body.od-support-page .chat-compose {
    min-height: 53px !important;
    flex-basis: 53px !important;
    gap: 6px !important;
    padding: 7px 8px !important;
  }

  body.od-support-page .od-support-round-action,
  body.od-support-page .chat-file-label,
  body.od-support-page .chat-record-btn,
  body.od-support-page .od-support-send-round,
  body.od-support-page .chat-send-btn {
    width: 37px !important;
    height: 37px !important;
    flex-basis: 37px !important;
  }

  body.od-support-page .chat-input {
    height: 37px !important;
    line-height: 37px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: 12.2px !important;
  }

  body.od-support-page .od-support-tabs {
    height: 68px !important;
    min-height: 68px !important;
    padding: 4px 5px calc(4px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.od-support-page .od-support-tab {
    height: 56px !important;
    gap: 3px !important;
    border-radius: 14px !important;
  }

  body.od-support-page .od-support-tab svg {
    width: 23px !important;
    height: 23px !important;
  }

  body.od-support-page .od-support-tab span {
    font-size: 11.4px !important;
  }
}

@media (max-width: 360px) {
  body.od-support-page .od-support-chat-head {
    gap: 6px !important;
  }

  body.od-support-page .od-support-chat-avatar {
    width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
  }

  body.od-support-page .od-support-chat-title strong {
    font-size: 12.4px !important;
  }

  body.od-support-page .od-support-chat-title span {
    font-size: 9.6px !important;
  }

  body.od-support-page .od-support-end-btn {
    min-width: 38px !important;
    height: 26px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 10px !important;
  }

  body.od-support-page .chat-bubble {
    max-width: 84% !important;
    font-size: 11.8px !important;
  }

  body.od-support-page .od-support-compose,
  body.od-support-page .chat-compose {
    gap: 5px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  body.od-support-page .od-support-round-action,
  body.od-support-page .chat-file-label,
  body.od-support-page .chat-record-btn,
  body.od-support-page .od-support-send-round,
  body.od-support-page .chat-send-btn {
    width: 35px !important;
    height: 35px !important;
    flex-basis: 35px !important;
  }

  body.od-support-page .chat-input {
    height: 35px !important;
    line-height: 35px !important;
    font-size: 11.6px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.od-support-page *,
  body.od-support-page *::before,
  body.od-support-page *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   OddeminBet Notification Clone
   Paste at the bottom of: /assets/css/user.css
   Used by: /user/notifications.php
========================================================= */

body.od-notification-page,
body.od-notification-page * {
  box-sizing: border-box;
}

body.od-notification-page {
  --nt-bg: #202726;
  --nt-bg-deep: #1a2120;
  --nt-panel: #2f3736;
  --nt-panel-2: #35403f;
  --nt-panel-active: #3b4544;
  --nt-text: #f6fbf8;
  --nt-muted: #b7c4c0;
  --nt-muted-2: #8f9d99;
  --nt-green: #23ec89;
  --nt-green-2: #08cf6b;
  --nt-danger: #ff6b73;
  --nt-line: rgba(255,255,255,.075);
  --nt-shadow: 0 22px 60px rgba(0,0,0,.28);
  --nt-radius: 18px;
  margin: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 100dvh !important;
  overflow-x: hidden !important;
  color: var(--nt-text) !important;
  background:
    radial-gradient(circle at 18% -8%, rgba(35,236,137,.075), transparent 34%),
    linear-gradient(180deg, #303837 0, #202726 150px, #1d2423 100%) !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.od-notify-app {
  width: 100% !important;
  min-height: 100dvh !important;
  padding-bottom: calc(92px + env(safe-area-inset-bottom)) !important;
}

.od-notify-topbar {
  width: 100% !important;
  height: 82px !important;
  padding: calc(14px + env(safe-area-inset-top)) 14px 12px !important;
  display: grid !important;
  grid-template-columns: 38px 1fr 38px !important;
  align-items: center !important;
  gap: 8px !important;
  background: #303837 !important;
  border-bottom: 1px solid rgba(0,0,0,.16) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.13) !important;
}

.od-notify-topbar h1 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(19px, 3.3vw, 24px) !important;
  line-height: 1 !important;
  font-weight: 1000 !important;
  letter-spacing: -.035em !important;
  text-align: center !important;
}

.od-notify-back,
.od-notify-topbar__ghost {
  width: 36px !important;
  height: 36px !important;
  border-radius: 11px !important;
}

.od-notify-back {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #c9d5d1 !important;
  text-decoration: none !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(43,52,51,.95) !important;
  border: 1px solid rgba(255,255,255,.055) !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
  animation: odNtBackBreathe 3.2s ease-in-out infinite !important;
  -webkit-tap-highlight-color: transparent !important;
}

.od-notify-back svg {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 3 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.od-notify-back:active {
  transform: scale(.94) !important;
}

.od-notify-main {
  width: 100% !important;
  max-width: 1040px !important;
  margin: 0 auto !important;
  padding: 12px 12px 16px !important;
}

.od-notify-tabs {
  width: 100% !important;
  min-height: 56px !important;
  padding: 5px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 4px !important;
  border-radius: 19px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    #2e3635 !important;
  border: 1px solid rgba(255,255,255,.055) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 14px 34px rgba(0,0,0,.16) !important;
  overflow: hidden !important;
}

.od-notify-tab {
  min-width: 0 !important;
  height: 46px !important;
  padding: 0 7px !important;
  border: 0 !important;
  border-radius: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  color: rgba(236,246,242,.68) !important;
  background: transparent !important;
  font-size: clamp(12px, 3.2vw, 17px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -.04em !important;
  cursor: pointer !important;
  transition:
    transform .18s ease,
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease !important;
  white-space: nowrap !important;
  -webkit-tap-highlight-color: transparent !important;
}

.od-notify-tab span {
  min-width: 0 !important;
  display: block !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.od-notify-tab.is-active {
  color: #ffffff !important;
  font-weight: 1000 !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.018)),
    #3a4443 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.055),
    0 10px 22px rgba(0,0,0,.11) !important;
}

.od-notify-tab:active {
  transform: scale(.97) !important;
}

.od-notify-count {
  min-width: 22px !important;
  height: 22px !important;
  padding: 0 6px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #062118 !important;
  background: linear-gradient(135deg, #31f59a, #18dc78) !important;
  border: 1px solid rgba(35,236,137,.70) !important;
  box-shadow:
    0 0 0 3px rgba(35,236,137,.09),
    0 8px 18px rgba(35,236,137,.22),
    inset 0 1px 0 rgba(255,255,255,.35) !important;
  font-style: normal !important;
  font-size: 12px !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  animation: odNtCountPop .42s ease both !important;
}

.od-notify-count.is-zero,
.od-notify-count:empty {
  display: none !important;
}

.od-notify-list {
  width: 100% !important;
  display: grid !important;
  gap: 10px !important;
  margin-top: 12px !important;
}

.od-notify-card {
  width: 100% !important;
  min-height: 126px !important;
  padding: 15px 16px 42px !important;
  position: relative !important;
  display: block !important;
  border-radius: 15px !important;
  color: #ffffff !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.043), rgba(255,255,255,.014)),
    #303837 !important;
  border: 1px solid rgba(255,255,255,.055) !important;
  box-shadow:
    0 15px 38px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.045) !important;
  overflow: hidden !important;
  animation: odNtCardIn .34s ease both !important;
  transition:
    opacity .22s ease,
    transform .22s ease,
    filter .22s ease,
    border-color .22s ease !important;
}

.od-notify-card[hidden],
.od-notify-card.is-filtered-out {
  display: none !important;
}

.od-notify-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 3px !important;
  background: transparent !important;
  opacity: 0 !important;
}

.od-notify-card.is-unread {
  border-color: rgba(35,236,137,.18) !important;
}

.od-notify-card.is-unread::before {
  background: linear-gradient(180deg, #23ec89, rgba(35,236,137,.1)) !important;
  opacity: .88 !important;
}

.od-notify-card.is-deleting {
  opacity: 0 !important;
  transform: translateX(18px) scale(.985) !important;
  filter: blur(1px) !important;
  pointer-events: none !important;
}

.od-notify-card__time {
  margin: 0 0 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: rgba(231,242,238,.74) !important;
  font-size: clamp(12px, 3.4vw, 16px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -.035em !important;
}

.od-notify-card__time i {
  width: 10px !important;
  height: 10px !important;
  flex: 0 0 10px !important;
  display: block !important;
  border-radius: 999px !important;
  background: #23ec89 !important;
  box-shadow:
    0 0 0 4px rgba(35,236,137,.11),
    0 0 16px rgba(35,236,137,.65) !important;
  animation: odNtDotPulse 1.6s ease-in-out infinite !important;
}

.od-notify-card h2 {
  margin: 0 0 11px !important;
  color: #ffffff !important;
  font-size: clamp(15px, 4.3vw, 20px) !important;
  line-height: 1.13 !important;
  font-weight: 1000 !important;
  letter-spacing: -.045em !important;
}

.od-notify-card p {
  margin: 0 !important;
  color: rgba(229,240,236,.76) !important;
  font-size: clamp(13px, 3.6vw, 17px) !important;
  line-height: 1.48 !important;
  font-weight: 520 !important;
  letter-spacing: -.025em !important;
}

.od-notify-delete {
  position: absolute !important;
  right: 19px !important;
  bottom: 15px !important;
  width: 36px !important;
  height: 36px !important;
  border: 0 !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(228,238,234,.72) !important;
  background: transparent !important;
  cursor: pointer !important;
  transition:
    color .18s ease,
    background .18s ease,
    transform .18s ease,
    box-shadow .18s ease !important;
  -webkit-tap-highlight-color: transparent !important;
}

.od-notify-delete svg,
.od-notify-mark-read svg,
.od-notify-empty__icon svg {
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.35 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.od-notify-delete svg {
  width: 22px !important;
  height: 22px !important;
}

.od-notify-delete:hover,
.od-notify-delete:focus-visible {
  color: #ffffff !important;
  background: rgba(255,255,255,.06) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.od-notify-delete:hover svg,
.od-notify-delete:focus-visible svg {
  animation: odNtTrashShake .55s ease both !important;
}

.od-notify-delete:active {
  transform: scale(.92) !important;
  color: var(--nt-danger) !important;
}

.od-notify-empty {
  width: 100% !important;
  min-height: 210px !important;
  margin-top: 14px !important;
  padding: 34px 18px !important;
  display: none !important;
  place-items: center !important;
  text-align: center !important;
  border-radius: 18px !important;
  background: rgba(48,56,55,.72) !important;
  border: 1px dashed rgba(255,255,255,.10) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03) !important;
}

.od-notify-empty.is-visible {
  display: grid !important;
  animation: odNtEmptyIn .28s ease both !important;
}

.od-notify-empty__icon {
  width: 54px !important;
  height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(240,248,245,.78) !important;
  margin-bottom: 12px !important;
  animation: odNtFloat 2.7s ease-in-out infinite !important;
}

.od-notify-empty__icon svg {
  width: 54px !important;
  height: 54px !important;
}

.od-notify-empty strong {
  display: block !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 1000 !important;
  line-height: 1.1 !important;
  letter-spacing: -.035em !important;
}

.od-notify-empty p {
  max-width: 280px !important;
  margin: 8px auto 0 !important;
  color: rgba(222,234,230,.68) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
}

.od-notify-actions {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 30 !important;
  width: 100% !important;
  min-height: 82px !important;
  padding: 13px 12px calc(13px + env(safe-area-inset-bottom)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  background:
    linear-gradient(180deg, rgba(48,56,55,.94), rgba(48,56,55,.985)),
    #303837 !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  box-shadow: 0 -18px 46px rgba(0,0,0,.22) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.od-notify-unread-toggle {
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #ffffff !important;
  font-size: clamp(13px, 3.6vw, 17px) !important;
  font-weight: 950 !important;
  letter-spacing: -.035em !important;
  cursor: pointer !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.od-notify-unread-toggle input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.od-notify-unread-toggle i {
  width: 48px !important;
  height: 28px !important;
  flex: 0 0 48px !important;
  border-radius: 999px !important;
  position: relative !important;
  background: rgba(27,34,33,.92) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  box-shadow:
    inset 0 2px 8px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
  transition: background .2s ease, border-color .2s ease !important;
}

.od-notify-unread-toggle i::before {
  content: "" !important;
  position: absolute !important;
  left: 4px !important;
  top: 4px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 999px !important;
  background: #7f8d89 !important;
  box-shadow:
    0 6px 14px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.16) !important;
  transition: transform .2s ease, background .2s ease !important;
}

.od-notify-unread-toggle input:checked + i {
  background: rgba(35,236,137,.18) !important;
  border-color: rgba(35,236,137,.38) !important;
}

.od-notify-unread-toggle input:checked + i::before {
  transform: translateX(20px) !important;
  background: var(--nt-green) !important;
  animation: odNtSwitchPop .28s ease both !important;
}

.od-notify-mark-read {
  min-width: 0 !important;
  height: 42px !important;
  padding: 0 4px !important;
  border: 0 !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  color: var(--nt-green) !important;
  background: transparent !important;
  font-size: clamp(12px, 3.4vw, 17px) !important;
  font-weight: 1000 !important;
  line-height: 1 !important;
  letter-spacing: -.045em !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: transform .18s ease, color .18s ease, opacity .18s ease !important;
  -webkit-tap-highlight-color: transparent !important;
}

.od-notify-mark-read svg {
  width: 24px !important;
  height: 24px !important;
  stroke-width: 2.8 !important;
  filter: drop-shadow(0 0 10px rgba(35,236,137,.28)) !important;
}

.od-notify-mark-read:hover,
.od-notify-mark-read:focus-visible {
  color: #52ffad !important;
}

.od-notify-mark-read:hover svg,
.od-notify-mark-read.is-done svg {
  animation: odNtCheckSweep .72s ease both !important;
}

.od-notify-mark-read:active {
  transform: scale(.96) !important;
}

.od-notify-mark-read:disabled {
  opacity: .64 !important;
  cursor: progress !important;
}

.od-notify-mark-read.is-loading svg {
  animation: odNtSpin .72s linear infinite !important;
}

@media (min-width: 701px) {
  .od-notify-app {
    padding-bottom: 100px !important;
  }

  .od-notify-topbar {
    height: 88px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    grid-template-columns: 42px 1fr 42px !important;
  }

  .od-notify-back,
  .od-notify-topbar__ghost {
    width: 40px !important;
    height: 40px !important;
  }

  .od-notify-main {
    padding: 18px 24px 24px !important;
  }

  .od-notify-tabs {
    min-height: 62px !important;
    padding: 6px !important;
    border-radius: 22px !important;
  }

  .od-notify-tab {
    height: 50px !important;
    border-radius: 17px !important;
  }

  .od-notify-list {
    gap: 12px !important;
    margin-top: 14px !important;
  }

  .od-notify-card {
    min-height: 138px !important;
    padding: 18px 20px 46px !important;
    border-radius: 18px !important;
  }

  .od-notify-actions {
    min-height: 86px !important;
    padding-left: max(24px, calc((100vw - 1040px) / 2 + 24px)) !important;
    padding-right: max(24px, calc((100vw - 1040px) / 2 + 24px)) !important;
  }
}

@media (max-width: 420px) {
  .od-notify-topbar {
    height: 76px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .od-notify-main {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .od-notify-tabs {
    min-height: 52px !important;
    border-radius: 17px !important;
  }

  .od-notify-tab {
    height: 42px !important;
    gap: 5px !important;
    padding: 0 5px !important;
    border-radius: 13px !important;
  }

  .od-notify-count {
    min-width: 20px !important;
    height: 20px !important;
    padding: 0 5px !important;
    font-size: 11px !important;
  }

  .od-notify-card {
    min-height: 124px !important;
    padding: 13px 14px 40px !important;
  }

  .od-notify-actions {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (max-width: 360px) {
  .od-notify-tabs {
    gap: 3px !important;
    padding: 4px !important;
  }

  .od-notify-tab {
    font-size: 11px !important;
  }

  .od-notify-count {
    min-width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
  }

  .od-notify-unread-toggle {
    gap: 6px !important;
    font-size: 12px !important;
  }

  .od-notify-unread-toggle i {
    width: 43px !important;
    height: 25px !important;
    flex-basis: 43px !important;
  }

  .od-notify-unread-toggle i::before {
    width: 17px !important;
    height: 17px !important;
  }

  .od-notify-unread-toggle input:checked + i::before {
    transform: translateX(18px) !important;
  }

  .od-notify-mark-read {
    font-size: 11.2px !important;
    gap: 5px !important;
  }

  .od-notify-mark-read svg {
    width: 21px !important;
    height: 21px !important;
  }
}

@keyframes odNtCardIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes odNtEmptyIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes odNtCountPop {
  0% {
    transform: scale(.72);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@keyframes odNtDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(35,236,137,.11), 0 0 16px rgba(35,236,137,.65);
  }
  50% {
    transform: scale(1.16);
    box-shadow: 0 0 0 7px rgba(35,236,137,.05), 0 0 22px rgba(35,236,137,.85);
  }
}

@keyframes odNtTrashShake {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(7deg); }
  60% { transform: rotate(-5deg); }
  80% { transform: rotate(4deg); }
}

@keyframes odNtCheckSweep {
  0% {
    transform: translateX(-2px) scale(.92);
    filter: drop-shadow(0 0 0 rgba(35,236,137,0));
  }
  45% {
    transform: translateX(2px) scale(1.1);
    filter: drop-shadow(0 0 16px rgba(35,236,137,.58));
  }
  100% {
    transform: translateX(0) scale(1);
    filter: drop-shadow(0 0 10px rgba(35,236,137,.28));
  }
}

@keyframes odNtBackBreathe {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

@keyframes odNtSwitchPop {
  0% { transform: translateX(20px) scale(.9); }
  62% { transform: translateX(20px) scale(1.12); }
  100% { transform: translateX(20px) scale(1); }
}

@keyframes odNtFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

@media (prefers-reduced-motion: reduce) {
  .od-notify-back,
  .od-notify-card,
  .od-notify-empty,
  .od-notify-empty__icon,
  .od-notify-count,
  .od-notify-card__time i,
  .od-notify-delete:hover svg,
  .od-notify-delete:focus-visible svg,
  .od-notify-mark-read:hover svg,
  .od-notify-mark-read.is-done svg,
  .od-notify-mark-read.is-loading svg {
    animation: none !important;
  }

  .od-notify-card,
  .od-notify-tab,
  .od-notify-delete,
  .od-notify-mark-read,
  .od-notify-unread-toggle i,
  .od-notify-unread-toggle i::before {
    transition: none !important;
  }
}
/* =========================================================
   OddeminBet Transactions Clone
   Paste/keep this in: /assets/css/user.css
   ========================================================= */

body.od-transactions-page {
  margin: 0 !important;
  min-height: 100vh !important;
  background: #1f2726 !important;
  color: #f5fbf8 !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  overflow-x: hidden !important;
}

body.od-transactions-page * {
  box-sizing: border-box;
}

.od-tx-app {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 5%, rgba(35, 236, 137, 0.055), transparent 30%),
    linear-gradient(180deg, #2d3433 0%, #202726 11.5rem, #1f2726 100%);
  color: #f5fbf8;
}

.od-tx-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  width: 100%;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 8px;
  padding: 12px clamp(14px, 4vw, 32px);
  background: #2d3433;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.11);
}

.od-tx-back,
.od-tx-topbar__ghost {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.od-tx-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dce7e3;
  background: rgba(40, 53, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.035);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 10px 26px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.od-tx-back:hover,
.od-tx-back:focus-visible {
  transform: translateY(-1px);
  color: #ffffff;
  background: rgba(52, 68, 65, 0.98);
  outline: none;
}

.od-tx-back svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-tx-topbar h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #f7fbf9;
}

.od-tx-main {
  width: 100%;
  padding: 22px clamp(14px, 4vw, 32px) 44px;
}

.od-tx-content {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.od-tx-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  width: 100%;
  margin-bottom: 24px;
}

.od-tx-select {
  position: relative;
  min-width: 0;
}

.od-tx-select__btn {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 12px 18px;
  border-radius: 13px;
  cursor: pointer;
  color: #f4fbf8;
  text-align: left;
  font: inherit;
  font-size: clamp(18px, 3.8vw, 25px);
  font-weight: 500;
  letter-spacing: -0.035em;
  background: rgba(36, 45, 44, 0.94);
  border: 1px solid rgba(184, 198, 193, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.od-tx-select__btn:hover,
.od-tx-select__btn:focus-visible,
.od-tx-select.is-open .od-tx-select__btn {
  outline: none;
  border-color: rgba(35, 236, 137, 0.26);
  background: rgba(43, 55, 53, 0.98);
}

.od-tx-select__btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.od-tx-select__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #c4d0cc;
  background: rgba(61, 76, 73, 0.88);
  transition: transform 0.18s ease, color 0.18s ease;
}

.od-tx-select.is-open .od-tx-select__icon {
  transform: rotate(180deg);
  color: #23ec89;
}

.od-tx-select__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-tx-menu {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  padding: 8px;
  border-radius: 16px;
  background: #2b3533;
  border: 1px solid rgba(184, 198, 193, 0.14);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(-5px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.od-tx-select.is-open .od-tx-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.od-tx-option {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  color: #eff7f4;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  transition: background 0.16s ease, color 0.16s ease;
}

.od-tx-option:hover,
.od-tx-option.is-active {
  background: rgba(35, 236, 137, 0.09);
  color: #23ec89;
}

.od-tx-table-head {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 0 30px;
  border-radius: 20px;
  background: rgba(38, 47, 46, 0.88);
  color: #f5fbf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.od-tx-table-head span {
  font-size: clamp(18px, 3.7vw, 25px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.od-tx-list {
  display: grid;
  gap: 10px;
}

.od-tx-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 76px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(36, 45, 44, 0.74);
  border: 1px solid rgba(184, 198, 193, 0.075);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.018);
  animation: odTxIn 0.26s ease both;
}

@keyframes odTxIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.od-tx-card[hidden] {
  display: none !important;
}

.od-tx-left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.od-tx-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #23ec89;
  background: rgba(35, 236, 137, 0.09);
  border: 1px solid rgba(35, 236, 137, 0.13);
}

.od-tx-icon.withdrawal {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.08);
  border-color: rgba(255, 107, 107, 0.12);
}

.od-tx-icon.bet {
  color: #ffd76b;
  background: rgba(255, 215, 107, 0.08);
  border-color: rgba(255, 215, 107, 0.12);
}

.od-tx-icon.referral {
  color: #b996ff;
  background: rgba(185, 150, 255, 0.08);
  border-color: rgba(185, 150, 255, 0.12);
}

.od-tx-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.od-tx-info {
  min-width: 0;
}

.od-tx-title {
  color: #f5fbf8;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.od-tx-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-top: 5px;
  color: #aab6b2;
  font-size: 11px;
  font-weight: 680;
}

.od-tx-status {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #aeb9b5;
  background: rgba(174, 185, 181, 0.09);
}

.od-tx-status.approved,
.od-tx-status.won,
.od-tx-status.success,
.od-tx-status.successful,
.od-tx-status.completed,
.od-tx-status.paid {
  color: #23ec89;
  background: rgba(35, 236, 137, 0.09);
}

.od-tx-status.pending,
.od-tx-status.processing,
.od-tx-status.open {
  color: #ffd76b;
  background: rgba(255, 215, 107, 0.09);
}

.od-tx-status.rejected,
.od-tx-status.failed,
.od-tx-status.lost,
.od-tx-status.cancelled,
.od-tx-status.canceled {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.09);
}

.od-tx-amounts {
  min-width: 112px;
  display: grid;
  justify-items: end;
  gap: 3px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
}

.od-tx-amount.positive {
  color: #23ec89;
}

.od-tx-amount.negative {
  color: #ff6b6b;
}

.od-tx-amount.neutral {
  color: #f4fbf8;
}

.od-tx-empty {
  display: none;
  width: 100%;
  min-height: 52vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 12px 60px;
  color: #f7fbf9;
}

.od-tx-empty.is-visible {
  display: flex;
}

.od-tx-empty__inner {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
}

.od-tx-empty__mascot {
  width: min(260px, 64vw);
  height: auto;
  display: block;
  margin: 0 auto 24px;
  opacity: 0.58;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.18));
}

.od-tx-empty strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(17px, 3.8vw, 23px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #f7fbf9;
}

.od-tx-empty p {
  margin: 8px 0 0;
  color: #a8b4b0;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .od-tx-app {
    background: linear-gradient(180deg, #2d3433 0%, #202726 13.4rem, #1f2726 100%);
  }

  .od-tx-topbar {
    height: 68px;
    grid-template-columns: 46px 1fr 46px;
    padding-inline: 13px;
  }

  .od-tx-back,
  .od-tx-topbar__ghost {
    width: 38px;
    height: 38px;
  }

  .od-tx-main {
    padding: 20px 15px 34px;
  }

  .od-tx-filters {
    gap: 10px;
  }

  .od-tx-select__btn {
    min-height: 54px;
    padding: 10px 10px 10px 13px;
    font-size: 17px;
    border-radius: 11px;
  }

  .od-tx-select__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
  }

  .od-tx-table-head {
    min-height: 60px;
    padding: 0 22px;
    border-radius: 18px;
  }

  .od-tx-table-head span {
    font-size: 18px;
  }

  .od-tx-card {
    min-height: 70px;
    padding: 12px 13px;
    border-radius: 16px;
  }

  .od-tx-left {
    gap: 10px;
  }

  .od-tx-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 13px;
  }

  .od-tx-icon svg {
    width: 20px;
    height: 20px;
  }

  .od-tx-title {
    font-size: 13px;
  }

  .od-tx-meta {
    font-size: 10px;
  }

  .od-tx-amounts {
    min-width: 88px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .od-tx-main {
    padding-inline: 11px;
  }

  .od-tx-select__btn {
    font-size: 15px;
  }

  .od-tx-card {
    gap: 8px;
  }

  .od-tx-amounts {
    min-width: 76px;
  }
}
/* =========================================================
   ODDEMINBET FIRST DEPOSIT BONUS PAGE
   File to append: /assets/css/user.css
   Page: /user/bonus.php
   ========================================================= */

body.odb-page {
    background:
        radial-gradient(circle at 50% -12%, rgba(35, 232, 132, 0.10), transparent 31%),
        radial-gradient(circle at 100% 8%, rgba(165, 118, 255, 0.09), transparent 28%),
        linear-gradient(180deg, var(--od-bg, #202827), var(--od-page, #202827));
    padding-bottom: calc(74px + var(--od-safe-bottom, 0px));
}

.odb-page svg {
    width: 100%;
    height: 100%;
    display: block;
}

.odb-svg-line {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

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

.odb-shell {
    width: 100%;
    min-height: 100vh;
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px calc(20px + var(--od-safe-bottom, 0px));
}

.odb-card {
    position: relative;
    overflow: hidden;
    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,.04), transparent 34%),
        var(--od-card, #303837);
    box-shadow: var(--od-shadow, 0 14px 34px rgba(0,0,0,.24));
}

.odb-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: .55;
    transform: translateX(-86%);
    animation: odbCardShine 6.5s ease-in-out infinite;
}

.odb-public-header {
    position: sticky;
    top: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 58px;
    padding: max(10px, env(safe-area-inset-top, 0px)) 12px 10px;
    border-bottom: 1px solid var(--od-line, rgba(255,255,255,.075));
    background:
        linear-gradient(180deg, rgba(32, 40, 39, .98), rgba(32, 40, 39, .92));
    backdrop-filter: blur(16px);
}

.odb-public-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.odb-public-logo {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(35,232,132,.18), rgba(165,118,255,.14));
    color: var(--od-green, #23e884);
    border: 1px solid rgba(35,232,132,.16);
}

.odb-public-logo svg {
    width: 21px;
    height: 21px;
    animation: odbIconFloat 3s ease-in-out infinite;
}

.odb-public-brand strong {
    display: block;
    color: var(--od-text, #f6fbfa);
    font-size: 14px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.2px;
}

.odb-public-brand small {
    display: block;
    margin-top: 3px;
    color: var(--od-muted, #aebbbb);
    font-size: 10px;
    line-height: 1;
    font-weight: 850;
}

.odb-public-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

.odb-public-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 0 10px;
    border-radius: 10px;
    color: var(--od-muted, #aebbbb);
    font-size: 11px;
    font-weight: 950;
    background: var(--od-card-soft, rgba(255,255,255,.055));
}

.odb-public-nav .odb-public-join {
    color: #06120c;
    background: linear-gradient(135deg, var(--od-green, #23e884), var(--od-green-2, #16c86f));
}

.odb-hero {
    display: grid;
    justify-items: center;
    text-align: center;
    min-height: 312px;
    padding: 24px 12px 14px;
    isolation: isolate;
}

.odb-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.odb-hero-bg span {
    position: absolute;
    display: block;
    width: 74px;
    height: 74px;
    border-radius: 26px;
    border: 1px solid rgba(35,232,132,.14);
    background: rgba(35,232,132,.05);
    filter: blur(.1px);
    animation: odbFloatBlock 8s ease-in-out infinite;
}

.odb-hero-bg span:nth-child(1) {
    left: -20px;
    top: 34px;
}

.odb-hero-bg span:nth-child(2) {
    right: -18px;
    top: 74px;
    animation-delay: -2s;
    background: rgba(165,118,255,.06);
    border-color: rgba(165,118,255,.14);
}

.odb-hero-bg span:nth-child(3) {
    width: 52px;
    height: 52px;
    left: 50%;
    bottom: 10px;
    animation-delay: -4s;
}

.odb-hero > *:not(.odb-hero-bg) {
    position: relative;
    z-index: 1;
}

.odb-hero-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 30%),
        linear-gradient(135deg, rgba(35,232,132,.20), rgba(165,118,255,.18));
    color: var(--od-green, #23e884);
    border: 1px solid rgba(35,232,132,.18);
    box-shadow: 0 0 0 6px rgba(35,232,132,.06), 0 18px 42px rgba(0,0,0,.22);
    animation: odbHeroIcon 3.4s ease-in-out infinite;
}

.odb-hero-icon svg {
    width: 36px;
    height: 36px;
}

.odb-kicker {
    margin-top: 13px;
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(35,232,132,.10);
    color: var(--od-green, #23e884);
    border: 1px solid rgba(35,232,132,.14);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.odb-hero h1 {
    max-width: 860px;
    margin: 12px 0 0;
    color: var(--od-text, #f6fbfa);
    font-size: clamp(24px, 5.5vw, 48px);
    line-height: .98;
    font-weight: 1000;
    letter-spacing: -1.3px;
}

.odb-hero p {
    max-width: 760px;
    margin: 11px auto 0;
    color: var(--od-muted, #aebbbb);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 850;
}

.odb-hero p strong {
    color: var(--od-green, #23e884);
    font-weight: 1000;
}

.odb-hero-formula {
    width: 100%;
    max-width: 650px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
}

.odb-hero-formula div {
    display: grid;
    gap: 3px;
    min-height: 60px;
    padding: 10px 5px;
    border-radius: 13px;
    background: var(--od-card-2, #2a3231);
    border: 1px solid var(--od-line, rgba(255,255,255,.075));
}

.odb-hero-formula span {
    color: var(--od-muted, #aebbbb);
    font-size: 10px;
    font-weight: 900;
}

.odb-hero-formula strong {
    color: var(--od-text, #f6fbfa);
    font-size: 18px;
    line-height: 1;
    font-weight: 1000;
}

.odb-hero-formula div:nth-of-type(2) strong {
    color: var(--od-green, #23e884);
}

.odb-hero-formula i {
    color: var(--od-green, #23e884);
    font-style: normal;
    font-size: 17px;
    font-weight: 1000;
}

.odb-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin-top: 15px;
}

.odb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 126px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 1000;
    transition: transform .16s ease, filter .16s ease;
}

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

.odb-btn-main {
    color: #06120c;
    background: linear-gradient(135deg, var(--od-green, #23e884), var(--od-green-2, #16c86f));
    box-shadow: 0 12px 28px rgba(35,232,132,.20);
}

.odb-btn-soft {
    color: var(--od-text, #f6fbfa);
    background: var(--od-dark-btn, #485453);
}

.odb-mini-icon {
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
}

.odb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.odb-info-box {
    display: grid;
    align-content: start;
    gap: 7px;
    min-height: 132px;
    padding: 12px;
}

.odb-info-box > * {
    position: relative;
    z-index: 1;
}

.odb-info-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 13px;
    color: var(--od-green, #23e884);
    background: rgba(35,232,132,.10);
    border: 1px solid rgba(35,232,132,.12);
}

.odb-info-icon svg {
    width: 22px;
    height: 22px;
    animation: odbIconFloat 3s ease-in-out infinite;
}

.odb-info-box strong {
    color: var(--od-text, #f6fbfa);
    font-size: 14px;
    line-height: 1;
    font-weight: 1000;
}

.odb-info-box p {
    margin: 0;
    color: var(--od-muted, #aebbbb);
    font-size: 11.5px;
    line-height: 1.38;
    font-weight: 820;
}

.odb-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    margin: 18px 2px 10px;
}

.odb-section-head span {
    display: block;
    color: var(--od-green, #23e884);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.odb-section-head h2 {
    margin: 4px 0 0;
    color: var(--od-text, #f6fbfa);
    font-size: 18px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -.4px;
}

.odb-section-head em {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--od-muted, #aebbbb);
    background: var(--od-card-soft, rgba(255,255,255,.055));
    border: 1px solid var(--od-line, rgba(255,255,255,.075));
    font-size: 10.5px;
    font-style: normal;
    font-weight: 950;
    white-space: nowrap;
}

.odb-currency-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.odb-currency-card {
    padding: 11px;
}

.odb-currency-card > * {
    position: relative;
    z-index: 1;
}

.odb-currency-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--od-line, rgba(255,255,255,.075));
}

.odb-currency-top strong {
    display: block;
    color: var(--od-text, #f6fbfa);
    font-size: 15px;
    line-height: 1;
    font-weight: 1000;
}

.odb-currency-top span {
    display: block;
    margin-top: 4px;
    color: var(--od-muted, #aebbbb);
    font-size: 10.5px;
    line-height: 1.15;
    font-weight: 820;
}

.odb-currency-top b {
    display: inline-grid;
    place-items: center;
    min-width: 36px;
    height: 31px;
    padding: 0 8px;
    border-radius: 11px;
    color: var(--od-green, #23e884);
    background: rgba(35,232,132,.09);
    border: 1px solid rgba(35,232,132,.13);
    font-size: 12px;
    font-weight: 1000;
    white-space: nowrap;
}

.odb-calc-row,
.odb-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
}

.odb-calc-row {
    min-height: 32px;
    color: var(--od-muted, #aebbbb);
    font-size: 11px;
    font-weight: 850;
}

.odb-calc-row strong {
    color: var(--od-text, #f6fbfa);
    font-size: 12px;
    font-weight: 1000;
    white-space: nowrap;
}

.odb-calc-row.odb-good strong {
    color: var(--od-green, #23e884);
}

.odb-total-row {
    margin-top: 7px;
    min-height: 39px;
    padding: 0 9px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(35,232,132,.12), rgba(35,232,132,.05));
    border: 1px solid rgba(35,232,132,.14);
}

.odb-total-row span {
    color: var(--od-muted, #aebbbb);
    font-size: 11px;
    font-weight: 900;
}

.odb-total-row strong {
    color: var(--od-green, #23e884);
    font-size: 13px;
    font-weight: 1000;
    white-space: nowrap;
}

.odb-example {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 13px;
}

.odb-example > * {
    position: relative;
    z-index: 1;
}

.odb-example-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    color: #06120c;
    background: linear-gradient(135deg, var(--od-green, #23e884), var(--od-green-2, #16c86f));
    box-shadow: 0 12px 28px rgba(35,232,132,.18);
}

.odb-example-icon svg {
    width: 28px;
    height: 28px;
    animation: odbIconFloat 3s ease-in-out infinite;
}

.odb-example-text {
    min-width: 0;
}

.odb-example-text span {
    display: block;
    color: var(--od-green, #23e884);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.odb-example-text h2 {
    margin: 4px 0 0;
    color: var(--od-text, #f6fbfa);
    font-size: 18px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -.3px;
}

.odb-example-text p {
    margin: 6px 0 0;
    color: var(--od-muted, #aebbbb);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 820;
}

.odb-rules {
    margin-top: 12px;
    padding: 13px;
}

.odb-rules > * {
    position: relative;
    z-index: 1;
}

.odb-rules-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.odb-rules-head span:not(.odb-info-icon) {
    display: block;
    color: var(--od-green, #23e884);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.odb-rules-head h2 {
    margin: 3px 0 0;
    color: var(--od-text, #f6fbfa);
    font-size: 17px;
    line-height: 1;
    font-weight: 1000;
}

.odb-rule-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.odb-rule-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 8px 9px;
    border-radius: 12px;
    background: var(--od-card-2, #2a3231);
    border: 1px solid var(--od-line, rgba(255,255,255,.075));
}

.odb-rule-list b {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 9px;
    color: #06120c;
    background: var(--od-green, #23e884);
    font-size: 11px;
    font-weight: 1000;
}

.odb-rule-list p {
    margin: 0;
    color: var(--od-muted, #aebbbb);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 830;
}

.odb-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 12px;
    padding: 11px 12px;
    border-radius: 15px;
    background: rgba(35,232,132,.07);
    border: 1px solid rgba(35,232,132,.13);
}

.odb-note-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 11px;
    color: var(--od-green, #23e884);
    background: rgba(35,232,132,.10);
}

.odb-note-icon svg {
    width: 19px;
    height: 19px;
}

.odb-note p {
    margin: 0;
    color: var(--od-muted, #aebbbb);
    font-size: 11.5px;
    line-height: 1.4;
    font-weight: 820;
}

.odb-public-bottom {
    position: fixed;
    left: 50%;
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    z-index: 95;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 24px);
    max-width: 420px;
    padding: 7px;
    border-radius: 18px;
    background: rgba(42, 50, 49, .92);
    border: 1px solid var(--od-line, rgba(255,255,255,.075));
    box-shadow: 0 18px 44px rgba(0,0,0,.28);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.odb-public-bottom a {
    display: grid;
    justify-items: center;
    gap: 4px;
    min-height: 47px;
    padding: 7px 3px 5px;
    border-radius: 13px;
    color: var(--od-muted, #aebbbb);
    font-size: 10px;
    font-weight: 950;
}

.odb-public-bottom a.active {
    color: var(--od-green, #23e884);
    background: rgba(35,232,132,.08);
}

.odb-public-bottom span {
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
}

.odb-public-bottom svg {
    width: 21px;
    height: 21px;
}

@media (min-width: 721px) {
    .odb-shell {
        width: 100%;
        max-width: none;
        padding-left: 22px;
        padding-right: 22px;
    }

    .odb-hero {
        min-height: 330px;
    }

    .odb-grid-3,
    .odb-currency-grid,
    .odb-example,
    .odb-rules,
    .odb-note {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .odb-currency-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .odb-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .odb-shell {
        padding-left: 10px;
        padding-right: 10px;
    }

    .odb-public-nav a {
        min-height: 29px;
        padding: 0 8px;
        font-size: 10px;
    }

    .odb-public-nav a:first-child {
        display: none;
    }

    .odb-hero {
        min-height: 300px;
        padding: 20px 10px 13px;
    }

    .odb-hero-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .odb-hero-icon svg {
        width: 32px;
        height: 32px;
    }

    .odb-hero h1 {
        font-size: 27px;
        letter-spacing: -.9px;
    }

    .odb-hero p {
        font-size: 12px;
    }

    .odb-hero-formula {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .odb-hero-formula i {
        display: none;
    }

    .odb-hero-formula div {
        min-height: 49px;
        grid-template-columns: 1fr auto;
        align-items: center;
        text-align: left;
        padding: 0 11px;
    }

    .odb-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .odb-btn {
        width: 100%;
        min-width: 0;
        min-height: 40px;
        font-size: 12px;
    }

    .odb-currency-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .odb-info-box {
        min-height: 96px;
    }

    .odb-section-head h2 {
        font-size: 16px;
    }

    .odb-example {
        align-items: flex-start;
    }

    .odb-example-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 14px;
    }

    .odb-example-icon svg {
        width: 24px;
        height: 24px;
    }
}

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

@keyframes odbIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-1.4px) scale(1.03);
    }
}

@keyframes odbHeroIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: translateY(-4px) rotate(-2deg);
        filter: brightness(1.08);
    }
}

@keyframes odbFloatBlock {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: .65;
    }
    50% {
        transform: translate3d(12px, -10px, 0) rotate(8deg);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .odb-card::before,
    .odb-public-logo svg,
    .odb-info-icon svg,
    .odb-example-icon svg,
    .odb-hero-bg span,
    .odb-hero-icon {
        animation: none !important;
    }
}
.od-title-copy {
  min-width: 0;
}

.od-title-copy small {
  display: block;
  margin-bottom: 4px;
  color: #23e884;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.od-flow-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 9px;
}

.od-flow-heading span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: rgba(35, 232, 132, 0.11);
  color: #23e884;
  font-size: 10px;
  font-weight: 1000;
}

.od-flow-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 1000;
}

.od-next-list {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.od-next-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(35, 232, 132, 0.16);
  border-left: 3px solid #23e884;
  border-radius: 12px;
  background: #303837;
  color: #fff;
  text-decoration: none;
}

.od-next-item > div {
  min-width: 0;
}

.od-next-item small {
  display: block;
  overflow: hidden;
  margin-bottom: 4px;
  color: #aebbbb;
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.od-next-item strong {
  display: block;
  overflow: hidden;
  font-size: 12px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.od-next-item strong i {
  margin: 0 4px;
  color: #23e884;
  font-size: 9px;
  font-style: normal;
}

.od-next-item > span {
  flex: 0 0 auto;
  color: #23e884;
  font-size: 10px;
  font-weight: 950;
}

/* Align each match card */
.od-upcoming-page .match-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 42%);
  grid-template-areas:
    "top top"
    "kickoff market"
    "teams odds";
  column-gap: 10px;
  row-gap: 7px;
  padding: 11px;
}

.od-upcoming-page .match-top {
  grid-area: top;
  min-width: 0;
  margin: 0;
}

.od-upcoming-page .kickoff-line {
  grid-area: kickoff;
  align-self: center;
  margin: 0;
  font-size: 10px;
}

.od-upcoming-page .team-list {
  grid-area: teams;
  align-self: center;
  gap: 8px;
  margin: 0;
}

.od-upcoming-page .market-label {
  grid-area: market;
  align-self: center;
  margin: 0;
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
}

.od-upcoming-page .match-odds {
  grid-area: odds;
  align-self: stretch;
  gap: 5px;
}

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

.od-upcoming-page .team-logo {
  width: 23px;
  height: 23px;
}

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

.od-upcoming-page .odd-box {
  min-width: 0;
  min-height: 66px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 5px 2px;
}

.od-upcoming-page .odd-box small {
  font-size: 9px;
}

.od-upcoming-page .odd-box span {
  font-size: 11px;
}

@media (max-width: 370px) {
  .od-upcoming-page .match-row {
    grid-template-columns: minmax(0, 1fr) 124px;
    column-gap: 7px;
  }
}