/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-iukw1mlaup] {
    position: relative;
    display: flex;
    flex-direction: column;
}



.top-row[b-iukw1mlaup] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-iukw1mlaup]  a, .top-row[b-iukw1mlaup]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-iukw1mlaup]  a:hover, .top-row[b-iukw1mlaup]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-iukw1mlaup]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-iukw1mlaup] {
        justify-content: space-between;
    }

    .top-row[b-iukw1mlaup]  a, .top-row[b-iukw1mlaup]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-iukw1mlaup] {
        flex-direction: row;
    }

    .sidebar[b-iukw1mlaup] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-iukw1mlaup] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-iukw1mlaup]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-iukw1mlaup], article[b-iukw1mlaup] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-iukw1mlaup] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-iukw1mlaup] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
/* ==========================================================================
   ReconnectModal - Glass Card Violet Style
   Matches NPG design system with glass morphism effects
   ========================================================================== */

/* Dialog Element - Hidden by default, shown via showModal() */
#components-reconnect-modal[b-2g8cjlas4i] {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 100%;
    max-height: 100%;
}

/* When dialog is open (showModal() called), apply fullscreen overlay */
#components-reconnect-modal[open][b-2g8cjlas4i] {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#components-reconnect-modal[b-2g8cjlas4i]::backdrop {
    background: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Container - Glass Card Violet Pattern */
.components-reconnect-container[b-2g8cjlas4i] {
    position: relative;
    background: linear-gradient(135deg, hsl(267deg 100% 49% / 40%) 0%, hsl(243deg 50% 12% / 0.4) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 2rem;
    min-width: 320px;
    max-width: 90vw;
    text-align: center;
    box-shadow:
        0 0 40px hsl(263deg 70% 50% / 0.3),
        0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Gradient border effect via pseudo-element */
.components-reconnect-container[b-2g8cjlas4i]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg, hsl(263deg 70% 60% / 0.6), hsl(180deg 85% 55% / 0.3), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Top glow effect */
.components-reconnect-container[b-2g8cjlas4i]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(180deg 85% 55% / 0.8), transparent);
    pointer-events: none;
}

/* Text Styling */
.components-reconnect-container p[b-2g8cjlas4i] {
    color: hsl(210deg 40% 98%);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0.5rem 0;
}

/* ==========================================================================
   Loading Animation - Pulsing Dots
   ========================================================================== */
.components-rejoining-animation[b-2g8cjlas4i] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.components-rejoining-animation > div[b-2g8cjlas4i] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(180deg 85% 55%), hsl(263deg 70% 50%));
    animation: reconnect-pulse-b-2g8cjlas4i 1.4s ease-in-out infinite;
}

.components-rejoining-animation > div:nth-child(2)[b-2g8cjlas4i] {
    animation-delay: 0.2s;
}

@keyframes reconnect-pulse-b-2g8cjlas4i {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ==========================================================================
   Button Styling - NPG Cyan Pattern
   ========================================================================== */
#components-reconnect-button[b-2g8cjlas4i],
#components-resume-button[b-2g8cjlas4i] {
    background: linear-gradient(90deg, hsl(180deg 85% 55%), hsl(82deg 85% 55%));
    color: hsl(243deg 50% 12%);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#components-reconnect-button:hover[b-2g8cjlas4i],
#components-resume-button:hover[b-2g8cjlas4i] {
    transform: scale(1.05);
    box-shadow: 0 0 20px hsl(180deg 85% 55% / 0.5);
}

#components-reconnect-button:focus[b-2g8cjlas4i],
#components-resume-button:focus[b-2g8cjlas4i] {
    outline: 2px solid hsl(263deg 70% 50%);
    outline-offset: 2px;
}

#components-reconnect-button:active[b-2g8cjlas4i],
#components-resume-button:active[b-2g8cjlas4i] {
    transform: scale(0.98);
}

/* ==========================================================================
   State-Based Visibility Rules
   Blazor adds these classes to #components-reconnect-modal:
   - components-reconnect-show: connection lost, attempting to reconnect
   - components-reconnect-hide: connection restored
   - components-reconnect-failed: reconnection attempts exhausted
   - components-reconnect-rejected: server rejected the connection
   Custom classes (added by JS):
   - components-reconnect-paused: session paused by server
   - components-reconnect-resume-failed: resume attempt failed
   ========================================================================== */

/* Hide all state-specific elements by default */
.components-reconnect-first-attempt-visible[b-2g8cjlas4i],
.components-reconnect-repeated-attempt-visible[b-2g8cjlas4i],
.components-reconnect-failed-visible[b-2g8cjlas4i],
.components-pause-visible[b-2g8cjlas4i],
.components-resume-failed-visible[b-2g8cjlas4i] {
    display: none;
}

/* Hide animation by default */
.components-rejoining-animation[b-2g8cjlas4i] {
    display: none;
}

/* ==========================================================================
   Reconnecting State (components-reconnect-show)
   Show animation and "Rejoining the server..." message
   ========================================================================== */
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-2g8cjlas4i] {
    display: flex;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-2g8cjlas4i] {
    display: block;
}

/* ==========================================================================
   Failed State (components-reconnect-failed)
   Hide animation, show failure message and retry button
   ========================================================================== */
#components-reconnect-modal.components-reconnect-failed .components-rejoining-animation[b-2g8cjlas4i] {
    display: none;
}

#components-reconnect-modal.components-reconnect-failed .components-reconnect-first-attempt-visible[b-2g8cjlas4i] {
    display: none;
}

#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-2g8cjlas4i] {
    display: block;
}

/* ==========================================================================
   Paused State (components-reconnect-paused)
   Show paused message and resume button
   ========================================================================== */
#components-reconnect-modal.components-reconnect-paused .components-rejoining-animation[b-2g8cjlas4i] {
    display: none;
}

#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-2g8cjlas4i] {
    display: block;
}

/* ==========================================================================
   Resume Failed State (components-reconnect-resume-failed)
   Show resume failed message and resume button
   ========================================================================== */
#components-reconnect-modal.components-reconnect-resume-failed .components-rejoining-animation[b-2g8cjlas4i] {
    display: none;
}

#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-2g8cjlas4i] {
    display: block;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 480px) {
    .components-reconnect-container[b-2g8cjlas4i] {
        min-width: auto;
        width: calc(100vw - 2rem);
        padding: 1.5rem;
    }

    #components-reconnect-button[b-2g8cjlas4i],
    #components-resume-button[b-2g8cjlas4i] {
        width: 100%;
    }
}
/* /Components/Pages/Draw/ArenaDraw.razor.rz.scp.css */
/* ====== PENDING DROP BANNER (between seasons) ====== */
.pd-pending-banner[b-jgyxwn9qie] {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #fefaff;
}

.pd-pending-banner__icon[b-jgyxwn9qie] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #a78bfa;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.6);
    animation: pd-pulse-b-jgyxwn9qie 2s ease-in-out infinite;
}

@keyframes pd-pulse-b-jgyxwn9qie {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pd-pending-banner__body[b-jgyxwn9qie] { flex: 1; }
.pd-pending-banner__sub[b-jgyxwn9qie] { font-size: 13px; opacity: .65; margin-top: 3px; }
.pd-pending-banner__link[b-jgyxwn9qie] { font-size: 13px; color: #a78bfa; text-decoration: none; white-space: nowrap; }
.pd-pending-banner__link:hover[b-jgyxwn9qie] { text-decoration: underline; }

/* ====== PENDING DROP NOTICE (active season) ====== */
.pd-pending-notice[b-jgyxwn9qie] {
    background: rgba(167, 139, 250, 0.08);
    border-left: 3px solid #a78bfa;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    color: #fefaff;
    margin-bottom: 16px;
}

.pd-pending-notice a[b-jgyxwn9qie] {
    color: #a78bfa;
    margin-left: 10px;
    text-decoration: none;
}

.pd-pending-notice a:hover[b-jgyxwn9qie] { text-decoration: underline; }

/* ====== PAGE SHELL ====== */
.pd-arc-page[b-jgyxwn9qie] {
    min-height: 100vh;
    padding-top: 80px;
    background:
        radial-gradient(1200px 600px at 50% -10%, rgba(0, 240, 255, 0.08), transparent 60%),
        radial-gradient(900px 500px at 10% 110%, rgba(255, 46, 147, 0.06), transparent 60%),
        radial-gradient(800px 500px at 90% 100%, rgba(154, 107, 255, 0.06), transparent 60%),
        linear-gradient(180deg, #07021f 0%, #0a0230 40%, #0a0230 100%);
    color: #fefaff;
    font-family: 'Poppins', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}
.pd-arc-page[b-jgyxwn9qie]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
    pointer-events: none;
    opacity: 0.4;
}

.pd-arc-wrap[b-jgyxwn9qie] {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 28px 120px;
    position: relative;
}

.pd-loading[b-jgyxwn9qie],
.pd-empty[b-jgyxwn9qie] {
    padding: 96px 16px;
    text-align: center;
    color: rgba(254, 250, 255, 0.55);
}
.pd-empty__title[b-jgyxwn9qie] {
    color: #fefaff;
    font-family: 'Anton', Impact, sans-serif;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 16px;
}
.pd-empty__start[b-jgyxwn9qie] {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(254, 250, 255, 0.10);
    background: rgba(0, 0, 0, 0.25);
    padding: 12px 20px;
    border-radius: 16px;
    color: rgba(254, 250, 255, 0.80);
}

/* ====== PAGE HEADER ====== */
.pd-page-head[b-jgyxwn9qie] {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
}
.pd-eyebrow[b-jgyxwn9qie] {
    font: 600 10px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.26em;
    color: rgba(254, 250, 255, 0.55);
    text-transform: uppercase;
}
.pd-page-head h1[b-jgyxwn9qie] {
    margin: 8px 0 4px;
    font-family: 'Anton', Impact, sans-serif;
    font-size: 56px;
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: #fefaff;
}
.pd-page-head h1 em[b-jgyxwn9qie] {
    font-style: normal;
    color: #f5ff3d;
}
.pd-page-head p[b-jgyxwn9qie] {
    margin: 0;
    color: rgba(254, 250, 255, 0.55);
    font-size: 13px;
    max-width: 520px;
}

.pd-stat-bundle[b-jgyxwn9qie] { display: flex; gap: 12px; }
.pd-stat-bundle > div[b-jgyxwn9qie] {
    padding: 12px 14px;
    border: 1px solid rgba(254, 250, 255, 0.10);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    min-width: 110px;
}
.pd-stat-bundle .k[b-jgyxwn9qie] {
    font: 600 9px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.2em;
    color: rgba(254, 250, 255, 0.55);
    text-transform: uppercase;
}
.pd-stat-bundle .v[b-jgyxwn9qie] {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 18px;
    font-weight: 700;
    margin-top: 6px;
    color: #fefaff;
}
.pd-stat-bundle .v--cyan[b-jgyxwn9qie] { color: #00f0ff; }
.pd-stat-bundle .v--yellow[b-jgyxwn9qie] { color: #f5ff3d; }
.pd-stat-bundle .v--magenta[b-jgyxwn9qie] { color: #ff2e93; }

/* ====== NOW / NEXT ====== */
.pd-now-next[b-jgyxwn9qie] {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}

.pd-now[b-jgyxwn9qie] {
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(600px 200px at 80% -20%, rgba(0, 240, 255, 0.12), transparent 60%),
        linear-gradient(180deg, #140349, #0a0230);
    border: 1px solid rgba(0, 240, 255, 0.25);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.pd-now__top[b-jgyxwn9qie] {
    font: 600 10px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #00f0ff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-now__top .dot[b-jgyxwn9qie] {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #00f0ff;
    box-shadow: 0 0 12px #00f0ff;
    animation: pd-pulse-b-jgyxwn9qie 1.4s infinite;
}
.pd-now h2[b-jgyxwn9qie] {
    margin: 0;
    font-family: 'Anton', Impact, sans-serif;
    font-size: 40px;
    line-height: 1;
    color: #fefaff;
}
.pd-now h2 em[b-jgyxwn9qie] { font-style: normal; color: #f5ff3d; }
.pd-now p[b-jgyxwn9qie] {
    margin: 10px 0 0;
    color: rgba(254, 250, 255, 0.72);
    font-size: 13px;
    max-width: 380px;
}

.pd-now__stats[b-jgyxwn9qie] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
}
.pd-now__stats > div[b-jgyxwn9qie] {
    padding: 12px 16px 0;
    border-left: 1px solid rgba(254, 250, 255, 0.10);
}
.pd-now__stats > div:first-child[b-jgyxwn9qie] { padding-left: 0; border-left: none; }
.pd-now__stats .k[b-jgyxwn9qie] {
    font: 600 9px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.22em;
    color: rgba(254, 250, 255, 0.55);
    text-transform: uppercase;
}
.pd-now__stats .v[b-jgyxwn9qie] {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 20px;
    font-weight: 700;
    margin-top: 6px;
    color: #fefaff;
}
.pd-now__stats .v--cyan[b-jgyxwn9qie] { color: #00f0ff; }

.pd-now__cd[b-jgyxwn9qie] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-left: 24px;
    border-left: 1px dashed rgba(254, 250, 255, 0.18);
    min-width: 280px;
}
.pd-now__cd .lbl[b-jgyxwn9qie] {
    font: 600 9px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.22em;
    color: rgba(254, 250, 255, 0.55);
    text-transform: uppercase;
}
.pd-now__cd .cta[b-jgyxwn9qie] { margin-top: 8px; }

/* My Entries side card */
.pd-me[b-jgyxwn9qie] {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(254, 250, 255, 0.10);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.pd-me .eyebrow[b-jgyxwn9qie] {
    font: 600 10px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.26em;
    color: rgba(254, 250, 255, 0.55);
    text-transform: uppercase;
}
.pd-me__num[b-jgyxwn9qie] {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 96px;
    line-height: 0.9;
    color: #fefaff;
    margin: 4px 0 0;
}
.pd-me__num em[b-jgyxwn9qie] { font-style: normal; color: #00f0ff; }
.pd-me__sub[b-jgyxwn9qie] {
    color: rgba(254, 250, 255, 0.55);
    font-size: 12px;
}
.pd-me__next[b-jgyxwn9qie] {
    margin-top: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.20);
    border-radius: 10px;
}
.pd-me__bar[b-jgyxwn9qie] {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: rgba(254, 250, 255, 0.10);
    overflow: hidden;
}
.pd-me__bar-fill[b-jgyxwn9qie] {
    height: 100%;
    background: linear-gradient(90deg, #00f0ff, #ff2e93);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
    transition: width 0.6s ease-out;
}
.pd-me__pct[b-jgyxwn9qie] {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 13px;
    font-weight: 700;
    color: #00f0ff;
}
.pd-me__next-label[b-jgyxwn9qie] { font-size: 11px; color: rgba(254, 250, 255, 0.72); }
.pd-me__next-label b[b-jgyxwn9qie] { color: #f5ff3d; font-weight: 700; }

.pd-me__discount[b-jgyxwn9qie] {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    background: rgba(251, 191, 36, 0.10);
    font-size: 11px;
    font-weight: 600;
    color: #fde68a;
}
.pd-me__discount-normal[b-jgyxwn9qie] { color: rgba(253, 230, 138, 0.55); font-weight: 400; }
.pd-me__discount-dot[b-jgyxwn9qie] { position: relative; display: inline-flex; width: 8px; height: 8px; flex-shrink: 0; }
.pd-me__discount-ping[b-jgyxwn9qie] {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #fbbf24;
    opacity: 0.75;
    animation: ping-b-jgyxwn9qie 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.pd-me__discount-core[b-jgyxwn9qie] {
    position: relative; display: inline-flex;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fcd34d;
}
@keyframes ping-b-jgyxwn9qie {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.pd-me__chips[b-jgyxwn9qie] {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-height: 76px;
    overflow: hidden;
}
.pd-chip[b-jgyxwn9qie] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    border: 1px solid rgba(254, 250, 255, 0.18);
    background: rgba(254, 250, 255, 0.05);
    font: 600 9px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(254, 250, 255, 0.72);
}
.pd-chip--cyan[b-jgyxwn9qie] {
    color: #00f0ff;
    border-color: rgba(0, 240, 255, 0.35);
    background: rgba(0, 240, 255, 0.08);
}

/* ====== SECTION HEADERS ====== */
.pd-sec-head[b-jgyxwn9qie] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 56px 0 16px;
    gap: 16px;
    flex-wrap: wrap;
}
.pd-sec-head h2[b-jgyxwn9qie] {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 26px;
    margin: 0;
    color: #fefaff;
}
.pd-sec-head h2 small[b-jgyxwn9qie] {
    color: rgba(254, 250, 255, 0.35);
    font-size: 16px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-weight: 500;
    margin-left: 6px;
}
.pd-sec-head__kicker[b-jgyxwn9qie] {
    font: 600 10px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(254, 250, 255, 0.55);
    margin-bottom: 4px;
}
.pd-sec-head a[b-jgyxwn9qie] {
    font: 600 12px/1 'Poppins', system-ui, sans-serif;
    color: #00f0ff;
    text-decoration: none;
}
.pd-sec-head a:hover[b-jgyxwn9qie] { color: #fefaff; }

/* ====== EARN LIST ====== */
.pd-earn[b-jgyxwn9qie] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(254, 250, 255, 0.10);
    border-radius: 14px;
    overflow: hidden;
}
.pd-earn__item[b-jgyxwn9qie] {
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid rgba(254, 250, 255, 0.10);
    border-right: 1px solid rgba(254, 250, 255, 0.10);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s;
}
.pd-earn__item:hover[b-jgyxwn9qie] { background: rgba(0, 240, 255, 0.04); }
.pd-earn__item:nth-child(2n)[b-jgyxwn9qie] { border-right: none; }
.pd-earn__item--full[b-jgyxwn9qie] {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
}
.pd-earn__item:nth-last-of-type(1):not(.pd-earn__item--full)[b-jgyxwn9qie],
.pd-earn__item:nth-last-of-type(2):not(.pd-earn__item--full)[b-jgyxwn9qie] {
    border-bottom: none;
}
.pd-earn__ic[b-jgyxwn9qie] {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-weight: 700;
    font-size: 14px;
}
.pd-earn__item[data-a="cyan"]    .pd-earn__ic[b-jgyxwn9qie] { background: rgba(0, 240, 255, 0.10);   color: #00f0ff; }
.pd-earn__item[data-a="violet"]  .pd-earn__ic[b-jgyxwn9qie] { background: rgba(154, 107, 255, 0.12); color: #9a6bff; }
.pd-earn__item[data-a="orange"]  .pd-earn__ic[b-jgyxwn9qie] { background: rgba(255, 138, 0, 0.12);   color: #ff8a00; }
.pd-earn__item[data-a="magenta"] .pd-earn__ic[b-jgyxwn9qie] { background: rgba(255, 46, 147, 0.12);  color: #ff2e93; }
.pd-earn__item[data-a="yellow"]  .pd-earn__ic[b-jgyxwn9qie] { background: rgba(245, 255, 61, 0.12);  color: #f5ff3d; }

.pd-earn__info .t[b-jgyxwn9qie] {
    font: 600 14px/1.2 'Poppins', system-ui, sans-serif;
    color: #fefaff;
}
.pd-earn__info .s[b-jgyxwn9qie] {
    font-size: 11px;
    color: rgba(254, 250, 255, 0.55);
    margin-top: 3px;
}

.pd-earn__bar[b-jgyxwn9qie] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    min-width: 140px;
}
.pd-earn__bar .v[b-jgyxwn9qie] {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    color: #fefaff;
    font-weight: 700;
}
.pd-earn__bar .bar[b-jgyxwn9qie] {
    width: 140px;
    height: 4px;
    background: rgba(254, 250, 255, 0.10);
    border-radius: 2px;
    overflow: hidden;
}
.pd-earn__bar .bar .fill[b-jgyxwn9qie] { height: 100%; background: currentColor; }
.pd-earn__item[data-a="cyan"]    .pd-earn__bar[b-jgyxwn9qie] { color: #00f0ff; }
.pd-earn__item[data-a="violet"]  .pd-earn__bar[b-jgyxwn9qie] { color: #9a6bff; }
.pd-earn__item[data-a="orange"]  .pd-earn__bar[b-jgyxwn9qie] { color: #ff8a00; }
.pd-earn__item[data-a="magenta"] .pd-earn__bar[b-jgyxwn9qie] { color: #ff2e93; }
.pd-earn__item[data-a="yellow"]  .pd-earn__bar[b-jgyxwn9qie] { color: #f5ff3d; }

/* Streaks & events — tier chip row replaces the progress bar */
.pd-earn__item--streaks[b-jgyxwn9qie] { grid-template-columns: 28px 1fr auto; }
.pd-earn__item--streaks .pd-earn__info .t[b-jgyxwn9qie] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pd-earn__badge[b-jgyxwn9qie] {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font: 700 10px/1 'JetBrains Mono', ui-monospace, monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(254, 250, 255, 0.55);
    background: rgba(254, 250, 255, 0.06);
    border: 1px solid rgba(254, 250, 255, 0.12);
}
.pd-earn__badge--live[b-jgyxwn9qie] {
    color: #0a0f1a;
    background: #f5ff3d;
    border-color: transparent;
}
.pd-earn__tiers[b-jgyxwn9qie] {
    display: flex;
    gap: 8px;
    align-items: center;
}
.pd-earn__tier[b-jgyxwn9qie] {
    min-width: 64px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(254, 250, 255, 0.04);
    border: 1px solid rgba(254, 250, 255, 0.10);
    text-align: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.pd-earn__tier-mult[b-jgyxwn9qie] {
    font: 700 13px/1 'JetBrains Mono', ui-monospace, monospace;
    color: rgba(254, 250, 255, 0.55);
}
.pd-earn__tier-lbl[b-jgyxwn9qie] {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(254, 250, 255, 0.40);
}
.pd-earn__tier.is-reached[b-jgyxwn9qie] {
    background: rgba(245, 255, 61, 0.08);
    border-color: rgba(245, 255, 61, 0.35);
}
.pd-earn__tier.is-reached .pd-earn__tier-mult[b-jgyxwn9qie] { color: #f5ff3d; }
.pd-earn__tier.is-reached .pd-earn__tier-lbl[b-jgyxwn9qie]  { color: rgba(245, 255, 61, 0.75); }
.pd-earn__tier.is-current[b-jgyxwn9qie] {
    background: rgba(245, 255, 61, 0.16);
    border-color: #f5ff3d;
    box-shadow: 0 0 0 1px rgba(245, 255, 61, 0.35), 0 6px 18px rgba(245, 255, 61, 0.10);
}

/* ====== WINNINGS ====== */
.pd-winnings[b-jgyxwn9qie] {
    border: 1px solid rgba(254, 250, 255, 0.10);
    border-radius: 14px;
    overflow: hidden;
}
.pd-winnings__row[b-jgyxwn9qie] {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(254, 250, 255, 0.10);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s;
}
.pd-winnings__row:last-child[b-jgyxwn9qie] { border-bottom: none; }
.pd-winnings__row:hover[b-jgyxwn9qie] { background: rgba(57, 255, 138, 0.04); }
.pd-winnings__row--urgent[b-jgyxwn9qie] {
    background: rgba(255, 46, 147, 0.06);
}
.pd-winnings__row--urgent:hover[b-jgyxwn9qie] { background: rgba(255, 46, 147, 0.10); }

.pd-winnings__img[b-jgyxwn9qie] {
    width: 80px; height: 64px;
    border-radius: 8px;
    object-fit: cover;
    background: linear-gradient(180deg, #1a0555, #0a0230);
    border: 1px solid rgba(254, 250, 255, 0.10);
}
.pd-winnings__name[b-jgyxwn9qie] {
    font: 700 15px/1.2 'Poppins', system-ui, sans-serif;
    color: #fefaff;
}
.pd-winnings__meta[b-jgyxwn9qie] {
    font-size: 11px;
    color: rgba(254, 250, 255, 0.55);
    margin-top: 4px;
}
.pd-winnings__when[b-jgyxwn9qie] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    color: rgba(254, 250, 255, 0.72);
    min-width: 80px;
}
.pd-winnings__when .lbl[b-jgyxwn9qie] {
    font: 700 9px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.18em;
    color: #39ff8a;
    text-transform: uppercase;
}
.pd-winnings__row--urgent .pd-winnings__when .lbl[b-jgyxwn9qie] { color: #ff2e93; }
.pd-winnings__empty[b-jgyxwn9qie] {
    padding: 32px;
    text-align: center;
    color: rgba(254, 250, 255, 0.55);
    font-size: 13px;
}

/* Toggle buttons in the "My winnings" heading */
.pd-winnings-toggle[b-jgyxwn9qie] {
    background: none;
    border: none;
    cursor: pointer;
    font: 500 16px/1 'JetBrains Mono', ui-monospace, monospace;
    color: rgba(254, 250, 255, 0.35);
    padding: 0;
    transition: color 0.15s;
}
.pd-winnings-toggle:hover[b-jgyxwn9qie] { color: rgba(254, 250, 255, 0.65); }
.pd-winnings-toggle--active[b-jgyxwn9qie] { color: #f5ff3d; }

/* Collapsed state when user has only claimed prizes */
.pd-winnings-collapsed[b-jgyxwn9qie] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1px solid rgba(254, 250, 255, 0.10);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}
.pd-winnings-collapsed__label[b-jgyxwn9qie] {
    font-size: 13px;
    color: rgba(254, 250, 255, 0.55);
}

/* "View N claimed prizes →" link below unclaimed list */
.pd-winnings-show-claimed[b-jgyxwn9qie] {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 10px 18px;
    background: none;
    border: 1px dashed rgba(254, 250, 255, 0.15);
    border-radius: 10px;
    color: rgba(254, 250, 255, 0.45);
    font: 600 12px/1 'Poppins', system-ui, sans-serif;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, color 0.2s;
}
.pd-winnings-show-claimed:hover[b-jgyxwn9qie] {
    border-color: rgba(0, 240, 255, 0.35);
    color: #00f0ff;
}

/* Paginator for claimed list */
.pd-winnings-pager[b-jgyxwn9qie] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}
.pd-winnings-pager__label[b-jgyxwn9qie] {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    color: rgba(254, 250, 255, 0.45);
    min-width: 60px;
    text-align: center;
}
.pd-winnings-pager .pd-btn:disabled[b-jgyxwn9qie] {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ====== CATALOG ====== */
.pd-catalog[b-jgyxwn9qie] {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 14px;
}
.pd-cat-hero[b-jgyxwn9qie] {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #1a0555, #0a0230);
    border: 1px solid rgba(254, 250, 255, 0.10);
    position: relative;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color 0.2s;
    text-decoration: none;
    color: inherit;
}
.pd-cat-hero:hover[b-jgyxwn9qie] { border-color: rgba(0, 240, 255, 0.35); }
.pd-cat-hero__img[b-jgyxwn9qie] {
    flex: 1;
    min-height: 0;
    background-size: cover;
    background-position: center;
}
.pd-cat-hero__body[b-jgyxwn9qie] {
    padding: 22px 24px;
    background: linear-gradient(180deg, rgba(10, 2, 48, 0), rgba(10, 2, 48, 0.95));
    margin-top: -80px;
    position: relative;
    z-index: 1;
}
.pd-cat-hero__eyebrow[b-jgyxwn9qie] {
    font: 600 10px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.24em;
    color: #f5ff3d;
    text-transform: uppercase;
}
.pd-cat-hero h3[b-jgyxwn9qie] {
    margin: 10px 0 8px;
    font-family: 'Anton', Impact, sans-serif;
    font-size: 40px;
    line-height: 1;
    color: #fefaff;
}
.pd-cat-hero__meta[b-jgyxwn9qie] {
    color: rgba(254, 250, 255, 0.72);
    font-size: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.pd-cat-col[b-jgyxwn9qie] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-content: start;
}
.pd-cat-mini[b-jgyxwn9qie] {
    border: 1px solid rgba(254, 250, 255, 0.10);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.pd-cat-mini:hover[b-jgyxwn9qie] { transform: translateY(-3px); border-color: rgba(0, 240, 255, 0.30); }
.pd-cat-mini__img[b-jgyxwn9qie] {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: #1a0555;
}
.pd-cat-mini__body[b-jgyxwn9qie] { padding: 12px; }
.pd-cat-mini__body h5[b-jgyxwn9qie] {
    margin: 0;
    font: 700 13px/1.2 'Poppins', system-ui, sans-serif;
    color: #fefaff;
}
.pd-cat-mini__value[b-jgyxwn9qie] {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    color: #00f0ff;
    margin-top: 4px;
    font-weight: 700;
}
.pd-cat-mini__rem[b-jgyxwn9qie] {
    font-size: 10px;
    color: rgba(254, 250, 255, 0.55);
    margin-top: 2px;
}

/* Tier chips in catalog */
.pd-tier-chip[b-jgyxwn9qie] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font: 600 10px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.pd-tier-chip--GiftCard[b-jgyxwn9qie]   { color: #a8ffce;   border: 1px solid rgba(57, 255, 138, 0.30);   background: rgba(57, 255, 138, 0.08); }
.pd-tier-chip--Hardware[b-jgyxwn9qie]   { color: #ffbfdd;   border: 1px solid rgba(255, 46, 147, 0.35);   background: rgba(255, 46, 147, 0.10); }
.pd-tier-chip--Experience[b-jgyxwn9qie] { color: #f5ff3d;   border: 1px solid rgba(245, 255, 61, 0.30);   background: rgba(245, 255, 61, 0.10); }
.pd-tier-chip--Digital[b-jgyxwn9qie]    { color: #8ef7ff;   border: 1px solid rgba(0, 240, 255, 0.30);    background: rgba(0, 240, 255, 0.08); }

/* ====== RECENT WINNERS ====== */
.pd-winners[b-jgyxwn9qie] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.pd-winner[b-jgyxwn9qie] {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(254, 250, 255, 0.10);
}
.pd-winner__av[b-jgyxwn9qie] {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9a6bff, #ff2e93);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    object-fit: cover;
}
.pd-winner__av img[b-jgyxwn9qie] { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.pd-winner__name[b-jgyxwn9qie] {
    font: 700 13px/1.2 'Poppins', system-ui, sans-serif;
    color: #fefaff;
}
.pd-winner__prize[b-jgyxwn9qie] {
    font-size: 11px;
    color: #39ff8a;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-weight: 700;
    margin-top: 2px;
}
.pd-winner__ctx[b-jgyxwn9qie] {
    font-size: 10px;
    color: rgba(254, 250, 255, 0.35);
    margin-top: 2px;
}

/* ====== BUTTONS (scoped) ====== */
.pd-btn[b-jgyxwn9qie] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: none;
    font: 700 13px/1 'Poppins', system-ui, sans-serif;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-decoration: none;
}
.pd-btn:active[b-jgyxwn9qie] { transform: translateY(1px); }
.pd-btn--primary[b-jgyxwn9qie] {
    background: linear-gradient(90deg, #00f0ff, #ff2e93);
    color: #07021f;
    box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.6);
}
.pd-btn--primary:hover[b-jgyxwn9qie] {
    box-shadow: 0 12px 40px -8px rgba(0, 240, 255, 0.8);
    color: #07021f;
}
.pd-btn--ghost[b-jgyxwn9qie] {
    background: transparent;
    color: #fefaff;
    border: 1px solid rgba(254, 250, 255, 0.18);
}
.pd-btn--ghost:hover[b-jgyxwn9qie] {
    border-color: #00f0ff;
    color: #00f0ff;
}
.pd-btn--sm[b-jgyxwn9qie] { height: 34px; font-size: 11px; padding: 0 14px; }

/* Secondary nav (history links) */
.pd-secondary-nav[b-jgyxwn9qie] {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(254, 250, 255, 0.10);
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.pd-secondary-nav a[b-jgyxwn9qie] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(254, 250, 255, 0.55);
    font: 600 11px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}
.pd-secondary-nav a:hover[b-jgyxwn9qie] { color: #00f0ff; }

/* ====== MOTION ====== */
@keyframes pd-pulse-b-jgyxwn9qie {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
    .pd-page-head[b-jgyxwn9qie] { grid-template-columns: 1fr; }
    .pd-page-head h1[b-jgyxwn9qie] { font-size: 42px; }
    .pd-stat-bundle[b-jgyxwn9qie] { flex-wrap: wrap; }
    .pd-stat-bundle > div[b-jgyxwn9qie] { min-width: 86px; padding: 10px 12px; flex: 1; }
    .pd-now-next[b-jgyxwn9qie] { grid-template-columns: 1fr; }
    .pd-now[b-jgyxwn9qie] { grid-template-columns: 1fr; padding: 22px; }
    .pd-now h2[b-jgyxwn9qie] { font-size: 32px; }
    .pd-now__cd[b-jgyxwn9qie] {
        border-left: none;
        border-top: 1px dashed rgba(254, 250, 255, 0.18);
        padding-left: 0;
        padding-top: 20px;
        align-items: flex-start;
    }
    .pd-earn[b-jgyxwn9qie] { grid-template-columns: 1fr; }
    .pd-earn__item[b-jgyxwn9qie] { border-right: none; }
    .pd-earn__item:nth-last-of-type(-n+2)[b-jgyxwn9qie] { border-bottom: 1px solid rgba(254, 250, 255, 0.10); }
    .pd-earn__item:last-child[b-jgyxwn9qie] { border-bottom: none; }
    .pd-earn__bar[b-jgyxwn9qie] { min-width: 96px; }
    .pd-earn__bar .bar[b-jgyxwn9qie] { width: 96px; }
    .pd-earn__item--streaks[b-jgyxwn9qie] { grid-template-columns: 28px 1fr; }
    .pd-earn__tiers[b-jgyxwn9qie] { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; }
    .pd-earn__tier[b-jgyxwn9qie] { min-width: 56px; padding: 6px 8px; flex: 1 1 0; }
    .pd-catalog[b-jgyxwn9qie] { grid-template-columns: 1fr; }
    .pd-cat-hero[b-jgyxwn9qie] { min-height: 320px; }
    .pd-cat-hero h3[b-jgyxwn9qie] { font-size: 28px; }
    .pd-winners[b-jgyxwn9qie] { grid-template-columns: 1fr; }
    .pd-winnings__row[b-jgyxwn9qie] {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
        row-gap: 10px;
    }
    .pd-winnings__img[b-jgyxwn9qie] { width: 56px; height: 48px; grid-row: 1 / span 2; }
    .pd-winnings__when[b-jgyxwn9qie] { grid-column: 2; grid-row: 1; align-items: flex-start; }
    .pd-winnings__row > div:nth-child(2)[b-jgyxwn9qie] { grid-column: 2; grid-row: 2; }
    .pd-winnings__row .pd-btn[b-jgyxwn9qie] { grid-column: 1 / -1; justify-self: stretch; }
    .pd-sec-head h2[b-jgyxwn9qie] { font-size: 22px; }
    .pd-sec-head[b-jgyxwn9qie] { margin-top: 40px; }
}

@media (max-width: 720px) {
    .pd-arc-wrap[b-jgyxwn9qie] { padding: 16px 16px 80px; }
    .pd-page-head[b-jgyxwn9qie] { margin-top: 20px; }
    .pd-page-head h1[b-jgyxwn9qie] { font-size: 38px; }
    .pd-stat-bundle[b-jgyxwn9qie] { width: 100%; }
    .pd-stat-bundle > div[b-jgyxwn9qie] { flex: 1; }
    .pd-now__cd .pd-digit-cell[b-jgyxwn9qie] { font-size: 22px; padding: 6px 8px; min-width: 44px; }
}
/* /Components/Pages/Draw/DrawHistory.razor.rz.scp.css */
.pdh-page[b-8jappm0eiw] {
    --pdh-bg: #07021f;
    --pdh-surface: #0f0738;
    --pdh-surface-soft: rgba(255, 255, 255, 0.03);
    --pdh-border: rgba(254, 250, 255, 0.12);
    --pdh-copy: #fefaff;
    --pdh-copy-soft: rgba(254, 250, 255, 0.62);
    --pdh-copy-faint: rgba(254, 250, 255, 0.42);
    --pdh-cyan: #00f0ff;
    --pdh-yellow: #f5ff3d;
    --pdh-magenta: #ff2e93;
    --pdh-violet: #9a6bff;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow-x: hidden;
    color: var(--pdh-copy);
    background:
        radial-gradient(1200px 620px at 50% -8%, rgba(0, 240, 255, 0.08), transparent 60%),
        radial-gradient(900px 480px at 8% 105%, rgba(255, 46, 147, 0.07), transparent 60%),
        radial-gradient(760px 440px at 92% 100%, rgba(154, 107, 255, 0.07), transparent 60%),
        linear-gradient(180deg, var(--pdh-bg) 0%, #0a0230 46%, #0b0328 100%);
    font-family: 'Poppins', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.pdh-page[b-8jappm0eiw]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 28%, transparent 76%);
    pointer-events: none;
    opacity: 0.45;
}

.pdh-wrap[b-8jappm0eiw] {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 28px 112px;
    position: relative;
}

.pdh-back[b-8jappm0eiw],
.pdh-secondary-nav a[b-8jappm0eiw],
.pdh-link-btn[b-8jappm0eiw] {
    text-decoration: none;
}

.pdh-back[b-8jappm0eiw],
.pdh-eyebrow[b-8jappm0eiw],
.pdh-hero__note-kicker[b-8jappm0eiw],
.pdh-stat__label[b-8jappm0eiw],
.pdh-season__stats .k[b-8jappm0eiw],
.pdh-season__toggle-label[b-8jappm0eiw],
.pdh-period__metrics .k[b-8jappm0eiw],
.pdh-pill[b-8jappm0eiw] {
    font-family: 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.pdh-back[b-8jappm0eiw] {
    display: inline-flex;
    align-items: center;
    color: var(--pdh-cyan);
    font-size: 0.8rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.pdh-back:hover[b-8jappm0eiw] {
    color: var(--pdh-copy);
    transform: translateX(-2px);
}

.pdh-hero[b-8jappm0eiw] {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: end;
}

.pdh-hero h1[b-8jappm0eiw],
.pdh-section-head h2[b-8jappm0eiw],
.pdh-season__copy h3[b-8jappm0eiw],
.pdh-period__identity h4[b-8jappm0eiw],
.pdh-state h2[b-8jappm0eiw] {
    font-family: 'Anton', Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.pdh-eyebrow[b-8jappm0eiw] {
    font-size: 0.7rem;
    line-height: 1;
    color: var(--pdh-copy-soft);
}

.pdh-hero h1[b-8jappm0eiw] {
    margin: 10px 0 8px;
    font-size: 3.6rem;
    line-height: 0.95;
}

.pdh-hero h1 em[b-8jappm0eiw] {
    font-style: normal;
    color: var(--pdh-yellow);
}

.pdh-hero__copy p[b-8jappm0eiw],
.pdh-hero__note p[b-8jappm0eiw],
.pdh-section-head p[b-8jappm0eiw],
.pdh-season__copy p[b-8jappm0eiw],
.pdh-season__summary[b-8jappm0eiw],
.pdh-period__identity p[b-8jappm0eiw],
.pdh-period__footer p[b-8jappm0eiw],
.pdh-stat__helper[b-8jappm0eiw],
.pdh-state p[b-8jappm0eiw] {
    margin: 0;
    color: var(--pdh-copy-soft);
}

.pdh-hero__copy p[b-8jappm0eiw] {
    max-width: 640px;
    font-size: 0.92rem;
}

.pdh-hero__note[b-8jappm0eiw],
.pdh-panel[b-8jappm0eiw],
.pdh-stat[b-8jappm0eiw],
.pdh-season[b-8jappm0eiw],
.pdh-period[b-8jappm0eiw] {
    border: 1px solid var(--pdh-border);
    background: var(--pdh-surface-soft);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.pdh-hero__note[b-8jappm0eiw],
.pdh-panel[b-8jappm0eiw] {
    border-radius: 24px;
    padding: 18px 20px;
}

.pdh-hero__note[b-8jappm0eiw] {
    background:
        radial-gradient(340px 180px at 100% 0, rgba(0, 240, 255, 0.09), transparent 60%),
        rgba(255, 255, 255, 0.035);
}

.pdh-hero__note-kicker[b-8jappm0eiw] {
    display: block;
    margin-bottom: 10px;
    color: var(--pdh-yellow);
    font-size: 0.68rem;
}

.pdh-stats[b-8jappm0eiw] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.pdh-stat[b-8jappm0eiw] {
    border-radius: 22px;
    padding: 18px;
}

.pdh-stat__label[b-8jappm0eiw] {
    display: block;
    font-size: 0.68rem;
    color: var(--pdh-copy-soft);
}

.pdh-stat__value[b-8jappm0eiw] {
    display: block;
    margin-top: 8px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 2rem;
    line-height: 1;
}

.pdh-stat__helper[b-8jappm0eiw] {
    margin-top: 10px;
    font-size: 0.74rem;
    line-height: 1.45;
}

.pdh-stat--cyan .pdh-stat__value[b-8jappm0eiw] { color: var(--pdh-cyan); }
.pdh-stat--yellow .pdh-stat__value[b-8jappm0eiw] { color: var(--pdh-yellow); }
.pdh-stat--magenta .pdh-stat__value[b-8jappm0eiw] { color: var(--pdh-magenta); }
.pdh-stat--violet .pdh-stat__value[b-8jappm0eiw] { color: var(--pdh-violet); }

.pdh-stat--cyan[b-8jappm0eiw] { background: linear-gradient(180deg, rgba(0, 240, 255, 0.07), rgba(255, 255, 255, 0.03)); }
.pdh-stat--yellow[b-8jappm0eiw] { background: linear-gradient(180deg, rgba(245, 255, 61, 0.07), rgba(255, 255, 255, 0.03)); }
.pdh-stat--magenta[b-8jappm0eiw] { background: linear-gradient(180deg, rgba(255, 46, 147, 0.08), rgba(255, 255, 255, 0.03)); }
.pdh-stat--violet[b-8jappm0eiw] { background: linear-gradient(180deg, rgba(154, 107, 255, 0.09), rgba(255, 255, 255, 0.03)); }

.pdh-panel--state[b-8jappm0eiw] {
    margin-top: 24px;
    padding: 42px 24px;
    text-align: center;
}

.pdh-state h2[b-8jappm0eiw] {
    margin: 10px 0 8px;
    font-size: 2rem;
    line-height: 1;
}

.pdh-section-head[b-8jappm0eiw] {
    margin: 54px 0 16px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
}

.pdh-section-head h2[b-8jappm0eiw] {
    margin: 8px 0 0;
    font-size: 1.8rem;
    line-height: 1;
}

.pdh-section-head p[b-8jappm0eiw] {
    max-width: 420px;
    font-size: 0.82rem;
}

.pdh-seasons[b-8jappm0eiw] {
    display: grid;
    gap: 14px;
}

.pdh-season[b-8jappm0eiw] {
    border-radius: 28px;
    overflow: hidden;
}

.pdh-season.is-open[b-8jappm0eiw] {
    border-color: rgba(0, 240, 255, 0.22);
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.04), rgba(255, 255, 255, 0.03));
}

.pdh-season__trigger[b-8jappm0eiw] {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 20px;
    padding: 20px 22px;
    align-items: center;
    background: transparent;
    border: 0;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.pdh-season__copy h3[b-8jappm0eiw] {
    margin: 10px 0 6px;
    font-size: 2rem;
    line-height: 0.95;
}

.pdh-season__copy p[b-8jappm0eiw] {
    font-size: 0.82rem;
}

.pdh-season__stats[b-8jappm0eiw] {
    display: flex;
    gap: 10px;
}

.pdh-season__stats > div[b-8jappm0eiw],
.pdh-period__metrics > div[b-8jappm0eiw] {
    min-width: 88px;
}

.pdh-season__stats .k[b-8jappm0eiw],
.pdh-period__metrics .k[b-8jappm0eiw] {
    display: block;
    font-size: 0.62rem;
    color: var(--pdh-copy-faint);
}

.pdh-season__stats .v[b-8jappm0eiw],
.pdh-period__metrics .v[b-8jappm0eiw] {
    display: block;
    margin-top: 6px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 1rem;
    color: var(--pdh-copy);
}

.pdh-season__toggle[b-8jappm0eiw] {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.pdh-season__toggle-label[b-8jappm0eiw] {
    font-size: 0.68rem;
    color: var(--pdh-copy-soft);
}

.pdh-season__chevron[b-8jappm0eiw] {
    width: 20px;
    height: 20px;
    color: var(--pdh-copy-soft);
    transition: transform 0.2s ease;
}

.pdh-season__chevron.is-open[b-8jappm0eiw] {
    transform: rotate(180deg);
}

.pdh-season__body[b-8jappm0eiw] {
    padding: 0 22px 22px;
    border-top: 1px solid rgba(254, 250, 255, 0.08);
}

.pdh-season__summary[b-8jappm0eiw] {
    padding: 16px 0 18px;
    font-size: 0.82rem;
}

.pdh-period-list[b-8jappm0eiw] {
    display: grid;
    gap: 14px;
}

.pdh-period[b-8jappm0eiw] {
    border-radius: 22px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.pdh-period--executed[b-8jappm0eiw],
.pdh-period--audited[b-8jappm0eiw] {
    border-color: rgba(245, 255, 61, 0.2);
}

.pdh-period--deferred[b-8jappm0eiw] {
    border-color: rgba(255, 46, 147, 0.24);
    background: linear-gradient(180deg, rgba(255, 46, 147, 0.08), rgba(255, 255, 255, 0.02));
}

.pdh-period__top[b-8jappm0eiw],
.pdh-period__footer[b-8jappm0eiw],
.pdh-secondary-nav[b-8jappm0eiw] {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.pdh-period__top[b-8jappm0eiw] {
    align-items: start;
}

.pdh-period__chips[b-8jappm0eiw] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.pdh-period__identity h4[b-8jappm0eiw] {
    margin: 0;
    font-size: 1.65rem;
    line-height: 0.96;
}

.pdh-period__identity p[b-8jappm0eiw] {
    margin-top: 8px;
    font-size: 0.82rem;
}

.pdh-period__action[b-8jappm0eiw] {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-width: 144px;
}

.pdh-link-btn[b-8jappm0eiw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pdh-cyan), var(--pdh-magenta));
    color: #08031d;
    font-size: 0.82rem;
    font-weight: 700;
}

.pdh-period__action-note[b-8jappm0eiw] {
    font-size: 0.76rem;
    color: var(--pdh-copy-faint);
}

.pdh-period__metrics[b-8jappm0eiw] {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(254, 250, 255, 0.08);
    border-bottom: 1px solid rgba(254, 250, 255, 0.08);
}

.pdh-period__footer[b-8jappm0eiw] {
    margin-top: 14px;
    align-items: start;
}

.pdh-period__footer p[b-8jappm0eiw],
.pdh-period__footer span[b-8jappm0eiw] {
    font-size: 0.78rem;
    line-height: 1.5;
}

.pdh-period__footer span[b-8jappm0eiw] {
    color: var(--pdh-copy-faint);
    text-align: right;
    max-width: 240px;
}

.pdh-pill[b-8jappm0eiw] {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.62rem;
    border: 1px solid rgba(254, 250, 255, 0.16);
    color: var(--pdh-copy);
    background: rgba(255, 255, 255, 0.05);
}

.pdh-pill--season-active[b-8jappm0eiw],
.pdh-pill--status-open[b-8jappm0eiw] { color: #92ffd1; border-color: rgba(57, 255, 138, 0.35); background: rgba(57, 255, 138, 0.12); }
.pdh-pill--season-upcoming[b-8jappm0eiw],
.pdh-pill--status-scheduled[b-8jappm0eiw] { color: #8fdfff; border-color: rgba(0, 240, 255, 0.35); background: rgba(0, 240, 255, 0.12); }
.pdh-pill--season-completed[b-8jappm0eiw],
.pdh-pill--status-closed[b-8jappm0eiw] { color: #dad8ef; border-color: rgba(218, 216, 239, 0.22); background: rgba(218, 216, 239, 0.08); }
.pdh-pill--season-archived[b-8jappm0eiw],
.pdh-pill--status-audited[b-8jappm0eiw] { color: #c7b8ff; border-color: rgba(154, 107, 255, 0.3); background: rgba(154, 107, 255, 0.12); }
.pdh-pill--cadence-weekly[b-8jappm0eiw] { color: var(--pdh-cyan); border-color: rgba(0, 240, 255, 0.34); background: rgba(0, 240, 255, 0.1); }
.pdh-pill--cadence-monthly[b-8jappm0eiw] { color: var(--pdh-violet); border-color: rgba(154, 107, 255, 0.34); background: rgba(154, 107, 255, 0.14); }
.pdh-pill--cadence-quarterly[b-8jappm0eiw],
.pdh-pill--status-executed[b-8jappm0eiw],
.pdh-pill--replay[b-8jappm0eiw] { color: var(--pdh-yellow); border-color: rgba(245, 255, 61, 0.3); background: rgba(245, 255, 61, 0.1); }
.pdh-pill--status-deferred[b-8jappm0eiw] { color: var(--pdh-magenta); border-color: rgba(255, 46, 147, 0.34); background: rgba(255, 46, 147, 0.12); }

.pdh-secondary-nav[b-8jappm0eiw] {
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(254, 250, 255, 0.1);
    flex-wrap: wrap;
    justify-content: center;
}

.pdh-secondary-nav a[b-8jappm0eiw] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pdh-copy-soft);
    font-size: 0.72rem;
    transition: color 0.2s ease;
}

.pdh-secondary-nav a:hover[b-8jappm0eiw] {
    color: var(--pdh-cyan);
}

@media (prefers-reduced-motion: no-preference) {
    .pdh-back[b-8jappm0eiw],
    .pdh-season[b-8jappm0eiw],
    .pdh-stat[b-8jappm0eiw],
    .pdh-period[b-8jappm0eiw],
    .pdh-link-btn[b-8jappm0eiw],
    .pdh-secondary-nav a[b-8jappm0eiw] {
        transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    .pdh-season:hover[b-8jappm0eiw],
    .pdh-stat:hover[b-8jappm0eiw],
    .pdh-period:hover[b-8jappm0eiw] {
        transform: translateY(-2px);
    }
}

@media (max-width: 1080px) {
    .pdh-hero[b-8jappm0eiw],
    .pdh-season__trigger[b-8jappm0eiw],
    .pdh-period__top[b-8jappm0eiw],
    .pdh-period__footer[b-8jappm0eiw],
    .pdh-section-head[b-8jappm0eiw] {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: start;
    }

    .pdh-stats[b-8jappm0eiw] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdh-season__toggle[b-8jappm0eiw],
    .pdh-period__action[b-8jappm0eiw] {
        justify-content: flex-start;
    }

    .pdh-period__footer span[b-8jappm0eiw] {
        max-width: none;
        text-align: left;
    }
}

@media (max-width: 760px) {
    .pdh-wrap[b-8jappm0eiw] {
        padding: 18px 16px 84px;
    }

    .pdh-hero[b-8jappm0eiw] {
        margin-top: 18px;
    }

    .pdh-hero h1[b-8jappm0eiw] {
        font-size: 2.75rem;
    }

    .pdh-stats[b-8jappm0eiw],
    .pdh-period__metrics[b-8jappm0eiw] {
        grid-template-columns: 1fr;
    }

    .pdh-season__stats[b-8jappm0eiw] {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pdh-season__copy h3[b-8jappm0eiw],
    .pdh-state h2[b-8jappm0eiw] {
        font-size: 1.7rem;
    }

    .pdh-period__identity h4[b-8jappm0eiw] {
        font-size: 1.35rem;
    }
}
/* /Components/Pages/EngagementPoints/EPDashboard.razor.rz.scp.css */
.ep-dashboard-page[b-y56x6uzro2] {
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding-bottom: 5rem;
}

.ep-dashboard-backdrop[b-y56x6uzro2] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ep-dashboard-orb[b-y56x6uzro2] {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.5;
    animation: epFloat-b-y56x6uzro2 16s ease-in-out infinite;
}

.ep-dashboard-orb-cyan[b-y56x6uzro2] {
    top: 6rem;
    right: -8rem;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgb(34 211 238 / 38%) 0%, rgb(34 211 238 / 0%) 72%);
}

.ep-dashboard-orb-amber[b-y56x6uzro2] {
    left: -7rem;
    top: 26rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgb(251 191 36 / 24%) 0%, rgb(251 191 36 / 0%) 74%);
    animation-delay: -5s;
}

.ep-dashboard-grid[b-y56x6uzro2] {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0.25), rgb(0 0 0 / 0.75) 18%, rgb(0 0 0 / 0.15));
}

.ep-dashboard-shell[b-y56x6uzro2] {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100vw - 1.5rem));
    margin: 0 auto;
    padding-top: 1.5rem;
}

.ep-panel[b-y56x6uzro2],
.ep-state-card[b-y56x6uzro2] {
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgb(255 255 255 / 0.06) 0%, rgb(255 255 255 / 0.02) 14%, rgb(5 8 14 / 0.82) 100%),
        linear-gradient(135deg, rgb(8 145 178 / 0.12) 0%, rgb(15 23 42 / 0.8) 35%, rgb(6 8 13 / 0.92) 100%);
    backdrop-filter: blur(22px);
    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 0.08),
        0 28px 60px rgb(0 0 0 / 0.28);
}

.ep-panel[b-y56x6uzro2]::before,
.ep-state-card[b-y56x6uzro2]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgb(34 211 238 / 0.14), transparent 30%);
    pointer-events: none;
}

.ep-panel[b-y56x6uzro2] {
    padding: clamp(1.5rem, 2.6vw, 2.25rem);
}

.ep-panel-reveal[b-y56x6uzro2] {
    animation: epSectionIn-b-y56x6uzro2 0.7s ease both;
}

.ep-state-card[b-y56x6uzro2] {
    margin-top: 1.5rem;
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.ep-eyebrow[b-y56x6uzro2],
.ep-stat-label[b-y56x6uzro2],
.ep-hero-figure-label[b-y56x6uzro2],
.ep-ledger-period-eyebrow[b-y56x6uzro2] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgb(255 255 255 / 0.46);
}

.ep-display-title[b-y56x6uzro2],
.ep-section-title[b-y56x6uzro2],
.ep-hero-figure-value[b-y56x6uzro2],
.ep-stat-value[b-y56x6uzro2] {
    font-family: "Barlow Condensed", "Oswald", sans-serif;
    letter-spacing: 0.01em;
}

.ep-display-title[b-y56x6uzro2] {
    margin-top: 0.75rem;
    max-width: 12ch;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 0.94;
    font-weight: 800;
    color: white;
}

.ep-supporting-copy[b-y56x6uzro2],
.ep-section-copy[b-y56x6uzro2],
.ep-empty-copy[b-y56x6uzro2] {
    color: rgb(255 255 255 / 0.68);
    line-height: 1.65;
}

.ep-primary-action[b-y56x6uzro2],
.ep-ghost-action[b-y56x6uzro2] {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 999px;
    padding: 0.85rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ep-primary-action[b-y56x6uzro2] {
    color: white;
    background: linear-gradient(135deg, rgb(14 165 233 / 0.94), rgb(6 182 212 / 0.82));
    box-shadow: 0 18px 36px rgb(6 182 212 / 0.24);
}

.ep-ghost-action[b-y56x6uzro2] {
    color: rgb(244 250 255 / 0.84);
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(255 255 255 / 0.04);
}

.ep-primary-action:hover[b-y56x6uzro2],
.ep-ghost-action:hover[b-y56x6uzro2] {
    transform: translateY(-1px);
}

.ep-hero-band[b-y56x6uzro2] {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.ep-hero-copy[b-y56x6uzro2] {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.ep-hero-actions[b-y56x6uzro2],
.ep-hero-badges[b-y56x6uzro2] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.ep-hero-signal[b-y56x6uzro2] {
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.54);
    background: rgb(255 255 255 / 0.04);
}

.ep-hero-signal.is-live[b-y56x6uzro2] {
    border-color: rgb(34 211 238 / 0.2);
    color: rgb(165 243 252 / 0.95);
    background: rgb(34 211 238 / 0.1);
}

.ep-hero-stat-grid[b-y56x6uzro2] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ep-stat-tile[b-y56x6uzro2] {
    padding: 1rem 1.05rem;
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 1.35rem;
    background: rgb(255 255 255 / 0.04);
}

.ep-stat-value[b-y56x6uzro2] {
    display: block;
    margin-top: 0.45rem;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 0.95;
    font-weight: 800;
    color: white;
}

.ep-stat-meta[b-y56x6uzro2] {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.82rem;
    color: rgb(255 255 255 / 0.5);
}

.ep-hero-anchor[b-y56x6uzro2] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    border-radius: 1.75rem;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: linear-gradient(180deg, rgb(255 255 255 / 0.05), rgb(255 255 255 / 0.02) 22%, rgb(1 6 12 / 0.66) 100%);
}

.ep-hero-ring-wrap[b-y56x6uzro2] {
    position: relative;
}

.ep-hero-ring-wrap[b-y56x6uzro2]::after {
    content: "";
    position: absolute;
    inset: -10%;
    border-radius: 999px;
    background: radial-gradient(circle, rgb(34 211 238 / 0.16), transparent 60%);
    filter: blur(26px);
    z-index: -1;
}

.ep-hero-figure[b-y56x6uzro2] {
    text-align: center;
}

.ep-hero-figure-value[b-y56x6uzro2] {
    margin-top: 0.5rem;
    font-size: clamp(3.4rem, 7vw, 5.2rem);
    line-height: 0.9;
    font-weight: 800;
    color: white;
}

.ep-hero-figure-note[b-y56x6uzro2] {
    margin-top: 0.65rem;
    color: rgb(255 255 255 / 0.72);
    font-size: 0.95rem;
}

.ep-hero-figure-note-max[b-y56x6uzro2] {
    color: rgb(253 224 71 / 0.88);
}

.ep-fold-layout[b-y56x6uzro2] {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: start;
}

.ep-section-header[b-y56x6uzro2] {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ep-section-title[b-y56x6uzro2] {
    margin-top: 0.6rem;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 0.95;
    font-weight: 800;
    color: white;
}

.ep-section-copy[b-y56x6uzro2] {
    max-width: 26rem;
    font-size: 0.95rem;
}

.ep-panel-ledger[b-y56x6uzro2] {
    margin-top: 1.5rem;
}

.ep-section-header-ledger[b-y56x6uzro2] {
    align-items: center;
}

.ep-empty-copy[b-y56x6uzro2] {
    padding: 1rem 0 0.5rem;
    text-align: center;
}

.ep-ledger-list[b-y56x6uzro2] {
    display: grid;
    gap: 1.5rem;
}

/* ── Season card (outermost) ───────────────────────────── */

.ep-ledger-season[b-y56x6uzro2] {
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgb(255 255 255 / 0.055) 0%, rgb(255 255 255 / 0.015) 16%, rgb(3 7 13 / 0.82) 100%),
        linear-gradient(135deg, rgb(8 145 178 / 0.1) 0%, rgb(15 23 42 / 0.7) 40%, rgb(4 6 12 / 0.9) 100%);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.07), 0 24px 52px rgb(0 0 0 / 0.26);
    overflow: hidden;
}

.ep-ledger-season-header[b-y56x6uzro2] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(255 255 255 / 0.03);
}

.ep-ledger-season-label[b-y56x6uzro2] {
    font-family: "Barlow Condensed", "Oswald", sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    color: white;
}

.ep-ledger-season-entries[b-y56x6uzro2] {
    border-bottom: 1px solid rgb(255 255 255 / 0.06);
}

/* ── Month card (nested inside season) ─────────────────── */

.ep-ledger-month-list[b-y56x6uzro2] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
}

.ep-ledger-month[b-y56x6uzro2] {
    border: 1px solid rgb(255 255 255 / 0.07);
    border-radius: 1.5rem;
    background: rgb(255 255 255 / 0.025);
    overflow: hidden;
}

.ep-ledger-month-header[b-y56x6uzro2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.15rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
    background: rgb(255 255 255 / 0.02);
}

.ep-ledger-month-label[b-y56x6uzro2] {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.42);
}

.ep-ledger-month-entries[b-y56x6uzro2] {
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
}

/* ── Week cards inside month ────────────────────────────── */

.ep-ledger-month .ep-ledger-period[b-y56x6uzro2] {
    margin: 0.65rem;
    border-radius: 1.15rem;
}

.ep-ledger-month .ep-ledger-period:last-child[b-y56x6uzro2] {
    margin-bottom: 0.65rem;
}

.ep-ledger-period[b-y56x6uzro2] {
    --ep-ledger-accent: rgb(148 163 184 / 0.4);
    --ep-ledger-glow: transparent;
    --ep-ledger-header: rgb(255 255 255 / 0.03);
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgb(255 255 255 / 0.04), rgb(255 255 255 / 0.01) 20%, rgb(2 6 11 / 0.7) 100%);
}

.ep-ledger-period[b-y56x6uzro2]::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--ep-ledger-accent);
}

.ep-ledger-period-active[b-y56x6uzro2] {
    --ep-ledger-accent: rgb(34 211 238);
    --ep-ledger-glow: rgb(34 211 238 / 0.16);
    --ep-ledger-header: rgb(34 211 238 / 0.08);
}

.ep-ledger-period-deferred[b-y56x6uzro2] {
    --ep-ledger-accent: rgb(251 191 36);
    --ep-ledger-glow: rgb(251 191 36 / 0.14);
    --ep-ledger-header: rgb(251 191 36 / 0.07);
}

.ep-ledger-period-closed[b-y56x6uzro2] {
    --ep-ledger-accent: rgb(148 163 184 / 0.55);
    --ep-ledger-glow: rgb(148 163 184 / 0.08);
    --ep-ledger-header: rgb(255 255 255 / 0.035);
}

.ep-ledger-glow[b-y56x6uzro2] {
    position: absolute;
    inset: 0 auto 0 0;
    width: 10rem;
    background: linear-gradient(90deg, var(--ep-ledger-glow), transparent 80%);
    pointer-events: none;
}

.ep-ledger-period-header[b-y56x6uzro2] {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 1.5rem;
    background: var(--ep-ledger-header);
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
}

.ep-ledger-period-title-row[b-y56x6uzro2] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.8rem;
    align-items: baseline;
    margin-top: 0.35rem;
}

.ep-ledger-period-title[b-y56x6uzro2] {
    color: white;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ep-ledger-period-range[b-y56x6uzro2] {
    color: rgb(255 255 255 / 0.4);
    font-size: 0.8rem;
}

.ep-ledger-status[b-y56x6uzro2] {
    flex-shrink: 0;
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgb(255 255 255 / 0.12);
}

.ep-ledger-status-active[b-y56x6uzro2] {
    color: rgb(165 243 252);
    border-color: rgb(34 211 238 / 0.28);
    background: rgb(34 211 238 / 0.12);
}

.ep-ledger-status-deferred[b-y56x6uzro2] {
    color: rgb(253 224 71);
    border-color: rgb(251 191 36 / 0.28);
    background: rgb(251 191 36 / 0.12);
}

.ep-ledger-status-closed[b-y56x6uzro2],
.ep-ledger-status-neutral[b-y56x6uzro2] {
    color: rgb(255 255 255 / 0.55);
    background: rgb(255 255 255 / 0.05);
}

.ep-ledger-rows[b-y56x6uzro2] {
    position: relative;
}

.ep-ledger-row[b-y56x6uzro2] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    transition: background 160ms ease;
}

.ep-ledger-row + .ep-ledger-row[b-y56x6uzro2] {
    border-top: 1px solid rgb(255 255 255 / 0.04);
}

.ep-ledger-row:hover[b-y56x6uzro2] {
    background: rgb(255 255 255 / 0.025);
}

.ep-ledger-row-main[b-y56x6uzro2] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.ep-ledger-row-accent[b-y56x6uzro2] {
    width: 4px;
    height: 2.25rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.ep-ledger-entry-title[b-y56x6uzro2] {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

.ep-ledger-entry-subtitle[b-y56x6uzro2],
.ep-ledger-time[b-y56x6uzro2] {
    margin-top: 0.25rem;
    color: rgb(255 255 255 / 0.4);
    font-size: 0.75rem;
}

.ep-ledger-row-side[b-y56x6uzro2] {
    text-align: right;
    flex-shrink: 0;
}

.ep-ledger-amount[b-y56x6uzro2] {
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.ep-ledger-amount-positive[b-y56x6uzro2] {
    color: rgb(74 222 128);
}

.ep-ledger-amount-negative[b-y56x6uzro2] {
    color: rgb(248 113 113);
}

@media (max-width: 1100px) {
    .ep-hero-band[b-y56x6uzro2],
    .ep-fold-layout[b-y56x6uzro2] {
        grid-template-columns: 1fr;
    }

    .ep-hero-anchor[b-y56x6uzro2] {
        max-width: 34rem;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ep-dashboard-shell[b-y56x6uzro2] {
        width: min(100vw - 1rem, 100%);
    }

    .ep-display-title[b-y56x6uzro2] {
        max-width: none;
    }

    .ep-hero-stat-grid[b-y56x6uzro2] {
        grid-template-columns: 1fr;
    }

    .ep-section-header[b-y56x6uzro2],
    .ep-ledger-period-header[b-y56x6uzro2],
    .ep-ledger-row[b-y56x6uzro2] {
        flex-direction: column;
        align-items: start;
    }

    .ep-section-copy[b-y56x6uzro2] {
        max-width: none;
    }

    .ep-ledger-row-side[b-y56x6uzro2] {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ep-dashboard-orb[b-y56x6uzro2],
    .ep-panel-reveal[b-y56x6uzro2] {
        animation: none;
    }

    .ep-primary-action[b-y56x6uzro2],
    .ep-ghost-action[b-y56x6uzro2],
    .ep-ledger-row[b-y56x6uzro2] {
        transition: none;
    }
}

@keyframes epFloat-b-y56x6uzro2 {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 18px, 0);
    }
}

@keyframes epSectionIn-b-y56x6uzro2 {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/*
#Introduction {
    background-color: #6a33ff;
}

    #Introduction::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(img/bkg.png) !important;
        background-size: 100% auto;
        background-position: center;
        z-index: 0;
        opacity: 0.5;
    }

.button-primary {
    background-image: url(img/btn-primary.png);
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

#Introduction::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/bkg.png) !important;
    background-color: #6a33ff;
    background-size: 100% auto;
    background-position: center;
    z-index: -1;
}

.passion-one-regular {
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.passion-one-bold {
    font-family: "Passion One", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.passion-one-black {
    font-family: "Passion One", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamer-image, .beast-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gamer-image {
    animation: showGamer 10s infinite;
}

.beast-image {
    animation: showBeast 10s infinite;
}

.progress-bar-1, .progress-bar-2 {
    width: 20%;
    transition: width 0.5s ease-in-out;
}

.progress-bar-1 {
    animation: progressBar1 8s infinite;
}

.progress-bar-2 {
    animation: progressBar2 8s infinite;
}

@keyframes showGamer {
    0%, 95% {
        opacity: 1;
    }

    95.1%, 100% {
        opacity: 0;
    }
}

@keyframes showBeast {
    0%, 80% {
        opacity: 0;
    }

    80.1%, 100% {
        opacity: 1;
    }
}

@keyframes progressBar1 {
    0% {
        width: 20%;
    }

    20% {
        width: 10%;
    }

    40% {
        width: 40%;
    }

    60% {
        width: 20%;
    }

    80% {
        width: 90%;
    }

    100% {
        width: 20%;
    }
}

@keyframes progressBar2 {
    0% {
        width: 20%;
    }

    20% {
        width: 30%;
    }

    40% {
        width: 20%;
    }

    60% {
        width: 90%;
    }

    80% {
        width: 10%;
    }

    100% {
        width: 20%;
    }
}

@keyframes hover {
    0% {
        margin-bottom: 0;
    }

    50% {
        margin-bottom: 10px;
    }

    100% {
        margin-bottom: 0;
    }
}

@keyframes slowBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(-10px) scale(1.05);
    }
}

@keyframes growIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cash-floater {
    animation: growIn 0.5s ease-out forwards, slowBounce 2s ease-in-out infinite 0.5s;
    position: absolute;  
    left: 50%; 
    transform: translateX(-50%);
    background: linear-gradient(45deg, #31fff5 0%, #00b4d8 100%);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 8px -8px 16px rgba(33, 5, 55, 0.28);
    font-size: 1.6rem;
    color: #ffffff;
    min-width: 80px;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 1px 1px rgba(1, 0, 3, 0.158);
    transform-origin: center bottom;
    z-index: 999999999;
    bottom: calc(80% + 2vw); 

    @media (min-width: 2400px){
        bottom: calc(73% + 2vw); 
    }
}

    .cash-floater::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #00e7ef;
    }

    .cash-floater::before {
        content: '$';
        position: absolute;
        left: 12px;
        color: rgba(5, 1, 14, 0.172);
        font-weight: 600;
        font-size: 1.2rem;
        text-shadow: none;
    }

.cash-floater-2 {
    background: linear-gradient(-25deg, #ff00ff 0%, #ff00b3 100%);
    box-shadow: -8px -8px 16px rgba(33, 5, 55, 0.28);
}

    .cash-floater-2::after {
        border-top: 8px solid #ff00ff;
    }

.cash-floater span {
    margin-left: 12px;
}

.number-transition {
    transition: all 0.5s ease-out;
}
*/

/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");*/

/*@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    :root {*/
        /* Deep gaming dark theme */
        /*--background: 0 0% 0% / 0;
        --foreground: 210 40% 98%;
        --card: 243 50% 12%;
        --card-foreground: 210 40% 98%;
        --popover: 243 50% 12%;
        --popover-foreground: 210 40% 98%;*/
        /* Vibrant violet primary */
        /*--primary: 263 70% 50%;
        --primary-foreground: 210 40% 98%;*/
        /* Accent colors - gaming neons */
        /*--secondary: 243 40% 20%;
        --secondary-foreground: 210 40% 98%;
        --muted: 243 30% 18%;
        --muted-foreground: 0 0% 100% / 0.8;
        --accent: 180 85% 55%;
        --accent-foreground: 243 75% 8%;
        --destructive: 0 84% 60%;
        --destructive-foreground: 210 40% 98%;
        --border: 263 40% 40% / 0.3;
        --input: 263 40% 40% / 0.3;
        --ring: 263 70% 50%;
        --radius: 0.75rem;*/
        /* Custom gaming colors */
        /*--npg-violet: 263 70% 50%;
        --npg-pink: 328 85% 60%;
        --npg-fuchsia: 295 80% 55%;
        --npg-cyan: 180 85% 55%;
        --npg-lime: 82 85% 55%;
        --npg-orange: 25 95% 55%;
        --npg-sky: 200 85% 55%;*/
        /* Gradients */
        /*--gradient-hero: linear-gradient(135deg, hsl(263 70% 35%) 0%, hsl(243 75% 8%) 50%, hsl(243 75% 5%) 100%);
        --gradient-violet: linear-gradient(135deg, hsl(263 70% 50%) 0%, hsl(295 80% 55%) 100%);
        --gradient-cyan: linear-gradient(135deg, hsl(180 85% 55%) 0%, hsl(82 85% 55%) 100%);
        --gradient-pink: linear-gradient(135deg, hsl(328 85% 60%) 0%, hsl(295 80% 55%) 100%);
        --gradient-orange: linear-gradient(135deg, hsl(25 95% 55%) 0%, hsl(45 95% 55%) 100%);
        --gradient-card: linear-gradient(180deg, hsl(243 50% 15%) 0%, hsl(243 50% 10%) 100%);*/
        /* Shadows & Glows */
        /*--shadow-glow-cyan: 0 0 40px hsl(180 85% 55% / 0.3);
        --shadow-glow-pink: 0 0 40px hsl(328 85% 60% / 0.3);
        --shadow-glow-violet: 0 0 40px hsl(263 70% 50% / 0.4);
        --shadow-card: 0 25px 50px -12px hsl(0 0% 0% / 0.5);
        --sidebar-background: 243 50% 10%;
        --sidebar-foreground: 210 40% 98%;
        --sidebar-primary: 263 70% 50%;
        --sidebar-primary-foreground: 210 40% 98%;
        --sidebar-accent: 243 40% 20%;
        --sidebar-accent-foreground: 210 40% 98%;
        --sidebar-border: 263 40% 25%;
        --sidebar-ring: 263 70% 50%;
    }

    .dark {
        --background: 243 75% 8%;
        --foreground: 210 40% 98%;
        --card: 243 50% 12%;
        --card-foreground: 210 40% 98%;
        --popover: 243 50% 12%;
        --popover-foreground: 210 40% 98%;
        --primary: 263 70% 50%;
        --primary-foreground: 210 40% 98%;
        --secondary: 243 40% 20%;
        --secondary-foreground: 210 40% 98%;
        --muted: 243 30% 18%;
        --muted-foreground: 243 20% 60%;
        --accent: 180 85% 55%;
        --accent-foreground: 243 75% 8%;
        --destructive: 0 62% 30%;
        --destructive-foreground: 210 40% 98%;
        --border: 263 40% 40% / 0.3;
        --input: 263 40% 40% / 0.3;
        --ring: 263 70% 50%;
    }
}

@layer base {
    * {
        @apply border-border;
    }

    body {
        @apply text-foreground font-sans antialiased;
        font-family: "Poppins", system-ui, sans-serif;
        background: radial-gradient(circle at bottom left, rgb(0 0 0), rgb(117 0 255), rgb(40, 0, 135));
        background-attachment: fixed;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Poppins", system-ui, sans-serif;
        @apply font-bold tracking-tight;
    }
}

@layer utilities {
    .bg-background {
        background: radial-gradient(circle at bottom left, rgb(0 0 0), rgb(117 0 255), rgb(40, 0, 135));
    }

    .text-gradient-violet {
        @apply bg-clip-text text-transparent;
        background-image: var(--gradient-violet);
    }

    .text-gradient-cyan {
        @apply bg-clip-text text-transparent;
        background-image: var(--gradient-cyan);
    }

    .text-gradient-pink {
        @apply bg-clip-text text-transparent;
        background-image: var(--gradient-pink);
    }

    .bg-gradient-hero {
        background: var(--gradient-hero);
    }

    .bg-gradient-violet {
        background: var(--gradient-violet);
    }

    .bg-gradient-cyan {
        background: var(--gradient-cyan);
    }

    .bg-gradient-pink {
        background: var(--gradient-pink);
    }

    .bg-gradient-orange {
        background: var(--gradient-orange);
    }

    .bg-gradient-card {
        background: var(--gradient-card);
    }

    .glow-cyan {
        box-shadow: var(--shadow-glow-cyan);
    }

    .glow-pink {
        box-shadow: var(--shadow-glow-pink);
    }

    .glow-violet {
        box-shadow: var(--shadow-glow-violet);
    }

    .card-shadow {
        box-shadow: var(--shadow-card);
    }*/

    /* Animated gradient border */
    /*.gradient-border {
        position: relative;
        background: hsl(var(--card));
        border-radius: var(--radius);
    }

        .gradient-border::before {
            content: "";
            position: absolute;
            inset: -2px;
            border-radius: calc(var(--radius) + 2px);
            background: var(--gradient-violet);
            z-index: -1;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .gradient-border:hover::before {
            opacity: 1;
        }*/

    /* Glass morphism */
    /*.glass {
        background: linear-gradient(135deg, hsl(0deg 0% 0% / 31%) 0%, hsl(266.05deg 100% 34.77% / 36%) 100%);
        backdrop-filter: blur(12px);
        border: 1px solid hsl(var(--border) / 0.5);
    }*/

    /* Glass Card Base - now uses same styles as .glass */
    /*.glass-card {
        background: linear-gradient(135deg, hsl(0deg 0% 0% / 31%) 0%, hsl(266.05deg 100% 34.77% / 36%) 100%);
        backdrop-filter: blur(12px);
        border: 1px solid hsl(var(--border) / 0.5);
    }*/

    /* Glass Card Violet */
    /*.glass-card-violet {
        position: relative;
        background: linear-gradient(135deg, hsl(267.36deg 100% 49.02% / 40%) 0%, hsl(var(--card) / 0.4) 100%);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(265.22deg 81.18% 33.33%), inset 0 1px 0 hsl(267.4deg 100% 50% / 51%);
    }

        .glass-card-violet::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(250deg 85% 60% / 40%) 0%, hsl(263deg 70% 50% / 40%) 50%, hsl(295deg 80% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-violet:hover::before {
            opacity: 1;
        }

        .glass-card-violet::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(270deg 80% 35% / 0.25) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Cyan */
    /*.glass-card-cyan {
        position: relative;
        background: linear-gradient(135deg, hsl(181.04deg 100% 62.25% / 37%) 0%, hsl(265.75deg 98.21% 43.73%) 100%);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-card-cyan::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(263deg 70% 50% / 40%) 0%, hsl(180deg 85% 55% / 40%) 50%, hsl(82deg 85% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-cyan:hover::before {
            opacity: 1;
        }

        .glass-card-cyan::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-cyan) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Pink */
    /*.glass-card-pink {
        position: relative;
        background: linear-gradient(135deg, hsl(333.52deg 100% 41.3% / 80%) 0%, hsl(341.94deg 100% 31.71% / 40%) 100%);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-card-pink::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(263deg 70% 50% / 40%) 0%, hsl(328deg 85% 60% / 40%) 50%, hsl(295deg 80% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-pink:hover::before {
            opacity: 1;
        }

        .glass-card-pink::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-pink) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Green */
    /*.glass-card-green {
        position: relative;
        background: linear-gradient(135deg, hsl(130.75deg 100% 50% / 71%), hsl(95.11deg 100% 50% / 65%));
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-card-green::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(130deg 100% 50% / 40%) 0%, hsl(95deg 100% 50% / 40%) 50%, hsl(82deg 85% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-green:hover::before {
            opacity: 1;
        }

        .glass-card-green::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-lime) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Lime - alias for green with lime styling */
    /*.glass-card-lime {
        position: relative;
        background: linear-gradient(135deg, hsl(82deg 85% 55% / 20%) 0%, hsl(var(--card) / 0.6) 100%);
        backdrop-filter: blur(20px);
        border: 1px solid hsl(82deg 85% 55% / 30%);
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(82deg 85% 55% / 0.1);
    }

        .glass-card-lime::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(82deg 85% 55% / 50%) 0%, hsl(95deg 85% 50% / 30%) 50%, hsl(120deg 60% 45% / 20%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-lime:hover::before {
            opacity: 1;
        }

        .glass-card-lime::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(82deg 85% 55% / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Card Orange */
    /*.glass-card-orange {
        position: relative;
        background: linear-gradient(135deg, hsl(27.3deg 100% 50% / 92%) 0%, hsl(38.43deg 100% 50% / 47%) 100%);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-card-orange::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(328deg 85% 60% / 40%) 0%, hsl(25deg 95% 55% / 40%) 50%, hsl(45deg 95% 55% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-card-orange:hover::before {
            opacity: 1;
        }

        .glass-card-orange::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-orange) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Glass Button */
    /*.glass-button {
        position: relative;
        background: linear-gradient(135deg, hsl(var(--card) / 0.8) 0%, hsl(var(--card) / 0.4) 100%);
        backdrop-filter: blur(20px);
        border: none;
        box-shadow: 0 8px 32px hsl(0 0% 0% / 0.3), inset 0 1px 0 hsl(var(--foreground) / 0.05);
    }

        .glass-button::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient( 135deg, hsl(263deg 70% 50% / 40%) 0%, hsl(180deg 85% 55% / 40%) 50%, hsl(328deg 85% 60% / 40%) 100% );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .glass-button:hover::before {
            opacity: 1;
        }

        .glass-button::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(ellipse at 50% 0%, hsl(var(--npg-violet) / 0.15) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }*/

    /* Floating animation */
    /*@keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .animate-float {
        animation: float 3s ease-in-out infinite;
    }*/

    /* Pulse glow animation */
    /*@keyframes pulse-glow {
        0%, 100% {
            box-shadow: 0 0 20px hsl(180 85% 55% / 0.3);
        }

        50% {
            box-shadow: 0 0 40px hsl(180 85% 55% / 0.6);
        }
    }

    .animate-pulse-glow {
        animation: pulse-glow 2s ease-in-out infinite;
    }*/

    /* Shimmer effect */
    /*@keyframes shimmer {
        0% {
            background-position: -200% 0;
        }

        100% {
            background-position: 200% 0;
        }
    }

    .animate-shimmer {
        background: linear-gradient(90deg, transparent, hsl(var(--foreground) / 0.1), transparent);
        background-size: 200% 100%;
        animation: shimmer 2s infinite;
    }*/

    /* Status-based gradient cards */
    /*.status-card-past {
        @apply rounded-2xl p-6 overflow-hidden;
        background: linear-gradient(135deg, hsl(328 85% 50%) 0%, hsl(295 80% 45%) 100%);
    }

    .status-card-upcoming {
        @apply rounded-2xl p-6 overflow-hidden;
        background: linear-gradient(135deg, hsl(200 85% 50%) 0%, hsl(220 80% 45%) 100%);
    }

    .status-card-active {
        @apply rounded-2xl p-6 overflow-hidden;
        background: linear-gradient(135deg, hsl(82 85% 45%) 0%, hsl(120 70% 40%) 100%);
    }

    .status-card-default {
        @apply rounded-2xl p-6 overflow-hidden;
        background: linear-gradient(135deg, hsl(328 85% 50%) 0%, hsl(295 80% 45%) 100%);
    }*/

    /* Tournament detail card styles */
    /*.card-tournament-open {
        @apply min-h-[140px];
        background: linear-gradient(135deg, hsl(259 80% 45% / 0.8) 0%, hsl(295 70% 40% / 0.8) 100%);
        border: 1px solid hsl(var(--foreground) / 0.1);
    }

    .card-tournament-live {
        background: linear-gradient(135deg, hsl(142 70% 35% / 0.9) 0%, hsl(160 60% 30% / 0.9) 100%);
        border: 1px solid hsl(var(--foreground) / 0.1);
    }

    .card-tournament-soon {
        background: linear-gradient(135deg, hsl(200 80% 45% / 0.9) 0%, hsl(220 70% 40% / 0.9) 100%);
        border: 1px solid hsl(var(--foreground) / 0.1);
    }

    .card-win {
        background: linear-gradient(135deg, hsl(45 90% 45% / 0.9) 0%, hsl(35 85% 40% / 0.9) 100%);
        border: 1px solid hsl(var(--foreground) / 0.1);
    }

    .card-org-wins {
        backdrop-filter: blur(12px);
    }

    .bg-gradient-overlay {
        background: linear-gradient(to top, hsl(var(--background)) 0%, hsl(var(--background) / 0.8) 30%, transparent 100%);
    }
}*/

/*@import url("https://www.nextprogamer.com/tailwind-app.css");*/
/* /Components/Pages/Squads/SquadEditor.razor.rz.scp.css */
.squad-editor-shell[b-iij27xq6qp] {
    box-sizing: border-box;
    max-width: min(42rem, 100%);
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
    overflow-x: clip;
}

.squad-editor-header[b-iij27xq6qp] {
    gap: 1rem;
}

.squad-editor-title[b-iij27xq6qp] {
    min-width: 0;
    margin: 0;
    line-height: 1.12;
}

.squad-editor-back[b-iij27xq6qp] {
    flex: 0 0 auto;
    white-space: nowrap;
}

.squad-editor-form[b-iij27xq6qp],
.squad-editor-field[b-iij27xq6qp],
.squad-editor-teammates[b-iij27xq6qp],
.squad-editor-member-card[b-iij27xq6qp] {
    min-width: 0;
}

.squad-editor-form input[b-iij27xq6qp],
.squad-editor-form select[b-iij27xq6qp] {
    box-sizing: border-box;
    max-width: 100%;
}

.squad-editor-help[b-iij27xq6qp] {
    max-width: 42rem;
    line-height: 1.35;
}

.squad-editor-locked-field[b-iij27xq6qp] {
    position: relative;
    min-width: 0;
    border-radius: 0.75rem;
    border: 1px solid rgba(103, 232, 249, 0.18);
    background:
        linear-gradient(135deg, rgba(8, 145, 178, 0.14), rgba(59, 7, 100, 0.34)),
        rgba(24, 3, 76, 0.44);
    padding: 0.75rem 0.9rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.squad-editor-locked-label[b-iij27xq6qp] {
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(216, 180, 254, 0.82);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.squad-editor-locked-value[b-iij27xq6qp] {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    padding-right: 4.3rem;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
}

.squad-editor-locked-badge[b-iij27xq6qp] {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.22rem;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 999px;
    background: rgba(14, 116, 144, 0.24);
    color: rgba(207, 250, 254, 0.92);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: 0.27rem 0.42rem;
    text-transform: uppercase;
}

.squad-editor-locked-badge-icon[b-iij27xq6qp] {
    width: 0.72rem;
    height: 0.72rem;
    stroke-width: 3;
}

.squad-editor-actions button[b-iij27xq6qp],
.squad-editor-actions a[b-iij27xq6qp] {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 640px) {
    .squad-editor-shell[b-iij27xq6qp] {
        min-height: calc(100svh - 1rem);
        padding-top: 5.25rem;
        padding-bottom: 7rem;
    }

    .squad-editor-header[b-iij27xq6qp] {
        align-items: flex-start;
        padding-top: 0.75rem;
        padding-bottom: 1.25rem;
    }

    .squad-editor-title[b-iij27xq6qp] {
        font-size: clamp(1.45rem, 7vw, 1.75rem);
    }

    .squad-editor-back[b-iij27xq6qp] {
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        background: rgba(37, 5, 100, 0.48);
        padding: 0.4rem 0.65rem;
        line-height: 1;
    }

    .squad-editor-form[b-iij27xq6qp] {
        row-gap: 1.05rem;
    }

    .squad-editor-picker-grid[b-iij27xq6qp] {
        gap: 1.05rem;
    }

    .squad-editor-locked-field[b-iij27xq6qp] {
        padding: 0.85rem 0.9rem;
    }

    .squad-editor-locked-value[b-iij27xq6qp] {
        font-size: 1rem;
    }

    .squad-editor-form input[b-iij27xq6qp],
    .squad-editor-form select[b-iij27xq6qp] {
        min-height: 2.75rem;
        border-radius: 0.75rem;
        font-size: 1rem;
    }

    .squad-editor-teammates[b-iij27xq6qp] {
        border-radius: 0.9rem;
        background: rgba(64, 7, 143, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.9rem;
    }

    .squad-editor-teammates legend[b-iij27xq6qp] {
        float: none;
        width: auto;
        padding-right: 0.35rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }

    .squad-editor-teammates legend + *[b-iij27xq6qp] {
        clear: none;
    }

    .squad-editor-help[b-iij27xq6qp] {
        margin-top: 0;
    }

    .squad-editor-member-card[b-iij27xq6qp] {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        border-radius: 0.85rem;
        padding: 0.75rem;
        background: rgba(33, 2, 92, 0.34);
    }

    .squad-editor-member-card label[b-iij27xq6qp] {
        margin-bottom: 0.25rem;
    }

    .squad-editor-member-card input[b-iij27xq6qp],
    .squad-editor-member-card select[b-iij27xq6qp] {
        min-height: 2.55rem;
    }

    .squad-editor-actions[b-iij27xq6qp] {
        align-items: stretch;
        gap: 0.8rem;
        padding-top: 0.1rem;
    }

    .squad-editor-actions button[b-iij27xq6qp] {
        justify-content: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 380px) {
    .squad-editor-header[b-iij27xq6qp] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .squad-editor-actions[b-iij27xq6qp] {
        flex-direction: column;
    }

    .squad-editor-actions a[b-iij27xq6qp] {
        justify-content: center;
    }
}
/* /Components/Pages/Tournaments/BracketViewer.razor.rz.scp.css */
/* Pulsing glow for active/ready matches */
.bracket-match-ready[b-t36iaobti5] {
    animation: pulseGlow-b-t36iaobti5 2s ease-in-out infinite;
}

@keyframes pulseGlow-b-t36iaobti5 {
    0%, 100% {
        box-shadow: 0 0 8px rgba(139, 92, 246, 0.5),
                    0 0 16px rgba(139, 92, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.9),
                    0 0 40px rgba(6, 182, 212, 0.4),
                    inset 0 0 12px rgba(139, 92, 246, 0.1);
    }
}

/* Subtle CRT scan-line texture */
.scan-overlay[b-t36iaobti5] {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255, 255, 255, 0.015) 3px,
        rgba(255, 255, 255, 0.015) 4px
    );
    pointer-events: none;
}

/* Champion golden aura */
.champion-glow[b-t36iaobti5] {
    filter: drop-shadow(0 0 24px rgba(234, 179, 8, 0.5));
    animation: championAura-b-t36iaobti5 3s ease-in-out infinite;
}

@keyframes championAura-b-t36iaobti5 {
    0%, 100% {
        filter: drop-shadow(0 0 16px rgba(234, 179, 8, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(234, 179, 8, 0.8))
                drop-shadow(0 0 80px rgba(234, 179, 8, 0.3));
    }
}
/* /Components/Pages/Tournaments/TournamentBracket.razor.rz.scp.css */
/* Stream layout CSS moved to Components/Shared/StreamOverlay.razor.css */
/* /Components/Pages/Tournaments/TournamentRegistrationFlow.razor.rz.scp.css */
.title-text[b-qd3mguo4ly] {
/*    text-shadow: 0 0 1px #b388ff;*/
    background: -webkit-radial-gradient(20% 80%, #b388ff, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* /Components/Shared/Draw/ArcDigitCountdown.razor.rz.scp.css */
.arc-cd[b-sknnrtbhat] {
    display: flex;
    align-items: center;
    gap: 6px;
}
.arc-cd__cell[b-sknnrtbhat] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.arc-cd__sep[b-sknnrtbhat] {
    color: rgba(254, 250, 255, 0.18);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 18px;
}
.arc-cd__unit[b-sknnrtbhat] {
    font: 600 9px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(254, 250, 255, 0.55);
}
/* /Components/Shared/Draw/PrizeDropCard.razor.rz.scp.css */
/* NOTE: Anton / JetBrains Mono are declared in tailwind.config.js with system fallbacks
   (Impact/Oswald for display, ui-monospace/SFMono for mono). To load the real Google
   Fonts, add the <link> tag to App.razor's <head>. */

/* ---------- Shared variant keyframes ---------- */
@keyframes prizedrop-pulse-ring-b-cj7hjpjon1   { 0% { transform: scale(0.8); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes prizedrop-scan-b-cj7hjpjon1         { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes prizedrop-flicker-b-cj7hjpjon1      { 0%, 41%, 43%, 100% { opacity: 1; } 42% { opacity: .4; } 77% { opacity: .85; } 78% { opacity: .3; } 79% { opacity: 1; } }
@keyframes prizedrop-flicker-fast-b-cj7hjpjon1 { 0%, 40%, 60%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes prizedrop-shake-slow-b-cj7hjpjon1   { 0%, 100% { transform: translate(0, 0) rotate(0); } 25% { transform: translate(.5px, -.5px) rotate(.1deg); } 50% { transform: translate(-.3px, .4px) rotate(-.05deg); } 75% { transform: translate(.2px, .3px) rotate(.08deg); } }
@keyframes prizedrop-glow-pulse-b-cj7hjpjon1   { 0%, 100% { filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 24px currentColor); } 50% { filter: drop-shadow(0 0 16px currentColor) drop-shadow(0 0 48px currentColor); } }
@keyframes prizedrop-grid-drift-b-cj7hjpjon1   { 0% { background-position: 0 0; } 100% { background-position: 40px 40px; } }
@keyframes prizedrop-bolt-strike-b-cj7hjpjon1  { 0%, 90%, 100% { opacity: 0; } 92%, 96% { opacity: 1; } 94% { opacity: .3; } }
@keyframes prizedrop-ticker-b-cj7hjpjon1       { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes prizedrop-spark-rise-b-cj7hjpjon1   { 0% { transform: translateY(20px) scale(0); opacity: 0; } 30% { opacity: 1; transform: translateY(0) scale(1); } 100% { transform: translateY(-80px) scale(.3); opacity: 0; } }

/* ---------- Root card ---------- */
.tc-root[b-cj7hjpjon1] {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 180px;
    background: linear-gradient(135deg, #0a0230 0%, #1a0555 55%, #2a0a5e 100%);
}

.tc-root.tc-accent-cyan[b-cj7hjpjon1] {
    border: 1px solid rgba(0, 240, 255, 0.22);
    box-shadow: 0 0 0 1px rgba(0,240,255,0.10), 0 20px 60px rgba(0,240,255,0.14);
}

.tc-root.tc-accent-magenta[b-cj7hjpjon1] {
    border: 1px solid rgba(255, 46, 147, 0.35);
    box-shadow: 0 0 0 1px rgba(255,46,147,0.15), 0 20px 60px rgba(255,46,147,0.22);
}

/* ---------- Electric grid ---------- */
.tc-grid[b-cj7hjpjon1] {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 20%, transparent 80%);
            mask-image: radial-gradient(ellipse at 60% 50%, black 20%, transparent 80%);
    pointer-events: none;
}

.tc-accent-cyan .tc-grid[b-cj7hjpjon1] {
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.13) 1px, transparent 1px);
}

.tc-accent-magenta .tc-grid[b-cj7hjpjon1] {
    background-image:
        linear-gradient(rgba(255, 46, 147, 0.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 46, 147, 0.13) 1px, transparent 1px);
}

/* ---------- Lightning bolts ---------- */
.tc-bolt[b-cj7hjpjon1] {
    position: absolute;
    top: -10px;
    opacity: 0;
    pointer-events: none;
    color: #00f0ff;
    filter: drop-shadow(0 0 8px #00f0ff);
}

.tc-accent-magenta .tc-bolt[b-cj7hjpjon1] {
    color: #ff2e93;
    filter: drop-shadow(0 0 8px #ff2e93);
}

.tc-bolt-1[b-cj7hjpjon1] { left: 22%; width: 60px; height: 200px; }
.tc-bolt-2[b-cj7hjpjon1] { right: 38%; width: 50px; height: 200px; }

/* ---------- Scan sweep ---------- */
.tc-scan[b-cj7hjpjon1] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.13), transparent);
}

.tc-accent-magenta .tc-scan[b-cj7hjpjon1] {
    background: linear-gradient(90deg, transparent, rgba(255, 46, 147, 0.13), transparent);
}

/* ---------- Timer panel ---------- */
.tc-timer[b-cj7hjpjon1] {
    position: relative;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.45);
    min-width: 200px;
}

.tc-accent-cyan .tc-timer[b-cj7hjpjon1] {
    border: 1px solid rgba(0, 240, 255, 0.33);
    box-shadow: inset 0 0 40px rgba(0, 240, 255, 0.13);
}

.tc-accent-magenta .tc-timer[b-cj7hjpjon1] {
    border: 1px solid rgba(255, 46, 147, 0.33);
    box-shadow: inset 0 0 40px rgba(255, 46, 147, 0.13);
}

.tc-digit[b-cj7hjpjon1] {
    text-shadow: 0 0 14px rgba(0, 240, 255, 0.66);
    font-variant-numeric: tabular-nums;
}

.tc-accent-magenta .tc-digit[b-cj7hjpjon1] {
    text-shadow: 0 0 14px rgba(255, 46, 147, 0.66);
}

.tc-charge-fill[b-cj7hjpjon1] {
    height: 100%;
    width: 78%;
    background: linear-gradient(90deg, #00f0ff, #ff2e93);
    box-shadow: 0 0 10px #00f0ff;
}

.tc-accent-magenta .tc-charge-fill[b-cj7hjpjon1] {
    background: linear-gradient(90deg, #ff2e93, #ff8a00);
    box-shadow: 0 0 10px #ff2e93;
}

/* ---------- CTA ---------- */
.tc-cta[b-cj7hjpjon1] {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00f0ff, #ff2e93);
    color: #0a0230;
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.47), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.tc-accent-magenta .tc-cta[b-cj7hjpjon1] {
    background: linear-gradient(135deg, #ff2e93, #ff8a00);
    box-shadow: 0 8px 32px rgba(255, 46, 147, 0.47), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.tc-cta-shine[b-cj7hjpjon1] {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

/* ---------- Headline ---------- */
.tc-headline[b-cj7hjpjon1] {
    font-family: 'Anton', Impact, Oswald, system-ui, sans-serif;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 0.95;
    text-shadow: 0 0 24px rgba(0, 240, 255, 0.4);
}

.tc-accent-magenta .tc-headline[b-cj7hjpjon1] {
    text-shadow: 0 0 24px rgba(255, 46, 147, 0.4);
}

.tc-headline-accent[b-cj7hjpjon1] { color: #00f0ff; }
.tc-accent-magenta .tc-headline-accent[b-cj7hjpjon1] { color: #ff2e93; }

.tc-dot[b-cj7hjpjon1] {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: #00f0ff;
    color: #00f0ff;
    box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}
.tc-accent-magenta .tc-dot[b-cj7hjpjon1] { background: #ff2e93; color: #ff2e93; }

.tc-rail-text[b-cj7hjpjon1] { color: #00f0ff; }
.tc-accent-magenta .tc-rail-text[b-cj7hjpjon1] { color: #ff2e93; }

/* =========================================================
   VARIANT 2: Arena Broadcast
   ========================================================= */
.arn-root[b-cj7hjpjon1] {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 200px;
    background: linear-gradient(180deg, #1a0555 0%, #0a0230 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.arn-lights[b-cj7hjpjon1] { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.arn-light[b-cj7hjpjon1]  { position: absolute; top: -40%; width: 220px; height: 500px; transform-origin: top; }
.arn-light-1[b-cj7hjpjon1] { left: 20%; transform: rotate(18deg); }
.arn-light-2[b-cj7hjpjon1] { left: 55%; transform: rotate(-18deg); }
.arn-light-3[b-cj7hjpjon1] { right: 10%; transform: rotate(22deg); }

.arn-accent-yellow  .arn-light-1[b-cj7hjpjon1] { background: radial-gradient(ellipse at 50% 0%, rgba(245, 255, 61, 0.2) 0%, transparent 50%); }
.arn-accent-magenta .arn-light-1[b-cj7hjpjon1] { background: radial-gradient(ellipse at 50% 0%, rgba(255, 46, 147, 0.2) 0%, transparent 50%); }
.arn-light-2[b-cj7hjpjon1] { background: radial-gradient(ellipse at 50% 0%, rgba(0, 240, 255, 0.2) 0%, transparent 50%); }
.arn-light-3[b-cj7hjpjon1] { background: radial-gradient(ellipse at 50% 0%, rgba(255, 46, 147, 0.2) 0%, transparent 50%); }

.arn-seats[b-cj7hjpjon1] {
    position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 1px, transparent 1.5px);
    background-size: 12px 12px;
    -webkit-mask-image: linear-gradient(180deg, transparent, black);
            mask-image: linear-gradient(180deg, transparent, black);
    pointer-events: none;
}

.arn-pill[b-cj7hjpjon1] {
    background: #f5ff3d;
    color: #0a0230;
}
.arn-accent-magenta .arn-pill[b-cj7hjpjon1] { background: #ff2e93; color: #fefaff; }

.arn-onair-text[b-cj7hjpjon1] { color: #f5ff3d; }
.arn-accent-magenta .arn-onair-text[b-cj7hjpjon1] { color: #ff2e93; }

.arn-onair-dot[b-cj7hjpjon1] {
    width: 8px; height: 8px; border-radius: 9999px;
    background: #f5ff3d; color: #f5ff3d;
}
.arn-accent-magenta .arn-onair-dot[b-cj7hjpjon1] { background: #ff2e93; color: #ff2e93; }

.arn-headline-white[b-cj7hjpjon1] {
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.4);
}
.arn-headline-accent[b-cj7hjpjon1] {
    color: #f5ff3d;
    text-shadow: 0 0 30px rgba(245, 255, 61, 0.53);
}
.arn-accent-magenta .arn-headline-accent[b-cj7hjpjon1] {
    color: #ff2e93;
    text-shadow: 0 0 30px rgba(255, 46, 147, 0.53);
}

.arn-board[b-cj7hjpjon1] {
    display: flex; gap: 6px; padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.arn-digit[b-cj7hjpjon1] {
    position: relative; min-width: 38px; text-align: center;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-weight: 700;
    font-size: 48px; line-height: 1;
    color: #f5ff3d;
    text-shadow: 0 0 10px rgba(245, 255, 61, 0.67), 0 0 2px white;
}
.arn-accent-magenta .arn-digit[b-cj7hjpjon1] {
    color: #ff2e93;
    text-shadow: 0 0 10px rgba(255, 46, 147, 0.67), 0 0 2px white;
}

.arn-digit-label[b-cj7hjpjon1] {
    font-size: 8px; letter-spacing: 0.2em;
    color: rgba(254, 250, 255, 0.42);
    margin-top: 2px;
}

.arn-sep[b-cj7hjpjon1] { display: flex; flex-direction: column; justify-content: center; padding: 0 2px; gap: 4px; }
.arn-sep-dot[b-cj7hjpjon1] {
    width: 3px; height: 3px; border-radius: 9999px;
    background: #f5ff3d; box-shadow: 0 0 4px #f5ff3d;
}
.arn-accent-magenta .arn-sep-dot[b-cj7hjpjon1] { background: #ff2e93; box-shadow: 0 0 4px #ff2e93; }

.arn-ticker[b-cj7hjpjon1] {
    position: relative; height: 36px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex; align-items: center;
}

.arn-live-chip[b-cj7hjpjon1] {
    padding: 0 14px; height: 100%;
    display: flex; align-items: center;
    background: #f5ff3d; color: #0a0230;
    font-weight: 800; font-size: 11px; letter-spacing: 0.16em;
    z-index: 2;
}
.arn-accent-magenta .arn-live-chip[b-cj7hjpjon1] { background: #ff2e93; color: #fefaff; }

.arn-ticker-viewport[b-cj7hjpjon1] { position: relative; flex: 1; height: 100%; overflow: hidden; }
.arn-ticker-track[b-cj7hjpjon1] {
    position: absolute; top: 0; bottom: 0;
    display: flex; align-items: center; white-space: nowrap;
    color: white; font-size: 12px; letter-spacing: 0.18em; font-weight: 600;
}

.arn-cta[b-cj7hjpjon1] {
    padding: 0 20px; height: 100%;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #f5ff3d, #ff8a00);
    color: #0a0230;
    font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.arn-accent-magenta .arn-cta[b-cj7hjpjon1] { background: linear-gradient(135deg, #ff2e93, #ff8a00); color: #fefaff; }

/* =========================================================
   VARIANT 3: Pressure Pipe
   ========================================================= */
.pp-root[b-cj7hjpjon1] {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 190px;
    background: #0a0230;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-schematic[b-cj7hjpjon1] {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.5;
    pointer-events: none;
}

.pp-rail-text[b-cj7hjpjon1] { color: #00f0ff; }
.pp-accent-magenta .pp-rail-text[b-cj7hjpjon1] { color: #ff2e93; }

.pp-headline-accent[b-cj7hjpjon1] { color: #00f0ff; }
.pp-accent-magenta .pp-headline-accent[b-cj7hjpjon1] { color: #ff2e93; }

.pp-cta[b-cj7hjpjon1] {
    background: transparent;
    color: #00f0ff;
    border: 1.5px solid #00f0ff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.27), inset 0 0 20px rgba(0, 240, 255, 0.13);
}
.pp-accent-magenta .pp-cta[b-cj7hjpjon1] {
    color: #ff2e93;
    border-color: #ff2e93;
    box-shadow: 0 0 20px rgba(255, 46, 147, 0.27), inset 0 0 20px rgba(255, 46, 147, 0.13);
}

.pp-pipe-bar[b-cj7hjpjon1] {
    position: absolute; inset: auto 0 0 0; height: 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
}

.pp-pipe-ticks[b-cj7hjpjon1] {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent 0 19px, rgba(255, 255, 255, 0.06) 19px 20px);
    pointer-events: none;
}

.pp-pipe-fill[b-cj7hjpjon1] {
    position: absolute; top: 0; bottom: 0; left: 0;
    background: linear-gradient(90deg, #39ff8a 0%, #00f0ff 60%, #ff2e93 100%);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.53);
    transition: width 1s linear;
    border-radius: 14px;
}
.pp-accent-magenta .pp-pipe-fill[b-cj7hjpjon1] {
    background: linear-gradient(90deg, #ff8a00 0%, #ff2e93 60%, #ff2e93 100%);
    box-shadow: 0 0 24px rgba(255, 46, 147, 0.53);
}

.pp-pipe-scan[b-cj7hjpjon1] {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.pp-pipe-edge[b-cj7hjpjon1] {
    position: absolute; top: 50%;
    width: 8px; height: 8px; border-radius: 9999px;
    background: white; color: white;
    transform: translate(-4px, -50%);
    box-shadow: 0 0 16px white, 0 0 30px #00f0ff;
}
.pp-accent-magenta .pp-pipe-edge[b-cj7hjpjon1] { box-shadow: 0 0 16px white, 0 0 30px #ff2e93; }

.pp-spark[b-cj7hjpjon1] {
    position: absolute; bottom: 0;
    width: 2px; height: 2px; border-radius: 9999px;
    background: #f5ff3d;
    box-shadow: 0 0 6px #f5ff3d;
    pointer-events: none;
}

.pp-footer[b-cj7hjpjon1] {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.3);
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
    /* Thunder Cage */
    .tc-root.tc-motion.tc-urgent[b-cj7hjpjon1] { animation: prizedrop-shake-slow-b-cj7hjpjon1 2s ease-in-out infinite; }
    .tc-motion .tc-grid[b-cj7hjpjon1]          { animation: prizedrop-grid-drift-b-cj7hjpjon1 6s linear infinite; }
    .tc-motion .tc-scan[b-cj7hjpjon1]          { animation: prizedrop-scan-b-cj7hjpjon1 5s linear infinite; }
    .tc-motion .tc-bolt-1[b-cj7hjpjon1]        { animation: prizedrop-bolt-strike-b-cj7hjpjon1 4.2s infinite; }
    .tc-motion .tc-bolt-2[b-cj7hjpjon1]        { animation: prizedrop-bolt-strike-b-cj7hjpjon1 5.7s 1.2s infinite; }
    .tc-motion .tc-headline[b-cj7hjpjon1]      { animation: prizedrop-flicker-b-cj7hjpjon1 6s infinite; }
    .tc-motion .tc-dot[b-cj7hjpjon1]           { animation: prizedrop-glow-pulse-b-cj7hjpjon1 1.2s ease-in-out infinite; }
    .tc-motion .tc-colon[b-cj7hjpjon1]         { animation: prizedrop-flicker-fast-b-cj7hjpjon1 1s infinite; }
    .tc-motion .tc-cta-shine[b-cj7hjpjon1]     { animation: prizedrop-scan-b-cj7hjpjon1 2.4s linear infinite; }

    /* Arena */
    .arn-motion .arn-light-1[b-cj7hjpjon1]     { animation: prizedrop-flicker-b-cj7hjpjon1 8s infinite; }
    .arn-motion .arn-light-2[b-cj7hjpjon1]     { animation: prizedrop-flicker-b-cj7hjpjon1 11s 2s infinite; }
    .arn-motion .arn-light-3[b-cj7hjpjon1]     { animation: prizedrop-flicker-b-cj7hjpjon1 9s 1s infinite; }
    .arn-motion .arn-onair-dot[b-cj7hjpjon1]   { animation: prizedrop-glow-pulse-b-cj7hjpjon1 0.8s ease-in-out infinite; }
    .arn-motion .arn-ticker-track[b-cj7hjpjon1] { animation: prizedrop-ticker-b-cj7hjpjon1 28s linear infinite; }

    /* Pressure Pipe */
    .pp-motion .pp-pipe-scan[b-cj7hjpjon1]     { animation: prizedrop-scan-b-cj7hjpjon1 2s linear infinite; }
    .pp-motion .pp-pipe-edge[b-cj7hjpjon1]     { animation: prizedrop-glow-pulse-b-cj7hjpjon1 0.6s ease-in-out infinite; }
    .pp-motion.pp-urgent .pp-spark-0[b-cj7hjpjon1] { animation: prizedrop-spark-rise-b-cj7hjpjon1 2.4s 0s infinite; }
    .pp-motion.pp-urgent .pp-spark-1[b-cj7hjpjon1] { animation: prizedrop-spark-rise-b-cj7hjpjon1 2.8s 0.3s infinite; }
    .pp-motion.pp-urgent .pp-spark-2[b-cj7hjpjon1] { animation: prizedrop-spark-rise-b-cj7hjpjon1 3.2s 0.6s infinite; }
    .pp-motion.pp-urgent .pp-spark-3[b-cj7hjpjon1] { animation: prizedrop-spark-rise-b-cj7hjpjon1 3.6s 0.9s infinite; }
}

/* Reduced-motion fallback: hide purely decorative moving elements */
@media (prefers-reduced-motion: reduce) {
    .tc-bolt[b-cj7hjpjon1], .tc-scan[b-cj7hjpjon1],
    .pp-pipe-scan[b-cj7hjpjon1], .pp-spark[b-cj7hjpjon1] { display: none; }
}
/* /Components/Shared/Draw/SeasonArc.razor.rz.scp.css */
.season-arc[b-mv8dfuinyb] {
    position: relative;
    padding: 32px 0 16px;
    border-top: 1px solid rgba(254, 250, 255, 0.10);
    border-bottom: 1px solid rgba(254, 250, 255, 0.10);
}

.season-arc__empty[b-mv8dfuinyb] {
    color: rgba(254, 250, 255, 0.55);
    font-size: 13px;
    text-align: center;
    padding: 48px 16px;
}

.season-arc__svg[b-mv8dfuinyb] {
    width: 100%;
    height: 260px;
    display: block;
}

.season-arc__legend[b-mv8dfuinyb] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 8px 0 0;
    color: rgba(254, 250, 255, 0.55);
    font-size: 11px;
    font-family: 'Poppins', system-ui, sans-serif;
}

.season-arc__legend .sw[b-mv8dfuinyb] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.season-arc__legend .sw[b-mv8dfuinyb]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: currentColor;
}
.season-arc__legend .sw--done[b-mv8dfuinyb]   { color: #39ff8a; }
.season-arc__legend .sw--now[b-mv8dfuinyb]    { color: #00f0ff; }
.season-arc__legend .sw--next[b-mv8dfuinyb]   { color: rgba(254, 250, 255, 0.35); }
.season-arc__legend .sw--finale[b-mv8dfuinyb] { color: #f5ff3d; }

/* ── Vertical rail (mobile) ── */
.season-arc__vertical[b-mv8dfuinyb] { display: none; }

.season-arc__vertical-wrap[b-mv8dfuinyb] {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 8px 4px 12px;
}
.season-arc__vertical-rail[b-mv8dfuinyb] {
    position: relative;
    width: 56px;
}
.season-arc__vertical-rail svg[b-mv8dfuinyb] {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.season-arc__beats[b-mv8dfuinyb] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 0;
}
.v-beat[b-mv8dfuinyb] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(254, 250, 255, 0.10);
}
.v-beat__label[b-mv8dfuinyb] {
    font: 700 11px/1.1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fefaff;
}
.v-beat__when[b-mv8dfuinyb] {
    font: 500 10px/1 'JetBrains Mono', ui-monospace, monospace;
    color: rgba(254, 250, 255, 0.55);
}
.v-beat--done[b-mv8dfuinyb] { background: rgba(57, 255, 138, 0.06); border-color: rgba(57, 255, 138, 0.20); }
.v-beat--done .v-beat__label[b-mv8dfuinyb] { color: #39ff8a; }

.v-beat--active[b-mv8dfuinyb] {
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.14), rgba(0, 240, 255, 0.04));
    border-color: rgba(0, 240, 255, 0.50);
    box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.25) inset;
    min-height: 56px;
}
.v-beat--active .v-beat__label[b-mv8dfuinyb] {
    color: #00f0ff;
    font-family: 'Anton', Impact, sans-serif;
    font-size: 16px;
    letter-spacing: 0.03em;
}
.v-beat--active .v-beat__when[b-mv8dfuinyb] { color: #00f0ff; }
.v-beat__hint[b-mv8dfuinyb] {
    display: block;
    font: 600 9px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #00f0ff;
    margin-top: 4px;
}
.v-beat--finale[b-mv8dfuinyb] {
    background: rgba(245, 255, 61, 0.06);
    border-color: rgba(245, 255, 61, 0.35);
}
.v-beat--finale .v-beat__label[b-mv8dfuinyb] {
    color: #f5ff3d;
    font-family: 'Anton', Impact, sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
}
.v-beat--future[b-mv8dfuinyb] { opacity: 0.55; border-style: dashed; }
.v-beat--deferred[b-mv8dfuinyb] {
    opacity: 0.7;
    border-style: dashed;
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
}
.v-beat--deferred .v-beat__label[b-mv8dfuinyb] { color: rgba(165, 180, 252, 0.9); }

.v-month-sep[b-mv8dfuinyb] {
    font: 700 9px/1 'Barlow Condensed', Impact, sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(254, 250, 255, 0.35);
    padding: 8px 10px 2px;
}

/* Below 720px: swap to the vertical rail */
@media (max-width: 720px) {
    .season-arc__svg[b-mv8dfuinyb],
    .season-arc__legend[b-mv8dfuinyb] { display: none; }
    .season-arc[b-mv8dfuinyb] { padding: 18px 0 10px; }
    .season-arc__vertical[b-mv8dfuinyb] { display: block; }
}
/* /Components/Shared/MatchChat.razor.rz.scp.css */
/* Slide-up animation for chat panel */
@keyframes slide-up-b-ckd4xao2hj {
    from {
        opacity: 0;
        transform: translateY(1rem) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-panel[b-ckd4xao2hj] {
    animation: slide-up-b-ckd4xao2hj 0.25s ease-out;
}

/* FAB glow pulse — Match mode (violet) */
@keyframes glow-pulse-b-ckd4xao2hj {
    0%, 100% {
        box-shadow: 0 0 8px hsl(263 70% 50% / 0.4);
    }
    50% {
        box-shadow: 0 0 20px hsl(263 70% 50% / 0.7), 0 0 40px hsl(295 80% 55% / 0.3);
    }
}

.chat-fab[b-ckd4xao2hj] {
    animation: glow-pulse-b-ckd4xao2hj 3s ease-in-out infinite;
}

/* FAB glow pulse — Global mode (cyan) */
@keyframes glow-pulse-cyan-b-ckd4xao2hj {
    0%, 100% {
        box-shadow: 0 0 8px hsl(180 85% 55% / 0.4);
    }
    50% {
        box-shadow: 0 0 20px hsl(180 85% 55% / 0.7), 0 0 40px hsl(190 90% 50% / 0.3);
    }
}

.chat-fab-cyan[b-ckd4xao2hj] {
    animation: glow-pulse-cyan-b-ckd4xao2hj 3s ease-in-out infinite;
}

/* Badge pulse */
@keyframes badge-pulse-b-ckd4xao2hj {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.35); }
}

.badge-pulse[b-ckd4xao2hj] {
    animation: badge-pulse-b-ckd4xao2hj 1.2s ease-in-out infinite;
}

/* Floating message preview bubble */
@keyframes preview-slide-in-b-ckd4xao2hj {
    from { opacity: 0; transform: translateX(1rem) scale(0.96); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

.chat-preview-bubble[b-ckd4xao2hj] {
    animation: preview-slide-in-b-ckd4xao2hj 0.2s ease-out;
}

/* Tab bar styling */
.chat-tab-bar[b-ckd4xao2hj] {
    display: flex;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
    overflow-y: hidden;
}

.chat-tab[b-ckd4xao2hj] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: pointer;
}

.chat-tab:hover[b-ckd4xao2hj] {
    background-color: rgba(255, 255, 255, 0.1);
}

.chat-tab.active[b-ckd4xao2hj] {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Sidebar animation */
@keyframes sidebar-slide-in-b-ckd4xao2hj {
    from {
        opacity: 0;
        transform: translateX(-1rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.community-sidebar[b-ckd4xao2hj] {
    animation: sidebar-slide-in-b-ckd4xao2hj 0.25s ease-out;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    .chat-tab span[b-ckd4xao2hj] {
        display: none;
    }

    .chat-tab[b-ckd4xao2hj] {
        padding: 0.375rem 0.5rem;
    }
}
/* /Components/Shared/StreamOverlay.razor.rz.scp.css */
/* Stream mode: side-by-side video + chat when phone is held in landscape */
@media (orientation: landscape) {
    .stream-body[b-zvtcydydxt]      { flex-direction: row; }
    .stream-video-col[b-zvtcydydxt] { flex: 1 1 0%; }
    .stream-chat-col[b-zvtcydydxt]  { flex: none; width: 260px; border-top-width: 0; border-left-width: 1px; }
}
