/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-8ip47qe823] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-8ip47qe823] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Game.razor.rz.scp.css */
/* ── Root ─────────────────────────────────────────────────────────────────── */
.lsj-root[b-fuysz5cbw1] {
    background: radial-gradient(ellipse at center, #2a004a 0%, #0d001a 100%);
    min-height: calc(100svh - var(--navbar-height, 72px));
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    overflow-x: hidden;
}

/* ── Title ─────────────────────────────────────────────────────────────────── */
.lsj-title[b-fuysz5cbw1] {
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 4px;
    filter: drop-shadow(0 0 12px #ffaa0088);
}

.lsj-subtitle[b-fuysz5cbw1] {
    font-size: .85rem;
    letter-spacing: 0;
    color: #cc99ff;
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.lsj-game-wrap[b-fuysz5cbw1] {
    --grid-gap: 8px;
    --board-padding: 12px;
    --board-space: calc(100svh - 220px);
    --cell-size: min(120px, max(32px, calc((var(--board-space) - 2 * var(--board-padding) - 4px - (var(--rows) - 1) * var(--grid-gap)) / var(--rows))));
    --board-width: calc(var(--reels) * var(--cell-size) + (var(--reels) - 1) * var(--grid-gap) + 2 * var(--board-padding) + 4px);
    display: grid;
    width: min(100%, calc(var(--board-width) + 260px));
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 20px;
    align-items: start;
    justify-content: center;
}

/* ── Grid container ────────────────────────────────────────────────────────── */
.lsj-grid-container[b-fuysz5cbw1] {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(145deg, #1e0040, #0d001a);
    border: 2px solid #6a0dad88;
    border-radius: 16px;
    padding: var(--board-padding);
    box-shadow: 0 0 50px #6a0dad55, inset 0 0 30px #00000066;
}

#lsj-grid[b-fuysz5cbw1] {
    display: flex;
    gap: var(--grid-gap);
}

.lsj-reel[b-fuysz5cbw1] {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: var(--grid-gap);
}

/* ── Cells ─────────────────────────────────────────────────────────────────── */
.lsj-cell[b-fuysz5cbw1] {
    position: relative;
    min-height: 0;
    width: 100%;
    aspect-ratio: 1;
    box-sizing: border-box;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    user-select: none;
    transition: transform .1s;
}

.lsj-cell.win-cell[b-fuysz5cbw1] {
    animation: lsjWinPulse-b-fuysz5cbw1 .5s ease infinite alternate;
    border-color: #ffd700;
    box-shadow: 0 0 22px #ffd700, inset 0 0 12px rgba(255,215,0,0.15);
    background: rgba(255, 215, 0, 0.08);
    z-index: 2;
}

.lsj-cell[b-fuysz5cbw1]  .lsj-symbol {
    position: absolute;
    inset: 0;
    margin: auto;
    display: block;
    width: 72%;
    height: 72%;
    overflow: visible;
    filter: drop-shadow(0 4px 3px #0005);
    pointer-events: none;
}

.lsj-text-symbol[b-fuysz5cbw1] {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 4px;
    overflow-wrap: anywhere;
    text-align: center;
    color: #fff1b5;
}

.lsj-back[b-fuysz5cbw1] { color: #cc99ff; margin-bottom: 10px; }
.lsj-bet-wrap button:disabled[b-fuysz5cbw1] { opacity: .4; cursor: not-allowed; }

@keyframes lsjWinPulse-b-fuysz5cbw1 {
    from { transform: scale(1); }
    to   { transform: scale(1.1); }
}

/* ── Win banner ────────────────────────────────────────────────────────────── */
.lsj-win-banner[b-fuysz5cbw1] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    color: #1a0033;
    font-size: 2rem;
    font-weight: 900;
    padding: 14px 36px;
    border-radius: 50px;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 0 40px #ffd70099;
    opacity: 0;
}

.lsj-win-banner.show[b-fuysz5cbw1] {
    animation: lsjPopBanner-b-fuysz5cbw1 .5s ease forwards;
}

@keyframes lsjPopBanner-b-fuysz5cbw1 {
    0%   { transform: translate(-50%,-50%) scale(0);    opacity: 0; }
    60%  { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(1);    opacity: 1; }
}

/* ── Side panel ────────────────────────────────────────────────────────────── */
.lsj-side-panel[b-fuysz5cbw1] {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
}

.lsj-info-box[b-fuysz5cbw1] {
    background: rgba(255,255,255,0.06);
    border: 1px solid #6a0dad55;
    border-radius: 14px;
    padding: 10px 14px;
    text-align: center;
}

.lsj-label[b-fuysz5cbw1] {
    font-size: .7rem;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #cc99ff;
    margin-bottom: 6px;
}

.lsj-value[b-fuysz5cbw1] {
    overflow-wrap: anywhere;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 12px #ffaa00;
}

/* ── Paytable box ──────────────────────────────────────────────────────────── */
.lsj-paytable-box[b-fuysz5cbw1] {
    text-align: left;
    border-top: 1px solid #6a0dad88;
    padding-top: 4px;
}

.lsj-paytable-box summary[b-fuysz5cbw1] { cursor: pointer; color: #cc99ff; padding: 8px 0; }
.lsj-paytable-box summary:focus-visible[b-fuysz5cbw1] { outline: 2px solid #ffd700; outline-offset: 4px; }

.lsj-pay-row[b-fuysz5cbw1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: .85rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: #ddd;
    gap: 12px;
    flex-wrap: wrap;
}

.lsj-pay-row:last-child[b-fuysz5cbw1] { border: none; }
.lsj-pay-row span:last-child[b-fuysz5cbw1] { color: #ffd700; font-weight: 700; }
.lsj-pay-jackpot span:first-child[b-fuysz5cbw1] { color: #ffd700; }
.lsj-pay-wild span[b-fuysz5cbw1] { color: #00ccff !important; }

/* ── Controls ──────────────────────────────────────────────────────────────── */
.lsj-controls[b-fuysz5cbw1] {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.lsj-bet-wrap[b-fuysz5cbw1] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid #6a0dad55;
    border-radius: 50px;
    padding: 8px 16px;
    justify-content: space-between;
}

.lsj-bet-wrap label[b-fuysz5cbw1] {
    font-size: .75rem;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #cc99ff;
}

.lsj-bet-wrap button[b-fuysz5cbw1] {
    background: rgba(106,13,173,.5);
    border: 1px solid #9933cc;
    color: #fff;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: background .2s;
}

.lsj-bet-wrap button:hover[b-fuysz5cbw1] { background: rgba(153,51,204,.7); }

#lsj-bet-display[b-fuysz5cbw1] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    min-width: 50px;
    text-align: center;
}

.lsj-spin-btn[b-fuysz5cbw1] {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    color: #1a0033;
    border: none;
    border-radius: 50px;
    padding: 14px 56px;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 24px #ffd70055;
    transition: transform .1s, box-shadow .2s;
}

.lsj-spin-btn:hover:not(:disabled)[b-fuysz5cbw1] {
    transform: scale(1.04);
    box-shadow: 0 6px 32px #ffd700aa;
}

.lsj-spin-btn:active:not(:disabled)[b-fuysz5cbw1] { transform: scale(.97); }

.lsj-spin-btn:disabled[b-fuysz5cbw1] { opacity: .45; cursor: not-allowed; }

/* ── Message ───────────────────────────────────────────────────────────────── */
.lsj-msg[b-fuysz5cbw1] {
    margin: 0;
    font-size: .9rem;
    letter-spacing: 0;
    color: #cc99ff;
    min-height: 22px;
    text-align: center;
}

.lsj-msg.win[b-fuysz5cbw1]   { color: #ffd700; font-weight: 700; text-shadow: 0 0 10px #ffd700; }
.lsj-msg.error[b-fuysz5cbw1] { color: #ff6060; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
    .lsj-game-wrap[b-fuysz5cbw1] {
        --board-space: calc(100svh - 420px);
        --board-padding: 8px;
        --grid-gap: 6px;
        width: min(100%, 560px);
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
    .lsj-grid-container[b-fuysz5cbw1] { width: min(100%, var(--board-width)); justify-self: center; }
    .lsj-side-panel[b-fuysz5cbw1] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lsj-controls[b-fuysz5cbw1], .lsj-side-panel .lsj-msg[b-fuysz5cbw1], .lsj-paytable-box[b-fuysz5cbw1] { grid-column: 1 / -1; }
    .lsj-controls[b-fuysz5cbw1] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lsj-bet-wrap[b-fuysz5cbw1] { padding: 8px; gap: 4px; }
    .lsj-spin-btn[b-fuysz5cbw1] { padding: 14px; }
}

@media (max-width: 380px) {
    .lsj-game-wrap[b-fuysz5cbw1] { --board-space: calc(100svh - 480px); }
    .lsj-side-panel[b-fuysz5cbw1] { gap: 6px; }
    .lsj-info-box[b-fuysz5cbw1] { padding: 6px 10px; }
    .lsj-controls[b-fuysz5cbw1] { grid-template-columns: minmax(0, 1fr); gap: 6px; }
    .lsj-spin-btn[b-fuysz5cbw1] { padding: 10px; min-height: 44px; }
}

@media (max-width: 560px) {
    .lsj-root[b-fuysz5cbw1] { padding: 12px; }
    .lsj-cell[b-fuysz5cbw1] { font-size: 1.8rem; }
    .lsj-cell.lsj-text-symbol[b-fuysz5cbw1] { font-size: .65rem; padding: 2px; border-radius: 6px; }
    .lsj-title[b-fuysz5cbw1] { font-size: 1.7rem; overflow-wrap: anywhere; text-align: center; }
    .lsj-subtitle[b-fuysz5cbw1] { letter-spacing: 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    .lsj-cell.win-cell[b-fuysz5cbw1] { animation: none; }
    .lsj-win-banner.show[b-fuysz5cbw1] { animation: none; transform: translate(-50%, -50%); opacity: 1; }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ========== HERO ========== */
.hero[b-52yf2aiw4z] {
    min-height: calc(100vh - var(--navbar-height));
    background: radial-gradient(ellipse 80% 60% at 70% 40%, #4a1d96 0%, #1a164a 50%, #0e0b2a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 60px max(24px, calc((100vw - 1200px) / 2 + 24px));
    gap: 48px;
}

.hero-content[b-52yf2aiw4z] {
    flex: 1;
    z-index: 2;
    max-width: 560px;
}

.hero-eyebrow[b-52yf2aiw4z] {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.hero-headline[b-52yf2aiw4z] {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-desc[b-52yf2aiw4z] {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-cta[b-52yf2aiw4z] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-badges[b-52yf2aiw4z] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ---- Hero visual / mascot ---- */
.hero-visual[b-52yf2aiw4z] {
    flex: 1;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow[b-52yf2aiw4z] {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.55) 0%, transparent 70%);
}

.hero-mascot[b-52yf2aiw4z] {
    line-height: 1;
    filter: drop-shadow(0 8px 40px rgba(124,58,237,0.6));
    animation: mascot-float-b-52yf2aiw4z 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.mascot-svg[b-52yf2aiw4z] {
    width: 320px;
    height: auto;
    display: block;
}

@keyframes mascot-float-b-52yf2aiw4z {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.hero-coin[b-52yf2aiw4z] {
    position: absolute;
    font-size: 2.2rem;
    animation: coin-spin-b-52yf2aiw4z 4s linear infinite;
    z-index: 3;
}
.coin-1[b-52yf2aiw4z] { top: 10%; left: 15%; animation-duration: 3.5s; }
.coin-2[b-52yf2aiw4z] { top: 20%; right: 10%; animation-duration: 4.2s; }
.coin-3[b-52yf2aiw4z] { bottom: 25%; left: 5%;  animation-duration: 3.8s; }
.coin-4[b-52yf2aiw4z] { bottom: 15%; right: 20%; animation-duration: 4.5s; }

@keyframes coin-spin-b-52yf2aiw4z {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-24px) rotate(180deg); }
}

/* ========== FEATURES ========== */
.features-section[b-52yf2aiw4z] {
    background: var(--bg-mid);
    padding: 80px 0;
}

/* ========== STATS ========== */
.stats-section[b-52yf2aiw4z] {
    padding: 60px 0;
    background: var(--bg-deep);
}
.stats-grid[b-52yf2aiw4z] {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.stat-item[b-52yf2aiw4z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stat-number[b-52yf2aiw4z] {
    font-size: 2.4rem;
    font-weight: 900;
}
.stat-label[b-52yf2aiw4z] {
    font-size: .85rem;
    color: var(--text-muted);
}

/* ========== FOOTER ========== */
.site-footer[b-52yf2aiw4z] {
    background: var(--bg-mid);
    border-top: 1px solid var(--border-card);
    padding: 32px 0;
}
.footer-inner[b-52yf2aiw4z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.footer-brand[b-52yf2aiw4z] { font-size: 1.1rem; font-weight: 800; }
.footer-legal[b-52yf2aiw4z] { font-size: .78rem; color: var(--text-muted); }
.footer-links[b-52yf2aiw4z] { display: flex; gap: 20px; }
.footer-links a[b-52yf2aiw4z] { font-size: .8rem; color: var(--text-muted); }
.footer-links a:hover[b-52yf2aiw4z] { color: var(--text-primary); }
/* /Components/Pages/Legal.razor.rz.scp.css */
.legal-page[b-s75e8qhvw8] {
    position: relative;
    min-height: calc(100vh - var(--navbar-height));
    padding: 48px 24px 80px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.2), transparent 28%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.24), transparent 34%),
        linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
}

.legal-page__backdrop[b-s75e8qhvw8] {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
}

.legal-page__container[b-s75e8qhvw8] {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

.legal-page__hero[b-s75e8qhvw8] {
    margin-bottom: 28px;
}

.legal-page__eyebrow[b-s75e8qhvw8],
.legal-page__section-kicker[b-s75e8qhvw8] {
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.legal-page__hero h1[b-s75e8qhvw8],
.legal-page__section-header h2[b-s75e8qhvw8] {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.legal-page__hero p[b-s75e8qhvw8],
.legal-page__section-header p[b-s75e8qhvw8],
.legal-page__content p[b-s75e8qhvw8],
.legal-page__content li[b-s75e8qhvw8] {
    color: var(--text-muted);
    line-height: 1.75;
}

.legal-page__tabs[b-s75e8qhvw8] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.legal-page__tab[b-s75e8qhvw8] {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.legal-page__tab:hover[b-s75e8qhvw8] {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.28);
}

.legal-page__tab--active[b-s75e8qhvw8] {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: #261600;
    border-color: transparent;
}

.legal-page__card[b-s75e8qhvw8] {
    padding: 32px;
    border: 1px solid var(--border-card);
    border-radius: 24px;
    background: rgba(21, 18, 58, 0.92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.legal-page__section-header[b-s75e8qhvw8] {
    margin-bottom: 28px;
}

.legal-page__section-header h2[b-s75e8qhvw8] {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legal-page__content[b-s75e8qhvw8] {
    display: grid;
    gap: 24px;
}

.legal-page__content h3[b-s75e8qhvw8] {
    margin-bottom: 10px;
    font-size: 1.08rem;
    color: var(--text-primary);
}

.legal-page__content ul[b-s75e8qhvw8] {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .legal-page[b-s75e8qhvw8] {
        padding: 32px 16px 56px;
    }

    .legal-page__card[b-s75e8qhvw8] {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .legal-page__tabs[b-s75e8qhvw8] {
        gap: 10px;
    }

    .legal-page__tab[b-s75e8qhvw8] {
        width: 100%;
        text-align: center;
    }
}
/* /Components/Pages/Lobby.razor.rz.scp.css */
/* ===== LOBBY SHELL ===== */
.lobby-shell[b-qt89iukvww] {
    display: flex;
    min-height: 100vh;
    background: var(--bg-deep);
}

/* ===== SIDEBAR ===== */
.sidebar[b-qt89iukvww] {
    width: var(--sidebar-width);
    flex-shrink: 0;
    background: var(--bg-mid);
    border-right: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 8px;
}

.sidebar-logo[b-qt89iukvww] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px 16px;
    font-size: 1.3rem;
    border-bottom: 1px solid var(--border-card);
    margin-bottom: 8px;
}
.sidebar-brand-text[b-qt89iukvww] { font-weight: 900; color: var(--accent-gold); }

.sidebar-nav[b-qt89iukvww] {
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    gap: 4px;
    flex: 1;
}

.sidebar-link[b-qt89iukvww] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: background .15s, color .15s;
}
.sidebar-link:hover[b-qt89iukvww] { background: rgba(255,255,255,0.06); color: var(--text-primary); }
.sidebar-link.active[b-qt89iukvww] { background: rgba(255,255,255,0.1); color: var(--text-primary); }
.s-icon[b-qt89iukvww] { font-size: 1.1rem; }

.sidebar-buy[b-qt89iukvww] { padding: 12px 16px; }

.sidebar-level[b-qt89iukvww] {
    padding: 8px 16px 4px;
    margin-top: auto;
}
.level-label[b-qt89iukvww] {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.level-bar[b-qt89iukvww] {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}
.level-fill[b-qt89iukvww] {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 3px;
}

/* ===== MAIN ===== */
.lobby-main[b-qt89iukvww] {
    flex: 1;
    padding: 0 32px 40px;
    overflow-y: auto;
}

/* ---- Top bar ---- */
.lobby-topbar[b-qt89iukvww] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 24px;
}
.topbar-left[b-qt89iukvww] { display: flex; align-items: center; gap: 16px; }

.player-avatar[b-qt89iukvww] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    flex-shrink: 0;
}
.avatar-level[b-qt89iukvww] {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--accent-purple);
    color: white;
    font-size: .65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chips-display[b-qt89iukvww] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 30px;
    padding: 8px 8px 8px 14px;
}
.chips-icon[b-qt89iukvww] { font-size: 1rem; }
.chips-amount[b-qt89iukvww] { font-weight: 800; font-size: .95rem; }
.chips-add[b-qt89iukvww] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-green);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter .15s;
}
.chips-add:hover[b-qt89iukvww] { filter: brightness(1.15); }

.icon-btn[b-qt89iukvww] {
    background: rgba(255,255,255,0.07);
    border: none;
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.icon-btn:hover[b-qt89iukvww] { background: rgba(255,255,255,0.12); color: var(--text-primary); }

/* ---- Promo banner ---- */
.promo-banner[b-qt89iukvww] {
    background: linear-gradient(135deg, #78350f 0%, #92400e 40%, #6b21a8 100%);
    border-radius: var(--radius-card);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.promo-banner[b-qt89iukvww]::before {
    content: "🪙🪙🪙🪙🪙";
    position: absolute;
    top: -10px;
    right: 80px;
    font-size: 2.5rem;
    opacity: 0.5;
    letter-spacing: 12px;
}
.promo-badge[b-qt89iukvww] {
    background: var(--accent-gold);
    color: #1a1200;
    font-size: .72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    align-self: flex-start;
}
.promo-banner-body[b-qt89iukvww] { flex: 1; }
.promo-banner-body h2[b-qt89iukvww] { font-size: 1.6rem; font-weight: 900; margin-bottom: 4px; }
.promo-banner-body p[b-qt89iukvww] { font-size: .85rem; color: rgba(255,255,255,0.7); }

/* ---- Quick actions ---- */
.quick-actions[b-qt89iukvww] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.qa-card[b-qt89iukvww] {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    min-width: 90px;
    cursor: pointer;
    transition: background .15s, transform .12s;
    position: relative;
}
.qa-card:hover[b-qt89iukvww] { background: var(--bg-card-hover); transform: translateY(-2px); }
.qa-icon[b-qt89iukvww] { font-size: 1.8rem; margin-bottom: 6px; }
.qa-label[b-qt89iukvww] { font-size: .78rem; font-weight: 700; color: var(--text-muted); display: block; }
.qa-badge[b-qt89iukvww] {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}
.free-badge[b-qt89iukvww] { background: var(--accent-green); color: #fff; }
.ready-badge[b-qt89iukvww] { background: var(--accent-orange); color: #fff; }

/* ---- Game grid ---- */
.games-header[b-qt89iukvww] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.games-section-title[b-qt89iukvww] { font-size: 1.1rem; font-weight: 800; }
.games-see-all[b-qt89iukvww] { font-size: .82rem; color: var(--text-muted); }
.games-see-all:hover[b-qt89iukvww] { color: var(--text-primary); }

.games-grid[b-qt89iukvww] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.game-card-link[b-qt89iukvww] {
    text-decoration: none;
    color: inherit;
    display: block;
}
.game-card-link.locked[b-qt89iukvww] { pointer-events: none; }

.game-card[b-qt89iukvww] {
    cursor: pointer;
    transition: transform .15s;
}
.game-card:hover[b-qt89iukvww] { transform: translateY(-4px); }
.game-card-link.locked .game-card[b-qt89iukvww] { opacity: 0.7; }

.game-thumb[b-qt89iukvww] {
    border-radius: var(--radius-card);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

.game-thumb-art[b-qt89iukvww],
.game-thumb-img[b-qt89iukvww] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-thumb-art[b-qt89iukvww] {
    padding: 8px;
    filter: drop-shadow(0 4px 4px #0005);
}

.game-thumb-placeholder[b-qt89iukvww] {
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    overflow-wrap: anywhere;
}

.game-badge[b-qt89iukvww] {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: .65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}
.game-badge.hot[b-qt89iukvww] { background: #ef4444; color: white; }

.game-lock-overlay[b-qt89iukvww] {
    position: absolute;
    inset: 0;
    background: rgba(14,11,42,0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.lock-icon[b-qt89iukvww] { font-size: 1.8rem; }
.lock-level[b-qt89iukvww] { font-size: .7rem; font-weight: 800; color: var(--accent-gold); }

.game-name[b-qt89iukvww] {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}
.game-card:hover .game-name[b-qt89iukvww] { color: var(--text-primary); }
/* /Components/Pages/Login.razor.rz.scp.css */
.register-page[b-ow5nlpqzrp] {
    display: flex;
    min-height: calc(100vh - var(--navbar-height));
}

.promo-panel[b-ow5nlpqzrp] {
    flex: 1;
    background: radial-gradient(ellipse 90% 80% at 30% 60%, #5b21b6 0%, #1a164a 60%, #0e0b2a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 60px 48px;
}

.promo-glow[b-ow5nlpqzrp] {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(124,58,237,0.4) 0%, transparent 70%);
}

.promo-body[b-ow5nlpqzrp] {
    position: relative;
    z-index: 2;
    max-width: 440px;
}

.promo-headline[b-ow5nlpqzrp] {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.promo-desc[b-ow5nlpqzrp] {
    font-size: .9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

.promo-stats[b-ow5nlpqzrp] {
    display: flex;
    gap: 36px;
}

.promo-stat[b-ow5nlpqzrp] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-num[b-ow5nlpqzrp] {
    font-size: 1.8rem;
    font-weight: 900;
}

.promo-mascot[b-ow5nlpqzrp] {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 22rem;
    line-height: 1;
    opacity: 0.85;
    filter: drop-shadow(0 0 60px rgba(124,58,237,0.5));
}

.form-panel[b-ow5nlpqzrp] {
    width: 420px;
    flex-shrink: 0;
    background: var(--bg-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.form-card[b-ow5nlpqzrp] {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-logo[b-ow5nlpqzrp] {
    font-size: 2rem;
    margin-bottom: 4px;
}

.form-brand[b-ow5nlpqzrp] {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-gold);
}

.form-tagline[b-ow5nlpqzrp] {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-tabs[b-ow5nlpqzrp] {
    display: flex;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 20px;
    gap: 4px;
}

.form-tab[b-ow5nlpqzrp] {
    flex: 1;
    padding: 8px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    border-radius: 6px;
    text-align: center;
    transition: background .15s, color .15s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-tab.active[b-ow5nlpqzrp] {
    background: var(--accent-gold);
    color: #1a1200;
}

.form-tab:hover:not(.active)[b-ow5nlpqzrp] {
    color: var(--text-primary);
}

.form-footnote[b-ow5nlpqzrp] {
    margin-top: 16px;
    font-size: .72rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

.form-footnote a[b-ow5nlpqzrp] {
    color: var(--accent-gold);
    text-decoration: underline;
}

@media (max-width: 840px) {
    .promo-panel[b-ow5nlpqzrp] {
        display: none;
    }

    .form-panel[b-ow5nlpqzrp] {
        width: 100%;
    }
}
/* /Components/Pages/PaymentReturn.razor.rz.scp.css */
.return-shell[b-i8q6t4bi5h] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--navbar-height));
    padding: 40px 20px;
    background: var(--bg-deep);
}

.return-card[b-i8q6t4bi5h] {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 40px 32px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.return-state[b-i8q6t4bi5h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.icon-bubble[b-i8q6t4bi5h] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.success-bubble[b-i8q6t4bi5h] {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid var(--accent-green);
}

.pending-bubble[b-i8q6t4bi5h] {
    background: rgba(245, 197, 24, 0.2);
    border: 2px solid var(--accent-gold);
}

.failed-bubble[b-i8q6t4bi5h] {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
}

.package-name[b-i8q6t4bi5h] {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.chips-awarded-card[b-i8q6t4bi5h] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    width: 100%;
    margin: 8px 0;
}

.awarded-label[b-i8q6t4bi5h] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.awarded-amount[b-i8q6t4bi5h] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-top: 6px;
}

.coin-icon[b-i8q6t4bi5h] {
    font-size: 1.8rem;
}

.balance-summary[b-i8q6t4bi5h] {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    align-items: center;
}

.pending-details[b-i8q6t4bi5h] {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.action-buttons[b-i8q6t4bi5h] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
}

.btn-block[b-i8q6t4bi5h] {
    width: 100%;
}

.btn-outline[b-i8q6t4bi5h] {
    background: transparent;
    border: 1px solid var(--border-card);
    color: var(--text-muted);
    padding: 12px 24px;
}

.btn-outline:hover[b-i8q6t4bi5h] {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.spinner[b-i8q6t4bi5h] {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin-b-i8q6t4bi5h 1s infinite linear;
    margin-bottom: 8px;
}

@keyframes spin-b-i8q6t4bi5h {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* /Components/Pages/Register.razor.rz.scp.css */
.register-page[b-bmwsrfyxnu] {
    display: flex;
    min-height: calc(100vh - var(--navbar-height));
}

/* ---- Promo panel ---- */
.promo-panel[b-bmwsrfyxnu] {
    flex: 1;
    background: radial-gradient(ellipse 90% 80% at 30% 60%, #5b21b6 0%, #1a164a 60%, #0e0b2a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 60px 48px;
}

.promo-glow[b-bmwsrfyxnu] {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(124,58,237,0.4) 0%, transparent 70%);
}

.promo-body[b-bmwsrfyxnu] { position: relative; z-index: 2; max-width: 440px; }

.promo-headline[b-bmwsrfyxnu] {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.promo-desc[b-bmwsrfyxnu] {
    font-size: .9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

.promo-stats[b-bmwsrfyxnu] {
    display: flex;
    gap: 36px;
}
.promo-stat[b-bmwsrfyxnu] { display: flex; flex-direction: column; gap: 2px; }
.promo-num[b-bmwsrfyxnu] { font-size: 1.8rem; font-weight: 900; }

.promo-mascot[b-bmwsrfyxnu] {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 22rem;
    line-height: 1;
    opacity: 0.85;
    filter: drop-shadow(0 0 60px rgba(124,58,237,0.5));
}

/* ---- Form panel ---- */
.form-panel[b-bmwsrfyxnu] {
    width: 420px;
    flex-shrink: 0;
    background: var(--bg-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.form-card[b-bmwsrfyxnu] {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-logo[b-bmwsrfyxnu] { font-size: 2rem; margin-bottom: 4px; }
.form-brand[b-bmwsrfyxnu] { font-size: 1.4rem; font-weight: 900; color: var(--accent-gold); }
.form-tagline[b-bmwsrfyxnu] { font-size: .8rem; color: var(--text-muted); margin-bottom: 20px; }

.form-banner[b-bmwsrfyxnu] {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: .85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-tabs[b-bmwsrfyxnu] {
    display: flex;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 20px;
    gap: 4px;
}
.form-tab[b-bmwsrfyxnu] {
    flex: 1;
    padding: 8px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    border-radius: 6px;
    text-align: center;
    transition: background .15s, color .15s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-tab.active[b-bmwsrfyxnu] {
    background: var(--accent-gold);
    color: #1a1200;
}
.form-tab:hover:not(.active)[b-bmwsrfyxnu] { color: var(--text-primary); }

.form-fields[b-bmwsrfyxnu] { width: 100%; }
.form-group[b-bmwsrfyxnu] { margin-bottom: 10px; }
.form-input[b-bmwsrfyxnu] {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text-primary);
    font-size: .9rem;
    outline: none;
    transition: border-color .15s;
}
.form-input:focus[b-bmwsrfyxnu] { border-color: var(--accent-gold); }
.form-input[b-bmwsrfyxnu]::placeholder { color: var(--text-muted); }

.form-label-sm[b-bmwsrfyxnu] {
    display: block;
    font-size: .76rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-check-row[b-bmwsrfyxnu] {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.form-check-row input[b-bmwsrfyxnu] { margin-top: 3px; flex-shrink: 0; }
.form-check-row a[b-bmwsrfyxnu] { color: var(--accent-gold); text-decoration: underline; }

.form-footnote[b-bmwsrfyxnu] {
    margin-top: 12px;
    font-size: .72rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}
.form-footnote a[b-bmwsrfyxnu] { color: var(--text-muted); text-decoration: underline; }

@media (max-width: 840px) {
    .promo-panel[b-bmwsrfyxnu] { display: none; }
    .form-panel[b-bmwsrfyxnu] { width: 100%; }
}
/* /Components/Pages/Shop.razor.rz.scp.css */
.shop-shell[b-fzgw2fr8th] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.shop-header[b-fzgw2fr8th] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-card);
}

.header-left[b-fzgw2fr8th] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop-brand[b-fzgw2fr8th] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.shop-icon[b-fzgw2fr8th] {
    font-size: 2.2rem;
}

.shop-title[b-fzgw2fr8th] {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.shop-subtitle[b-fzgw2fr8th] {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.balance-badge[b-fzgw2fr8th] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    padding: 10px 18px;
    border-radius: var(--radius-btn);
    border: 1px solid rgba(245, 197, 24, 0.3);
}

.balance-icon[b-fzgw2fr8th] {
    font-size: 1.2rem;
}

.balance-label[b-fzgw2fr8th] {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.balance-amount[b-fzgw2fr8th] {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.shop-promo[b-fzgw2fr8th] {
    background: linear-gradient(135deg, rgba(34, 29, 85, 0.95), rgba(124, 58, 237, 0.3));
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.promo-badge[b-fzgw2fr8th] {
    background: var(--accent-gold);
    color: #110e2d;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.promo-content h2[b-fzgw2fr8th] {
    font-size: 1.3rem;
    margin: 4px 0;
    color: #fff;
}

.promo-content p[b-fzgw2fr8th] {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.security-badges[b-fzgw2fr8th] {
    display: flex;
    gap: 12px;
}

.badge-item[b-fzgw2fr8th] {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--text-muted);
}

.packages-grid[b-fzgw2fr8th] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.package-card[b-fzgw2fr8th] {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.package-card:hover[b-fzgw2fr8th] {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.package-card.highlighted[b-fzgw2fr8th] {
    background: linear-gradient(180deg, #2b2266 0%, #1f1947 100%);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.15);
}

.card-badge[b-fzgw2fr8th] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #110e2d;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.card-badge.best-value[b-fzgw2fr8th] {
    background: #38bdf8;
    color: #032b43;
}

.package-header[b-fzgw2fr8th] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-icon[b-fzgw2fr8th] {
    font-size: 1.8rem;
}

.package-name[b-fzgw2fr8th] {
    font-size: 1.2rem;
    font-weight: 700;
}

.package-chips-block[b-fzgw2fr8th] {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.total-chips[b-fzgw2fr8th] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chip-coin[b-fzgw2fr8th] {
    font-size: 1.3rem;
}

.chip-num[b-fzgw2fr8th] {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.bonus-tag[b-fzgw2fr8th] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.04em;
}

.standard-tag[b-fzgw2fr8th] {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.package-pricing[b-fzgw2fr8th] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 4px 0;
}

.price-usd[b-fzgw2fr8th] {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.price-currency[b-fzgw2fr8th] {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.btn-block[b-fzgw2fr8th] {
    width: 100%;
}

.btn-green[b-fzgw2fr8th] {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 12px 24px;
}

.btn-outline[b-fzgw2fr8th] {
    background: transparent;
    border: 1px solid var(--border-card);
    color: var(--text-muted);
    padding: 8px 16px;
}

.btn-outline:hover[b-fzgw2fr8th] {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-sm[b-fzgw2fr8th] {
    font-size: 0.85rem;
    padding: 8px 14px;
}

.btn-xs[b-fzgw2fr8th] {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
}

/* History */
.history-section[b-fzgw2fr8th] {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.history-header[b-fzgw2fr8th] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-header h2[b-fzgw2fr8th] {
    font-size: 1.2rem;
    font-weight: 700;
}

.history-table-container[b-fzgw2fr8th] {
    overflow-x: auto;
}

.history-table[b-fzgw2fr8th] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.history-table th[b-fzgw2fr8th], .history-table td[b-fzgw2fr8th] {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-card);
}

.history-table th[b-fzgw2fr8th] {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.status-badge[b-fzgw2fr8th] {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-completed[b-fzgw2fr8th] {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.status-pending[b-fzgw2fr8th] {
    background: rgba(245, 197, 24, 0.2);
    color: #facc15;
}

.status-failed[b-fzgw2fr8th] {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.alert-danger[b-fzgw2fr8th] {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-close[b-fzgw2fr8th] {
    background: none;
    border: none;
    color: #fca5a5;
    font-size: 1rem;
    cursor: pointer;
}

.loading-state[b-fzgw2fr8th] {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
}

.spinner[b-fzgw2fr8th] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin-b-fzgw2fr8th 1s infinite linear;
}

@keyframes spin-b-fzgw2fr8th {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* /Components/Pages/Slots.razor.rz.scp.css */
.slots-shell[b-crn9ocl9ao] {
    display: flex;
    min-height: 100vh;
    background: var(--bg-deep);
}

.slots-sidebar[b-crn9ocl9ao] {
    width: var(--sidebar-width);
    flex-shrink: 0;
    background: var(--bg-mid);
    border-right: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 8px;
}

.slots-sidebar-logo[b-crn9ocl9ao] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px 16px;
    font-size: 1.3rem;
    border-bottom: 1px solid var(--border-card);
    margin-bottom: 8px;
}

.slots-sidebar-brand-text[b-crn9ocl9ao] {
    font-weight: 900;
    color: var(--accent-gold);
}

.slots-sidebar-nav[b-crn9ocl9ao] {
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    gap: 4px;
    flex: 1;
}

.slots-sidebar-link[b-crn9ocl9ao] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
}

.slots-sidebar-link:hover[b-crn9ocl9ao] {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.slots-sidebar-link.active[b-crn9ocl9ao] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.slots-sidebar-icon[b-crn9ocl9ao] {
    font-size: 1.1rem;
}

.slots-sidebar-buy[b-crn9ocl9ao] {
    padding: 12px 16px;
}

.slots-sidebar-level[b-crn9ocl9ao] {
    padding: 8px 16px 4px;
    margin-top: auto;
}

.slots-level-label[b-crn9ocl9ao] {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.slots-level-bar[b-crn9ocl9ao] {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.slots-level-fill[b-crn9ocl9ao] {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 3px;
}

.slots-main[b-crn9ocl9ao] {
    flex: 1;
    padding: 0 32px 40px;
    overflow-y: auto;
}

.slots-topbar[b-crn9ocl9ao] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 24px;
}

.slots-topbar-left[b-crn9ocl9ao] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slots-player-avatar[b-crn9ocl9ao] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    flex-shrink: 0;
}

.slots-avatar-level[b-crn9ocl9ao] {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--accent-purple);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slots-chips-display[b-crn9ocl9ao] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    padding: 8px 8px 8px 14px;
}

.slots-chips-icon[b-crn9ocl9ao] {
    font-size: 1rem;
}

.slots-chips-amount[b-crn9ocl9ao] {
    font-weight: 800;
    font-size: 0.95rem;
}

.slots-chips-add[b-crn9ocl9ao] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-green);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.15s;
}

.slots-chips-add:hover[b-crn9ocl9ao] {
    filter: brightness(1.15);
}

.slots-icon-btn[b-crn9ocl9ao] {
    background: rgba(255, 255, 255, 0.07);
    border: none;
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.slots-icon-btn:hover[b-crn9ocl9ao] {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.slots-hero-card[b-crn9ocl9ao] {
    margin-bottom: 30px;
    padding: 28px 30px;
    border: 1px solid var(--border-card);
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(245, 197, 24, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(34, 29, 85, 0.96), rgba(15, 12, 44, 0.96));
    box-shadow: var(--shadow-card);
}

.slots-hero-kicker[b-crn9ocl9ao] {
    margin-bottom: 10px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.slots-hero-card h1[b-crn9ocl9ao] {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
}

.slots-hero-card p[b-crn9ocl9ao] {
    max-width: 720px;
    color: var(--text-muted);
    line-height: 1.7;
}

.slots-games-header[b-crn9ocl9ao] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.slots-games-title[b-crn9ocl9ao] {
    font-size: 1.15rem;
    font-weight: 800;
}

.slots-games-count[b-crn9ocl9ao] {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.slots-games-grid[b-crn9ocl9ao] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.slots-game-card-link[b-crn9ocl9ao] {
    text-decoration: none;
    color: inherit;
    display: block;
}

.slots-game-card[b-crn9ocl9ao] {
    cursor: pointer;
    transition: transform 0.15s;
}

.slots-game-card:hover[b-crn9ocl9ao] {
    transform: translateY(-4px);
}

.slots-game-thumb[b-crn9ocl9ao] {
    border-radius: var(--radius-card);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

.slots-game-thumb-art[b-crn9ocl9ao],
.slots-game-thumb-img[b-crn9ocl9ao] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slots-game-thumb-art[b-crn9ocl9ao] {
    padding: 8px;
    filter: drop-shadow(0 4px 4px #0005);
}

.slots-game-thumb-placeholder[b-crn9ocl9ao] {
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    overflow-wrap: anywhere;
}

.slots-game-name[b-crn9ocl9ao] {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .slots-shell[b-crn9ocl9ao] {
        flex-direction: column;
    }

    .slots-sidebar[b-crn9ocl9ao] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-card);
    }

    .slots-sidebar-nav[b-crn9ocl9ao] {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .slots-sidebar-level[b-crn9ocl9ao] {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .slots-main[b-crn9ocl9ao] {
        padding: 0 16px 32px;
    }

    .slots-topbar[b-crn9ocl9ao],
    .slots-games-header[b-crn9ocl9ao] {
        flex-direction: column;
        align-items: stretch;
    }

    .slots-hero-card[b-crn9ocl9ao] {
        padding: 22px 18px;
    }
}
/* /Components/Shared/NavBar.razor.rz.scp.css */
.navbar[b-30rzjodjyo] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 11, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.navbar-inner[b-30rzjodjyo] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar-brand[b-30rzjodjyo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--accent-gold);
    flex-shrink: 0;
}
.brand-icon[b-30rzjodjyo] { font-size: 1.4rem; }

.navbar-links[b-30rzjodjyo] {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px 18px;
    margin-left: 8px;
    flex: 1;
}
.navbar-links a[b-30rzjodjyo] {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color .15s;
    white-space: nowrap;
}
.navbar-links a:hover[b-30rzjodjyo] { color: var(--text-primary); }

.navbar-actions[b-30rzjodjyo] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-email[b-30rzjodjyo] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 220px;
    color: var(--text-muted);
    font-size: .8rem;
    font-weight: 600;
}

.navbar-email-text[b-30rzjodjyo] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-email i[b-30rzjodjyo] {
    color: var(--accent-gold);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .navbar-links[b-30rzjodjyo] { display: none; }

    .navbar-inner[b-30rzjodjyo] {
        gap: 12px;
        padding: 0 14px;
    }

    .navbar-email[b-30rzjodjyo] {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .brand-name[b-30rzjodjyo] {
        display: none;
    }

    .navbar-actions[b-30rzjodjyo] {
        gap: 8px;
    }

    .navbar-actions .btn[b-30rzjodjyo] {
        padding-inline: 14px;
    }
}
/* /Features/Auth/Components/LoginForm.razor.rz.scp.css */
.auth-form[b-z4sl04yd5e] {
    width: 100%;
}

.auth-field[b-z4sl04yd5e] {
    margin-bottom: 12px;
}

.auth-label[b-z4sl04yd5e] {
    display: block;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.auth-input[b-z4sl04yd5e] {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.auth-input:focus[b-z4sl04yd5e] {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.18);
}

.auth-input[b-z4sl04yd5e]::placeholder {
    color: var(--text-muted);
}

.auth-submit-btn[b-z4sl04yd5e] {
    width: 100%;
    margin-top: 8px;
}

.auth-error-banner[b-z4sl04yd5e] {
    width: 100%;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #fecaca;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}
/* /Features/Auth/Components/RegisterForm.razor.rz.scp.css */
.auth-form[b-mckh7npa52] {
    width: 100%;
}

.auth-field[b-mckh7npa52] {
    margin-bottom: 12px;
}

.auth-label[b-mckh7npa52] {
    display: block;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.auth-input[b-mckh7npa52] {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.auth-input:focus[b-mckh7npa52] {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.18);
}

.auth-input[b-mckh7npa52]::placeholder {
    color: var(--text-muted);
}

.auth-checkbox-row[b-mckh7npa52] {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 14px 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.auth-checkbox-row input[b-mckh7npa52] {
    margin-top: 3px;
    flex-shrink: 0;
}

.auth-checkbox-row a[b-mckh7npa52] {
    color: var(--accent-gold);
    text-decoration: underline;
}

.auth-submit-btn[b-mckh7npa52] {
    width: 100%;
    margin-top: 8px;
}

.auth-error-banner[b-mckh7npa52] {
    width: 100%;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #fecaca;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
}
