/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================
   MainLayout — Esports Broadcast
   Background, header, footer
   ============================================ */

/* ---------- background ----------
   No filter:blur (radial-gradient is already soft), no canvas.
   Drift animates transform only => compositor work, no repaints.
   Animation is switched off on touch devices to save battery. */
.bg-stage[b-pgxwcevs0r] {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow[b-pgxwcevs0r] {
    position: absolute;
    will-change: transform;
}

.glow.g1[b-pgxwcevs0r] {
    width: 72vw;
    height: 50vw;
    left: -16vw;
    top: -20vw;
    background: radial-gradient(ellipse closest-side, rgba(214, 249, 55, 0.075), transparent 68%);
    animation: drift1-b-pgxwcevs0r 44s ease-in-out infinite alternate;
}

.glow.g2[b-pgxwcevs0r] {
    width: 56vw;
    height: 40vw;
    right: -16vw;
    top: 4vw;
    background: radial-gradient(ellipse closest-side, rgba(61, 220, 125, 0.055), transparent 68%);
    animation: drift2-b-pgxwcevs0r 56s ease-in-out infinite alternate;
}

.glow.g3[b-pgxwcevs0r] {
    width: 50vw;
    height: 36vw;
    left: 26vw;
    bottom: -24vw;
    background: radial-gradient(ellipse closest-side, rgba(120, 160, 255, 0.04), transparent 68%);
    animation: drift1-b-pgxwcevs0r 64s ease-in-out infinite alternate-reverse;
}

@keyframes drift1-b-pgxwcevs0r {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(6vw, 4vw, 0) scale(1.08); }
}

@keyframes drift2-b-pgxwcevs0r {
    from { transform: translate3d(0, 0, 0) scale(1.04); }
    to   { transform: translate3d(-5vw, 5vw, 0) scale(0.95); }
}

@media (hover: none) {
    .glow[b-pgxwcevs0r] {
        animation: none;
    }
}

.bg-grid[b-pgxwcevs0r] {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 80%);
}

/* ---------- layout shell ---------- */
.shell[b-pgxwcevs0r] {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-body[b-pgxwcevs0r] {
    flex: 1;
}

/* ---------- header ---------- */
.topbar[b-pgxwcevs0r] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0 18px;
}

.brand[b-pgxwcevs0r] {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.brand-mark[b-pgxwcevs0r] {
    width: 48px;
    height: 44px;
    flex: none;
    display: grid;
    place-items: center;
}

.brand-mark img[b-pgxwcevs0r] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-name[b-pgxwcevs0r] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 1;
    text-transform: uppercase;
}

.brand-name em[b-pgxwcevs0r] {
    color: var(--lime);
    font-style: italic;
}

.brand-sub[b-pgxwcevs0r] {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.34em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 3px;
}

.topstats[b-pgxwcevs0r] {
    display: flex;
    align-items: stretch;
}

.topstat[b-pgxwcevs0r] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4px 22px;
    position: relative;
}

.topstat + .topstat[b-pgxwcevs0r]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--line);
    transform: skewX(var(--skew));
}

.topstat b[b-pgxwcevs0r] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}

.topstat b.money[b-pgxwcevs0r] {
    color: var(--lime);
}

.topstat span[b-pgxwcevs0r] {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--faint);
    text-transform: uppercase;
}

.updated[b-pgxwcevs0r] {
    font-size: 11px;
    color: var(--faint);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.updated svg[b-pgxwcevs0r] {
    flex: none;
}

/* ---------- footer ---------- */
.foot[b-pgxwcevs0r] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 4px 22px;
    margin-top: 14px;
    border-top: 1px solid var(--line-soft);
    color: var(--faint);
    font-size: 12px;
}

.foot-left[b-pgxwcevs0r] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age[b-pgxwcevs0r] {
    width: 34px;
    height: 34px;
    flex: none;
    border: 1.5px solid var(--faint);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--muted);
}

.foot-disclaimer[b-pgxwcevs0r] {
    margin: 0;
    line-height: 1.5;
}

.foot a[b-pgxwcevs0r] {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}

.foot a:hover[b-pgxwcevs0r] {
    color: var(--text);
}

.foot-links[b-pgxwcevs0r] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.foot-sep[b-pgxwcevs0r] {
    color: var(--line);
}

.foot-copy[b-pgxwcevs0r] {
    margin: 0;
    font-size: 11px;
    color: var(--faint);
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .topstats[b-pgxwcevs0r] {
        display: none;
    }
}

@media (max-width: 680px) {
    .shell[b-pgxwcevs0r] {
        padding: 0 14px;
    }

    .topbar[b-pgxwcevs0r] {
        padding: 16px 0 12px;
    }

    .brand-mark[b-pgxwcevs0r] {
        width: 42px;
        height: 38px;
    }

    .brand-name[b-pgxwcevs0r] {
        font-size: 20px;
    }

    .foot[b-pgxwcevs0r] {
        padding: 20px 2px 18px;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-v2ed1azihi],
.components-reconnect-repeated-attempt-visible[b-v2ed1azihi],
.components-reconnect-failed-visible[b-v2ed1azihi],
.components-pause-visible[b-v2ed1azihi],
.components-resume-failed-visible[b-v2ed1azihi],
.components-rejoining-animation[b-v2ed1azihi] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-v2ed1azihi],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-v2ed1azihi],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-v2ed1azihi],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-v2ed1azihi],
#components-reconnect-modal.components-reconnect-retrying[b-v2ed1azihi],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-v2ed1azihi],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-v2ed1azihi],
#components-reconnect-modal.components-reconnect-failed[b-v2ed1azihi],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-v2ed1azihi] {
    display: block;
}


#components-reconnect-modal[b-v2ed1azihi] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-v2ed1azihi 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-v2ed1azihi 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-v2ed1azihi 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-v2ed1azihi]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-v2ed1azihi 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-v2ed1azihi {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-v2ed1azihi {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-v2ed1azihi {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-v2ed1azihi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-v2ed1azihi] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-v2ed1azihi] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-v2ed1azihi] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-v2ed1azihi] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-v2ed1azihi] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-v2ed1azihi] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-v2ed1azihi 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-v2ed1azihi] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-v2ed1azihi {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ============================================
   Home — chip rail, loading / empty states, legend
   ============================================ */

.leaderboard-page[b-tnetq15e75] {
    padding-bottom: 10px;
}

/* ---------- loading state ---------- */
.loading-state[b-tnetq15e75] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 90px 16px;
}

.loading-bar[b-tnetq15e75] {
    width: 180px;
    height: 3px;
    background: var(--line);
    overflow: hidden;
    transform: skewX(var(--skew));
}

.loading-bar i[b-tnetq15e75] {
    display: block;
    width: 40%;
    height: 100%;
    background: var(--lime);
    animation: loadingSlide-b-tnetq15e75 1.1s ease-in-out infinite;
}

@keyframes loadingSlide-b-tnetq15e75 {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

.loading-text[b-tnetq15e75] {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- empty state ---------- */
.empty-state[b-tnetq15e75] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 90px 16px;
    color: var(--faint);
    text-align: center;
}

.empty-title[b-tnetq15e75] {
    margin: 6px 0 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
}

.empty-text[b-tnetq15e75] {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted);
}

/* ---------- giveaway chip rail ---------- */
.rail-wrap[b-tnetq15e75] {
    position: relative;
    margin: 6px 0 22px;
}

.rail[b-tnetq15e75] {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 6px 2px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.rail[b-tnetq15e75]::-webkit-scrollbar {
    display: none;
}

.rail.dragging[b-tnetq15e75] {
    cursor: grabbing;
    scroll-snap-type: none;
}

.chip[b-tnetq15e75] {
    flex: none;
    scroll-snap-align: center;
    border: 1px solid var(--line);
    background: var(--panel);
    transform: skewX(var(--skew));
    cursor: pointer;
    padding: 9px 20px;
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
    max-width: 320px;
}

.chip > span[b-tnetq15e75] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: skewX(var(--unskew));
    max-width: 100%;
}

.chip-label[b-tnetq15e75] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chip:hover[b-tnetq15e75] {
    border-color: #39414a;
    color: var(--text);
}

.chip.active[b-tnetq15e75] {
    background: var(--lime);
    border-color: var(--lime);
    color: #0a0b0d;
    font-weight: 700;
}

.chip-level[b-tnetq15e75] {
    flex: none;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 2px 7px;
    border: 1px solid currentColor;
    border-radius: 2px;
    opacity: 0.65;
    white-space: nowrap;
}

/* status dots (shared with legend) */
.status-dot[b-tnetq15e75] {
    flex: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: relative;
}

.status-dot.active[b-tnetq15e75] {
    background: var(--status-active);
}

.status-dot.finished[b-tnetq15e75] {
    background: var(--status-finished);
}

.status-dot.completed[b-tnetq15e75] {
    background: var(--status-completed);
    opacity: 0.55;
}

/* live pulse only on active giveaways */
.chip .status-dot.active[b-tnetq15e75]::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid rgba(61, 220, 125, 0.55);
    animation: pulse-b-tnetq15e75 1.6s ease-out infinite;
}

/* selected chip: dark dot on lime */
.chip.active .status-dot.active[b-tnetq15e75] {
    background: #0a0b0d;
}

.chip.active .status-dot.active[b-tnetq15e75]::after {
    border-color: rgba(10, 11, 13, 0.45);
}

@keyframes pulse-b-tnetq15e75 {
    0%   { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- status legend ---------- */
.legend[b-tnetq15e75] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 16px 0 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--faint);
    flex-wrap: wrap;
}

.legend-item[b-tnetq15e75] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* ---------- responsive ---------- */
@media (max-width: 680px) {
    .rail-wrap[b-tnetq15e75] {
        margin: 2px 0 16px;
    }

    .chip[b-tnetq15e75] {
        padding: 9px 16px;
        font-size: 12px;
        max-width: 260px;
    }

    .legend[b-tnetq15e75] {
        gap: 14px;
    }
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.nf[b-jrlrumo8dr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 16px 100px;
    gap: 10px;
}

.nf-code[b-jrlrumo8dr] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(72px, 16vw, 130px);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--text);
}

.nf-code span[b-jrlrumo8dr] {
    color: var(--lime);
}

.nf-title[b-jrlrumo8dr] {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nf-text[b-jrlrumo8dr] {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted);
}

.nf-btn[b-jrlrumo8dr] {
    margin-top: 18px;
    display: inline-block;
    background: var(--lime);
    color: #0a0b0d;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    padding: 11px 26px;
    transform: skewX(var(--skew));
    transition: background var(--transition-fast);
}

.nf-btn span[b-jrlrumo8dr] {
    display: inline-block;
    transform: skewX(var(--unskew));
}

.nf-btn:hover[b-jrlrumo8dr] {
    background: #e6ff5c;
    color: #0a0b0d;
}
/* /Components/Shared/GiveawayCard.razor.rz.scp.css */
/* ============================================
   GiveawayCard — hero panel (esports broadcast)
   ============================================ */

.hero[b-8ae5jo1wpt] {
    position: relative;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
    padding: 30px 34px 28px;
    margin-bottom: 26px;
    overflow: hidden;
}

.hero[b-8ae5jo1wpt]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--muted), transparent 55%);
}

.hero.is-active[b-8ae5jo1wpt]::before {
    background: linear-gradient(90deg, var(--lime), transparent 55%);
}

.hero-scan[b-8ae5jo1wpt] {
    position: absolute;
    right: -60px;
    top: -40px;
    width: 340px;
    height: 300px;
    background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 12px);
    pointer-events: none;
}

.hero-grid[b-8ae5jo1wpt] {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-main[b-8ae5jo1wpt] {
    min-width: 0;
}

.hero-title[b-8ae5jo1wpt] {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow-wrap: anywhere;
}

.hero-title .num[b-8ae5jo1wpt] {
    color: var(--lime);
}

.hero-meta-row[b-8ae5jo1wpt] {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.dates[b-8ae5jo1wpt] {
    font-size: 13px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* status badge */
.badge-status[b-8ae5jo1wpt] {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 12px;
    transform: skewX(var(--skew));
    border: 1px solid var(--line);
    color: var(--muted);
}

.badge-status > span[b-8ae5jo1wpt] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transform: skewX(var(--unskew));
}

.badge-status.active[b-8ae5jo1wpt] {
    color: var(--status-active);
    border-color: rgba(61, 220, 125, 0.35);
    background: rgba(61, 220, 125, 0.08);
}

.badge-status.active i[b-8ae5jo1wpt] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--status-active);
    box-shadow: 0 0 8px var(--status-active);
    animation: blink-b-8ae5jo1wpt 2s ease-in-out infinite;
}

@keyframes blink-b-8ae5jo1wpt {
    50% { opacity: 0.4; }
}

.badge-status.finished[b-8ae5jo1wpt] {
    color: var(--status-finished);
    border-color: rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.07);
}

.badge-status.completed[b-8ae5jo1wpt] {
    color: var(--status-completed);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.02);
}

/* meta chips */
.hero-chips[b-8ae5jo1wpt] {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.meta-chip[b-8ae5jo1wpt] {
    display: flex;
    align-items: center;
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.02);
    padding: 9px 16px;
    transform: skewX(var(--skew));
}

.meta-chip > div[b-8ae5jo1wpt] {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: skewX(var(--unskew));
}

.meta-chip svg[b-8ae5jo1wpt] {
    color: var(--lime);
    flex: none;
}

.meta-chip b[b-8ae5jo1wpt] {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    display: block;
    white-space: nowrap;
}

.meta-chip span[b-8ae5jo1wpt] {
    display: block;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--faint);
    text-transform: uppercase;
}

/* prize pool */
.prize-pool[b-8ae5jo1wpt] {
    text-align: right;
    flex: none;
}

.prize-pool .label[b-8ae5jo1wpt] {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
}

.prize-pool .amount[b-8ae5jo1wpt] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(40px, 5.5vw, 60px);
    line-height: 1.05;
    color: var(--lime);
    font-variant-numeric: tabular-nums;
}

.hero.is-active .prize-pool .amount[b-8ae5jo1wpt] {
    text-shadow: 0 0 34px rgba(214, 249, 55, 0.3);
}

/* ---------- responsive ---------- */
@media (max-width: 680px) {
    .hero[b-8ae5jo1wpt] {
        padding: 20px 18px;
        clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
        margin-bottom: 18px;
    }

    .hero-grid[b-8ae5jo1wpt] {
        gap: 18px;
    }

    .prize-pool[b-8ae5jo1wpt] {
        order: -1;
        width: 100%;
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 14px;
        border-bottom: 1px solid var(--line-soft);
        padding-bottom: 14px;
    }

    .prize-pool .amount[b-8ae5jo1wpt] {
        font-size: 40px;
    }

    .hero-chips[b-8ae5jo1wpt] {
        gap: 8px;
        margin-top: 14px;
    }

    .meta-chip[b-8ae5jo1wpt] {
        padding: 8px 13px;
    }
}
/* /Components/Shared/LeaderboardTable.razor.rz.scp.css */
/* ============================================
   LeaderboardTable — podium cards + board (esports broadcast)
   ============================================ */

/* ---------- empty state ---------- */
.empty-state[b-op4hbxlat0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 56px 16px;
    color: var(--faint);
    text-align: center;
}

.empty-text[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
}

.empty-subtext[b-op4hbxlat0] {
    font-size: 13px;
    color: var(--muted);
}

/* ---------- section label ---------- */
.section-label[b-op4hbxlat0] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

.section-label[b-op4hbxlat0]::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--line), transparent);
}

.section-label .tick[b-op4hbxlat0] {
    width: 14px;
    height: 14px;
    background: var(--lime);
    clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}

/* ---------- podium ---------- */
.podium[b-op4hbxlat0] {
    display: grid;
    grid-template-columns: 1fr 1.16fr 1fr;
    gap: 14px;
    align-items: stretch;
    margin-bottom: 26px;
}

.podium.count-2[b-op4hbxlat0] {
    grid-template-columns: 1fr 1.16fr;
}

.podium.count-1[b-op4hbxlat0] {
    grid-template-columns: minmax(0, 460px);
    justify-content: center;
}

.pcard[b-op4hbxlat0] {
    --metal: var(--silver);
    position: relative;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    padding: 16px 18px 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(14px);
    animation: rise-b-op4hbxlat0 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.pcard.clickable[b-op4hbxlat0] {
    cursor: pointer;
}

.pcard.rank2[b-op4hbxlat0] { animation-delay: 0.15s; }
.pcard.rank1[b-op4hbxlat0] { animation-delay: 0.05s; }
.pcard.rank3[b-op4hbxlat0] { animation-delay: 0.25s; }

@keyframes rise-b-op4hbxlat0 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pcard .ghost[b-op4hbxlat0] {
    position: absolute;
    right: -4px;
    bottom: -26px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 104px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
    user-select: none;
    pointer-events: none;
}

.pcard .edge[b-op4hbxlat0] {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--metal), transparent 70%);
}

.pcard.rank1[b-op4hbxlat0] {
    --metal: var(--lime);
    border-color: rgba(214, 249, 55, 0.5);
}

.pcard.rank1 .ghost[b-op4hbxlat0] {
    -webkit-text-stroke: 1px rgba(214, 249, 55, 0.16);
}

.pcard.rank3[b-op4hbxlat0] {
    --metal: var(--bronze);
}

.pcard.clickable:hover[b-op4hbxlat0] {
    border-color: #39414a;
}

.pcard.rank1.clickable:hover[b-op4hbxlat0] {
    border-color: rgba(214, 249, 55, 0.75);
}

/* identity row: broadcast-style rank mark (// slashes + number) + nick/level */
.p-row[b-op4hbxlat0] {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.rank-mark[b-op4hbxlat0] {
    flex: none;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--metal);
}

.rank-mark .slashes[b-op4hbxlat0] {
    display: flex;
    gap: 3px;
}

.rank-mark .slashes i[b-op4hbxlat0] {
    width: 7px;
    height: 30px;
    background: currentColor;
    clip-path: polygon(58% 0, 100% 0, 42% 100%, 0 100%);
}

.rank-mark .slashes i:nth-child(2)[b-op4hbxlat0] { opacity: 0.55; }
.rank-mark .slashes i:nth-child(3)[b-op4hbxlat0] { opacity: 0.25; }

.rank-mark b[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
}

.pcard.rank1 .rank-mark b[b-op4hbxlat0] {
    text-shadow: 0 0 16px rgba(214, 249, 55, 0.45);
}

.p-icons[b-op4hbxlat0] {
    margin-left: auto;
    flex: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crown[b-op4hbxlat0] {
    color: var(--lime);
    filter: drop-shadow(0 0 6px rgba(214, 249, 55, 0.6));
    animation: crownFloat-b-op4hbxlat0 3s ease-in-out infinite;
}

@keyframes crownFloat-b-op4hbxlat0 {
    50% { transform: translateY(-3px); }
}

.chev[b-op4hbxlat0] {
    color: var(--faint);
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.pcard.expanded .chev[b-op4hbxlat0],
.t-row.expanded .chev[b-op4hbxlat0] {
    transform: rotate(180deg);
    color: var(--lime);
}

.p-id[b-op4hbxlat0] {
    min-width: 0;
}

.p-nick[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.p-nick .nick-text[b-op4hbxlat0] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.verified[b-op4hbxlat0] {
    color: var(--lime);
    flex: none;
}

.p-id .lvl[b-op4hbxlat0] {
    margin-top: 7px;
}

.p-nums[b-op4hbxlat0] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

.p-wager span[b-op4hbxlat0],
.p-prize span[b-op4hbxlat0] {
    display: block;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--faint);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.p-wager b[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.p-prize[b-op4hbxlat0] {
    text-align: right;
}

.p-prize b[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
    color: var(--lime);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.p-prize b small[b-op4hbxlat0] {
    font-weight: 500;
    font-size: 13px;
    color: rgba(214, 249, 55, 0.65);
}

.pcard.rank1 .p-prize b[b-op4hbxlat0] {
    font-size: 23px;
    text-shadow: 0 0 18px rgba(214, 249, 55, 0.35);
}

.pcard .baseline[b-op4hbxlat0] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--metal);
    opacity: 0.85;
}

/* ---------- podium currency detail (below the grid) ---------- */
.pdetail[b-op4hbxlat0] {
    border: 1px solid var(--line);
    border-left: 3px solid var(--lime);
    background: var(--panel);
    padding: 14px 18px 16px;
    margin: -12px 0 26px;
}

.pdetail-head[b-op4hbxlat0] {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.pdetail-rank[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 15px;
    color: var(--lime);
}

.pdetail-nick[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
}

.pdetail-label[b-op4hbxlat0] {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--faint);
    margin-left: auto;
}

/* ---------- board (ranks 4+) ---------- */
.board[b-op4hbxlat0] {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(22, 25, 29, 0.97), rgba(18, 20, 23, 0.97));
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
    margin-bottom: 10px;
}

.t-head[b-op4hbxlat0],
.t-row[b-op4hbxlat0] {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 150px 190px;
    gap: 14px;
    align-items: center;
    padding: 0 26px;
}

.t-head[b-op4hbxlat0] {
    height: 46px;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--faint);
}

.t-head .h-wager[b-op4hbxlat0],
.t-row .c-wager[b-op4hbxlat0] {
    text-align: right;
}

.t-head .h-prize[b-op4hbxlat0],
.t-row .c-prize[b-op4hbxlat0] {
    text-align: right;
}

.t-head .h-prize[b-op4hbxlat0] {
    color: var(--lime);
}

.t-row[b-op4hbxlat0] {
    min-height: 62px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
    transition: background var(--transition-fast);
}

.t-row:last-child[b-op4hbxlat0] {
    border-bottom: none;
}

.t-row[b-op4hbxlat0]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--lime);
    transform: scaleY(0);
    transition: transform var(--transition-fast);
    transform-origin: center;
}

.t-row.clickable[b-op4hbxlat0] {
    cursor: pointer;
}

.t-row:hover[b-op4hbxlat0] {
    background: rgba(255, 255, 255, 0.025);
}

.t-row:hover[b-op4hbxlat0]::before,
.t-row.expanded[b-op4hbxlat0]::before {
    transform: scaleY(1);
}

.c-rank[b-op4hbxlat0] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-rank b[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
    min-width: 26px;
}

.c-rank .slash[b-op4hbxlat0] {
    width: 10px;
    height: 16px;
    background: var(--line);
    clip-path: polygon(60% 0, 100% 0, 40% 100%, 0 100%);
}

.c-player[b-op4hbxlat0] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.c-player .chev[b-op4hbxlat0] {
    flex: none;
}

.c-player .nick[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c-wager[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.c-prize[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--lime);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.c-prize small[b-op4hbxlat0] {
    font-weight: 500;
    font-size: 12.5px;
    color: rgba(214, 249, 55, 0.65);
}

/* ---------- inline currency detail row ---------- */
.t-detail[b-op4hbxlat0] {
    border-bottom: 1px solid var(--line-soft);
    border-left: 3px solid var(--lime);
    background: rgba(214, 249, 55, 0.025);
    padding: 12px 23px 14px;
}

.currency-scroll[b-op4hbxlat0] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.currency-table[b-op4hbxlat0] {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 12.5px;
}

.currency-table th[b-op4hbxlat0] {
    text-align: left;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--faint);
    padding: 6px 10px;
    border-bottom: 1px solid var(--line-soft);
    white-space: nowrap;
}

.currency-table td[b-op4hbxlat0] {
    padding: 7px 10px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.currency-table tbody tr:last-child td[b-op4hbxlat0] {
    border-bottom: none;
}

.currency-table .num[b-op4hbxlat0] {
    text-align: right;
    font-family: ui-monospace, 'Cascadia Mono', Consolas, monospace;
    font-size: 12px;
}

.currency-table .currency-name[b-op4hbxlat0] {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.06em;
}

/* ============================================
   Responsive: tablet
   ============================================ */
@media (max-width: 980px) {
    .podium[b-op4hbxlat0] {
        gap: 12px;
    }

    .pcard[b-op4hbxlat0] {
        padding: 13px 14px 12px;
    }

    .pcard .ghost[b-op4hbxlat0] {
        font-size: 80px;
        bottom: -18px;
    }

    .rank-mark b[b-op4hbxlat0] {
        font-size: 29px;
    }

    .rank-mark .slashes i[b-op4hbxlat0] {
        height: 25px;
    }

    .p-nick[b-op4hbxlat0] {
        font-size: 15px;
    }

    .p-prize b[b-op4hbxlat0] {
        font-size: 17px;
    }

    .pcard.rank1 .p-prize b[b-op4hbxlat0] {
        font-size: 19px;
    }

    .t-head[b-op4hbxlat0],
    .t-row[b-op4hbxlat0] {
        grid-template-columns: 64px minmax(0, 1fr) 110px 150px;
        padding: 0 18px;
    }

    .t-detail[b-op4hbxlat0] {
        padding: 10px 15px 12px;
    }
}

/* ============================================
   Responsive: mobile
   ============================================ */
@media (max-width: 680px) {
    /* podium becomes a tight vertical stack, champion first */
    .podium[b-op4hbxlat0],
    .podium.count-2[b-op4hbxlat0],
    .podium.count-1[b-op4hbxlat0] {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 12px;
    }

    .pcard[b-op4hbxlat0] {
        order: 2;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 11px 13px;
    }

    .pcard.rank1[b-op4hbxlat0] { order: 1; }
    .pcard.rank3[b-op4hbxlat0] { order: 3; }

    .pcard .ghost[b-op4hbxlat0] {
        font-size: 64px;
        bottom: -14px;
        right: -2px;
    }

    .p-row[b-op4hbxlat0] {
        flex: 1;
        gap: 10px;
    }

    .rank-mark[b-op4hbxlat0] {
        gap: 7px;
    }

    .rank-mark b[b-op4hbxlat0] {
        font-size: 24px;
    }

    .rank-mark .slashes[b-op4hbxlat0] {
        gap: 2px;
    }

    .rank-mark .slashes i[b-op4hbxlat0] {
        height: 20px;
        width: 6px;
    }

    .p-icons[b-op4hbxlat0] {
        gap: 7px;
    }

    .crown[b-op4hbxlat0] {
        width: 15px;
        height: 15px;
    }

    .p-nick[b-op4hbxlat0] {
        font-size: 14.5px;
        gap: 6px;
    }

    .p-id .lvl[b-op4hbxlat0] {
        margin-top: 4px;
    }

    .p-nums[b-op4hbxlat0] {
        flex: none;
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
        text-align: right;
    }

    .p-wager span[b-op4hbxlat0],
    .p-prize span[b-op4hbxlat0] {
        display: none;
    }

    .p-wager b[b-op4hbxlat0] {
        font-size: 12.5px;
    }

    .p-prize b[b-op4hbxlat0] {
        font-size: 16.5px;
    }

    .pcard.rank1 .p-prize b[b-op4hbxlat0] {
        font-size: 18px;
    }

    .pcard .baseline[b-op4hbxlat0] {
        width: 3px;
        height: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
    }

    .pdetail[b-op4hbxlat0] {
        margin: -4px 0 16px;
        padding: 12px 13px 13px;
    }

    /* table collapses to 2-line rows */
    .t-head[b-op4hbxlat0] {
        display: none;
    }

    .t-row[b-op4hbxlat0] {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        grid-template-areas:
            "rank player prize"
            "rank player wager";
        min-height: 0;
        padding: 12px 14px;
        row-gap: 2px;
    }

    .c-rank[b-op4hbxlat0] {
        grid-area: rank;
        gap: 6px;
    }

    .c-rank .slash[b-op4hbxlat0] {
        display: none;
    }

    .c-player[b-op4hbxlat0] {
        grid-area: player;
        flex-wrap: wrap;
        gap: 4px 8px;
    }

    /* expand affordance on mobile = lime bar + tap; caret breaks the 2-line grid */
    .c-player .chev[b-op4hbxlat0] {
        display: none;
    }

    .c-player .nick[b-op4hbxlat0] {
        font-size: 15px;
        width: 100%;
    }

    .c-wager[b-op4hbxlat0] {
        grid-area: wager;
        font-size: 12px;
    }

    .c-prize[b-op4hbxlat0] {
        grid-area: prize;
        font-size: 15px;
    }

    .t-detail[b-op4hbxlat0] {
        padding: 10px 12px;
    }

    .currency-table[b-op4hbxlat0] {
        font-size: 11.5px;
    }
}
