/* /Features/Admin/AdminDashboard.razor.rz.scp.css */
.admin[b-ib8cakbymw] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.admin-head[b-ib8cakbymw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.admin-head h1[b-ib8cakbymw] {
    margin: 0;
}

.admin-tabs[b-ib8cakbymw] {
    display: flex;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.admin-tab[b-ib8cakbymw] {
    appearance: none;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    cursor: pointer;
    margin-bottom: -1px;
}

.admin-tab:hover[b-ib8cakbymw] {
    color: var(--text-primary);
}

.admin-tab.active[b-ib8cakbymw] {
    color: var(--text-primary);
    border-bottom-color: var(--accent);
}
/* /Features/Admin/MetricsTab.razor.rz.scp.css */
.metrics[b-y6k02nus1f] {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.metrics-range[b-y6k02nus1f] {
    display: flex;
    gap: 0.4rem;
}

.range-btn[b-y6k02nus1f] {
    appearance: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.85rem;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.range-btn:hover[b-y6k02nus1f] {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.range-btn.active[b-y6k02nus1f] {
    color: var(--text-primary);
    border-color: var(--accent);
    background: var(--bg-elevated);
}

.metrics-status[b-y6k02nus1f] {
    color: var(--text-secondary);
}

.metrics-status.error[b-y6k02nus1f] {
    color: #f87171;
}

.stat-cards[b-y6k02nus1f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.85rem;
}

.stat-card[b-y6k02nus1f] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-elevated);
}

.stat-value[b-y6k02nus1f] {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

.stat-label[b-y6k02nus1f] {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.metrics-block h2[b-y6k02nus1f] {
    font-size: 1.05rem;
    margin: 0 0 0.9rem;
    color: var(--text-primary);
}

.chart-wrap[b-y6k02nus1f] {
    display: flex;
    gap: 0.5rem;
}

.y-axis[b-y6k02nus1f] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 180px;
    padding: 0.5rem 0 1.3rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.bar-chart[b-y6k02nus1f] {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 180px;
    padding: 0.5rem 0.25rem 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-elevated);
}

.bar-col[b-y6k02nus1f] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    height: 100%;
}

.bar-track[b-y6k02nus1f] {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2px;
}

.bar-value[b-y6k02nus1f] {
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.bar[b-y6k02nus1f] {
    width: 100%;
    max-width: 22px;
    min-height: 2px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(var(--accent), var(--accent-soft));
    transition: height 0.25s ease;
}

.bar-col:hover .bar[b-y6k02nus1f] {
    filter: brightness(1.2);
}

.bar-label[b-y6k02nus1f] {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.metrics-table[b-y6k02nus1f] {
    width: 100%;
    border-collapse: collapse;
}

.metrics-table th[b-y6k02nus1f],
.metrics-table td[b-y6k02nus1f] {
    text-align: left;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--border);
}

.metrics-table th[b-y6k02nus1f] {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.metrics-table td[b-y6k02nus1f] {
    color: var(--text-primary);
}

.metrics-table .num[b-y6k02nus1f] {
    text-align: right;
    font-variant-numeric: tabular-nums;
}
/* /Features/Admin/UserManagementTab.razor.rz.scp.css */
.users-filters[b-o62j96hqo0] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.filter[b-o62j96hqo0] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter label[b-o62j96hqo0] {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.filter input[b-o62j96hqo0] {
    min-width: 11rem;
    padding: 0.45rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.filter input:focus[b-o62j96hqo0] {
    outline: none;
    border-color: var(--accent);
}

.users-status[b-o62j96hqo0] {
    color: var(--text-secondary);
    padding: 1.5rem 0;
    text-align: center;
}

.users-status.error[b-o62j96hqo0] {
    color: #ef476f;
}

.users-table-wrap[b-o62j96hqo0] {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.users-table[b-o62j96hqo0] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.users-table th[b-o62j96hqo0],
.users-table td[b-o62j96hqo0] {
    text-align: left;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid var(--border);
}

.users-table thead th[b-o62j96hqo0] {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: var(--bg-elevated);
}

.users-table tbody tr:last-child td[b-o62j96hqo0] {
    border-bottom: none;
}

.users-table tbody tr:hover[b-o62j96hqo0] {
    background: var(--bg-elevated);
}

.sortable[b-o62j96hqo0] {
    cursor: pointer;
    user-select: none;
}

.sortable:hover[b-o62j96hqo0] {
    color: var(--text-primary);
}

.nowrap[b-o62j96hqo0] {
    white-space: nowrap;
}

.actions-col[b-o62j96hqo0] {
    text-align: right;
    white-space: nowrap;
}

.actions-col .btn[b-o62j96hqo0] {
    margin-left: 0.35rem;
}

.users-pager[b-o62j96hqo0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.page-size[b-o62j96hqo0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.page-size select[b-o62j96hqo0] {
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.page-nav[b-o62j96hqo0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-info[b-o62j96hqo0] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.btn.xsmall[b-o62j96hqo0] {
    min-height: 0;
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
}

.btn.danger[b-o62j96hqo0] {
    border-color: #ef476f;
    color: #ef476f;
}

.btn.danger:hover[b-o62j96hqo0] {
    background: rgba(239, 71, 111, 0.12);
}

.modal-backdrop[b-o62j96hqo0] {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 50;
}

.modal[b-o62j96hqo0] {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    width: min(560px, 100%);
    max-height: 85vh;
    overflow-y: auto;
}

.modal-narrow[b-o62j96hqo0] {
    width: min(440px, 100%);
}

.modal-head[b-o62j96hqo0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.modal-head h2[b-o62j96hqo0] {
    margin: 0;
    font-size: 1.15rem;
}

.modal-close[b-o62j96hqo0] {
    appearance: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.modal-close:hover[b-o62j96hqo0] {
    color: var(--text-primary);
}

.modal-body[b-o62j96hqo0] {
    padding: 1.25rem;
}

.modal-actions[b-o62j96hqo0] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.external-logins[b-o62j96hqo0] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.external-label[b-o62j96hqo0] {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.external-chip[b-o62j96hqo0] {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--border);
}

.external-chip.linked[b-o62j96hqo0] {
    color: #06d6a0;
    border-color: #06d6a0;
}

.external-chip.unlinked[b-o62j96hqo0] {
    color: var(--text-secondary);
}

.logins-table[b-o62j96hqo0] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.logins-table th[b-o62j96hqo0],
.logins-table td[b-o62j96hqo0] {
    text-align: left;
    padding: 0.5rem 0.6rem;
    border-bottom: 1px solid var(--border);
}

.logins-table thead th[b-o62j96hqo0] {
    color: var(--text-secondary);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.delete-warning[b-o62j96hqo0] {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 0.5rem;
}

.delete-warning strong[b-o62j96hqo0] {
    color: var(--text-primary);
}
/* /Features/Games/Breakout/BreakoutGame.razor.rz.scp.css */
.breakout[b-9ce565xkpl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-9ce565xkpl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-9ce565xkpl] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.lives[b-9ce565xkpl] {
    font-size: 0.875rem;
    color: var(--accent-soft);
    letter-spacing: 0.3em;
}

.restart[b-9ce565xkpl] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-9ce565xkpl] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-9ce565xkpl] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-9ce565xkpl] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-9ce565xkpl] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-9ce565xkpl] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-9ce565xkpl] {
    color: var(--text-secondary);
}

.hint[b-9ce565xkpl] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Games/CoreGuard/CoreGuardGame.razor.rz.scp.css */
.game[b-lub5rg4q72] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-lub5rg4q72] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-lub5rg4q72] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.lives[b-lub5rg4q72] {
    font-size: 0.875rem;
    color: var(--accent-soft);
    letter-spacing: 0.3em;
}

.restart[b-lub5rg4q72] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-lub5rg4q72] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-lub5rg4q72] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-lub5rg4q72] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-lub5rg4q72] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-lub5rg4q72] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-lub5rg4q72] {
    color: var(--text-secondary);
}

.hint[b-lub5rg4q72] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Games/Drift/DriftGame.razor.rz.scp.css */
.game[b-28ounf0fyy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-28ounf0fyy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-28ounf0fyy] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.lives[b-28ounf0fyy] {
    font-size: 0.875rem;
    color: var(--accent-soft);
    letter-spacing: 0.3em;
}

.restart[b-28ounf0fyy] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-28ounf0fyy] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-28ounf0fyy] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-28ounf0fyy] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-28ounf0fyy] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-28ounf0fyy] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-28ounf0fyy] {
    color: var(--text-secondary);
}

.hint[b-28ounf0fyy] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Games/Echo/EchoGame.razor.rz.scp.css */
.game[b-jcoh08yre6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-jcoh08yre6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-jcoh08yre6] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.restart[b-jcoh08yre6] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-jcoh08yre6] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-jcoh08yre6] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-jcoh08yre6] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-jcoh08yre6] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-jcoh08yre6] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-jcoh08yre6] {
    color: var(--text-secondary);
}

.hint[b-jcoh08yre6] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Games/Flappy/FlappyGame.razor.rz.scp.css */
.flappy[b-zm91rxfit7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-zm91rxfit7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-zm91rxfit7] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.restart[b-zm91rxfit7] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-zm91rxfit7] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-zm91rxfit7] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-zm91rxfit7] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-zm91rxfit7] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-zm91rxfit7] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-zm91rxfit7] {
    color: var(--text-secondary);
}

.hint[b-zm91rxfit7] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Games/GamePage.razor.rz.scp.css */
.game-header[b-5ew9fihedg] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 1.5rem;
}

.game-header h1[b-5ew9fihedg] {
    grid-column: 2;
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-primary);
    text-align: center;
}

.game-header .back-link[b-5ew9fihedg] {
    grid-column: 1;
    justify-self: start;
    margin: 0;
}

.placeholder[b-5ew9fihedg] {
    text-align: center;
    padding: 4rem 0;
}

.placeholder h1[b-5ew9fihedg] {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
}

.placeholder p[b-5ew9fihedg] {
    margin: 0 auto;
    max-width: 36rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.coming-soon[b-5ew9fihedg] {
    margin-top: 0.5rem;
    font-style: italic;
}

.back-link[b-5ew9fihedg] {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent-soft);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover[b-5ew9fihedg] {
    text-decoration: underline;
}
/* /Features/Games/Inflate/InflateGame.razor.rz.scp.css */
.game[b-o0n67h3nqt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-o0n67h3nqt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-o0n67h3nqt] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.lives[b-o0n67h3nqt] {
    font-size: 0.875rem;
    color: var(--accent-soft);
    letter-spacing: 0.3em;
}

.restart[b-o0n67h3nqt] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-o0n67h3nqt] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-o0n67h3nqt] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-o0n67h3nqt] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-o0n67h3nqt] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-o0n67h3nqt] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-o0n67h3nqt] {
    color: var(--text-secondary);
}

.hint[b-o0n67h3nqt] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Games/Mirror/MirrorGame.razor.rz.scp.css */
.game[b-1mhfnraumf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-1mhfnraumf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-1mhfnraumf] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.lives[b-1mhfnraumf] {
    font-size: 0.875rem;
    color: var(--accent-soft);
    letter-spacing: 0.3em;
}

.restart[b-1mhfnraumf] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-1mhfnraumf] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-1mhfnraumf] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-1mhfnraumf] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-1mhfnraumf] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-1mhfnraumf] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-1mhfnraumf] {
    color: var(--text-secondary);
}

.hint[b-1mhfnraumf] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Games/Orbit/OrbitGame.razor.rz.scp.css */
.game[b-iqkrbnme3s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-iqkrbnme3s] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-iqkrbnme3s] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.lives[b-iqkrbnme3s] {
    font-size: 0.875rem;
    color: var(--accent-soft);
    letter-spacing: 0.3em;
}

.restart[b-iqkrbnme3s] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-iqkrbnme3s] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-iqkrbnme3s] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-iqkrbnme3s] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-iqkrbnme3s] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-iqkrbnme3s] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-iqkrbnme3s] {
    color: var(--text-secondary);
}

.hint[b-iqkrbnme3s] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Games/Pong/PongGame.razor.rz.scp.css */
.pong[b-thse76xnkr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-thse76xnkr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.score[b-thse76xnkr] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.level[b-thse76xnkr],
.time[b-thse76xnkr] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.restart[b-thse76xnkr] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-thse76xnkr] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-thse76xnkr] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-thse76xnkr] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-thse76xnkr] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-thse76xnkr] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-thse76xnkr] {
    color: var(--text-secondary);
}

.hint[b-thse76xnkr] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}
/* /Features/Games/Snake/SnakeGame.razor.rz.scp.css */
.snake[b-4q0tsqzp76] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-4q0tsqzp76] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(600px, 100%, 80vh);
}

.score[b-4q0tsqzp76] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.restart[b-4q0tsqzp76] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-4q0tsqzp76] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-4q0tsqzp76] {
    position: relative;
    width: min(600px, 100%, 80vh);
}

canvas[b-4q0tsqzp76] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    /* the board owns its gestures: no scrolling, zooming, or text selection */
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-4q0tsqzp76] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    /* taps must reach the canvas underneath (tap-to-start/restart) */
    pointer-events: none;
}

.banner strong[b-4q0tsqzp76] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-4q0tsqzp76] {
    color: var(--text-secondary);
}

.hint[b-4q0tsqzp76] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}
/* /Features/Games/Tetris/TetrisGame.razor.rz.scp.css */
.tetris[b-8slsja2uw9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-8slsja2uw9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-8slsja2uw9] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.restart[b-8slsja2uw9] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-8slsja2uw9] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-8slsja2uw9] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-8slsja2uw9] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-8slsja2uw9] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-8slsja2uw9] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-8slsja2uw9] {
    color: var(--text-secondary);
}

.hint[b-8slsja2uw9] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Games/Wobble/WobbleGame.razor.rz.scp.css */
.game[b-kvxobu0ybk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hud[b-kvxobu0ybk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(540px, 100%, 70vh);
}

.stat[b-kvxobu0ybk] {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.lives[b-kvxobu0ybk] {
    font-size: 0.875rem;
    color: var(--accent-soft);
    letter-spacing: 0.3em;
}

.restart[b-kvxobu0ybk] {
    min-height: 44px;
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.restart:hover[b-kvxobu0ybk] {
    border-color: var(--accent);
    background: #1a2133;
}

.board[b-kvxobu0ybk] {
    position: relative;
    width: min(540px, 100%, 70vh);
}

canvas[b-kvxobu0ybk] {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.banner[b-kvxobu0ybk] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.5rem;
    background: rgba(7, 9, 14, 0.7);
    border-radius: 12px;
    text-align: center;
    pointer-events: none;
}

.banner strong[b-kvxobu0ybk] {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.banner span[b-kvxobu0ybk] {
    color: var(--text-secondary);
}

.hint[b-kvxobu0ybk] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: center;
}
/* /Features/Home/Components/GameCard.razor.rz.scp.css */
.card[b-i0f3alqm0t] {
    display: block;
    text-decoration: none;
    outline: none;
}

.thumb[b-i0f3alqm0t] {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.thumb img[b-i0f3alqm0t] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.3s ease;
}

/* Darkening layer + play button, hidden until hover/focus */
.overlay[b-i0f3alqm0t] {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(7, 9, 14, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.play[b-i0f3alqm0t] {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 6px 24px rgba(124, 92, 255, 0.55);
    transform: scale(0.55);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.play svg[b-i0f3alqm0t] {
    margin-left: 3px; /* optically center the triangle */
}

.card:hover .thumb[b-i0f3alqm0t],
.card:focus-visible .thumb[b-i0f3alqm0t] {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.card:hover .thumb img[b-i0f3alqm0t],
.card:focus-visible .thumb img[b-i0f3alqm0t] {
    transform: scale(1.07);
}

.card:hover .overlay[b-i0f3alqm0t],
.card:focus-visible .overlay[b-i0f3alqm0t] {
    opacity: 1;
}

.card:hover .play[b-i0f3alqm0t],
.card:focus-visible .play[b-i0f3alqm0t] {
    transform: scale(1);
}

.name[b-i0f3alqm0t] {
    display: block;
    margin-top: 0.7rem;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.card:hover .name[b-i0f3alqm0t],
.card:focus-visible .name[b-i0f3alqm0t] {
    color: var(--accent-soft);
}

@media (prefers-reduced-motion: reduce) {
    .thumb[b-i0f3alqm0t],
    .thumb img[b-i0f3alqm0t],
    .overlay[b-i0f3alqm0t],
    .play[b-i0f3alqm0t],
    .name[b-i0f3alqm0t] {
        transition: none;
    }
}
/* /Features/Home/HomePage.razor.rz.scp.css */
.hero[b-zrj6f9ve4p] {
    text-align: center;
    padding: 3rem 0 3.5rem;
}

.hero-title[b-zrj6f9ve4p] {
    margin: 0;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(95deg, #a78bfa 0%, #7c5cff 45%, #2dd4bf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-intro[b-zrj6f9ve4p] {
    max-width: 40rem;
    margin: 1.25rem auto 0;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.65;
}

.game-grid[b-zrj6f9ve4p] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.75rem 1.5rem;
}
/* /Features/Leaderboard/GameLeaderboard.razor.rz.scp.css */
.game-lb-head[b-afl8a30jir] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin: 1.5rem 0;
}

.game-lb-head h1[b-afl8a30jir] {
    grid-column: 2;
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    text-align: center;
}

.back-link[b-afl8a30jir] {
    grid-column: 1;
    justify-self: start;
    color: var(--accent-soft);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover[b-afl8a30jir] {
    text-decoration: underline;
}

.lb-table[b-afl8a30jir] {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.lb-table th[b-afl8a30jir],
.lb-table td[b-afl8a30jir] {
    padding: 0.7rem 1rem;
    text-align: left;
}

.lb-table thead th[b-afl8a30jir] {
    background: #161c2b;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lb-table tbody tr[b-afl8a30jir] {
    border-top: 1px solid var(--border);
}

.lb-table tbody tr:nth-child(1) td[b-afl8a30jir] {
    color: var(--accent-soft);
    font-weight: 700;
}

.lb-table .rank[b-afl8a30jir] {
    width: 3rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.lb-table .num[b-afl8a30jir] {
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.lb-status[b-afl8a30jir] {
    text-align: center;
    color: var(--text-secondary);
    padding: 2.5rem 0;
}

.lb-status.error[b-afl8a30jir] {
    color: #fca5a5;
}

.lb-gate[b-afl8a30jir] {
    max-width: 30rem;
    margin: 3rem auto;
    text-align: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.lb-gate h1[b-afl8a30jir] {
    margin: 0 0 0.6rem;
}

.lb-gate p[b-afl8a30jir] {
    color: var(--text-secondary);
    margin: 0 0 1.4rem;
}
/* /Features/Leaderboard/LeaderboardPage.razor.rz.scp.css */
.lb-head[b-ap57fnsjom] {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.lb-head h1[b-ap57fnsjom] {
    margin: 0 0 0.4rem;
    font-size: clamp(2rem, 5vw, 2.75rem);
}

.lb-head p[b-ap57fnsjom] {
    margin: 0;
    color: var(--text-secondary);
}

.lb-grid[b-ap57fnsjom] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

.lb-card[b-ap57fnsjom] {
    display: block;
    text-decoration: none;
}

.lb-thumb[b-ap57fnsjom] {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.lb-thumb img[b-ap57fnsjom] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-card:hover .lb-thumb[b-ap57fnsjom] {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.lb-name[b-ap57fnsjom] {
    display: block;
    margin-top: 0.55rem;
    font-weight: 600;
    color: var(--text-primary);
}

.lb-gate[b-ap57fnsjom] {
    max-width: 30rem;
    margin: 3rem auto;
    text-align: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.lb-gate h1[b-ap57fnsjom] {
    margin: 0 0 0.6rem;
}

.lb-gate p[b-ap57fnsjom] {
    color: var(--text-secondary);
    margin: 0 0 1.4rem;
}

.lb-gate .lb-gate-sub[b-ap57fnsjom] {
    margin: 2.25rem 0 0;
    font-size: 0.9rem;
}

.lb-gate-sub a[b-ap57fnsjom] {
    color: var(--accent-soft);
}
/* /Features/Leaderboard/LeaderboardResultBanner.razor.rz.scp.css */
.placement[b-zns9teh5hj] {
    position: relative;
    /* the parent game-over banner sets pointer-events: none; re-enable so the link is clickable */
    pointer-events: auto;
    margin-top: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    overflow: hidden;
    animation: placement-in-b-zns9teh5hj 420ms cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}

.placement-medal[b-zns9teh5hj] {
    font-size: 2rem;
    line-height: 1;
}

.placement-headline[b-zns9teh5hj] {
    font-weight: 700;
    color: var(--text-primary);
}

.placement-sub[b-zns9teh5hj] {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.placement-sub strong[b-zns9teh5hj] {
    color: var(--text-primary);
}

.placement-link[b-zns9teh5hj] {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: var(--accent-soft);
    text-decoration: none;
}

.placement-link:hover[b-zns9teh5hj] {
    text-decoration: underline;
}

.is-top[b-zns9teh5hj] {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 10px 34px -14px var(--accent);
    animation: placement-in-b-zns9teh5hj 420ms cubic-bezier(0.2, 0.9, 0.3, 1.2) both,
               top-glow-b-zns9teh5hj 2.2s ease-in-out 420ms infinite;
}

.is-top .placement-medal[b-zns9teh5hj] {
    animation: medal-pop-b-zns9teh5hj 700ms cubic-bezier(0.2, 1.4, 0.4, 1) both;
}

@keyframes placement-in-b-zns9teh5hj {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes medal-pop-b-zns9teh5hj {
    0% {
        transform: scale(0) rotate(-25deg);
    }

    60% {
        transform: scale(1.35) rotate(12deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

@keyframes top-glow-b-zns9teh5hj {
    0%, 100% {
        box-shadow: 0 0 0 1px var(--accent), 0 8px 22px -16px var(--accent);
    }

    50% {
        box-shadow: 0 0 0 1px var(--accent), 0 12px 40px -8px var(--accent);
    }
}

.burst[b-zns9teh5hj] {
    position: absolute;
    top: 26px;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
}

.burst span[b-zns9teh5hj] {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    opacity: 0;
    transform: rotate(calc(var(--n) * 22.5deg)) translateY(0) scale(0.4);
    animation: burst-b-zns9teh5hj 950ms ease-out forwards;
    animation-delay: calc(var(--n) * 18ms);
}

.burst span:nth-child(4n)[b-zns9teh5hj] {
    background: var(--accent);
}

.burst span:nth-child(4n+1)[b-zns9teh5hj] {
    background: #ffd166;
}

.burst span:nth-child(4n+2)[b-zns9teh5hj] {
    background: #06d6a0;
    border-radius: 50%;
}

.burst span:nth-child(4n+3)[b-zns9teh5hj] {
    background: #ef476f;
}

@keyframes burst-b-zns9teh5hj {
    0% {
        opacity: 0;
        transform: rotate(calc(var(--n) * 22.5deg)) translateY(0) scale(0.4);
    }

    25% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(calc(var(--n) * 22.5deg)) translateY(-54px) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .placement[b-zns9teh5hj],
    .is-top[b-zns9teh5hj],
    .is-top .placement-medal[b-zns9teh5hj],
    .burst span[b-zns9teh5hj] {
        animation: none;
    }

    .burst[b-zns9teh5hj] {
        display: none;
    }
}
/* /Layout/Header.razor.rz.scp.css */
.site-header[b-fgzu840u5w] {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.header-inner[b-fgzu840u5w] {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1.25rem;
}

.brand[b-fgzu840u5w] {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-decoration: none;
}

.brand span[b-fgzu840u5w] {
    color: var(--accent-soft);
}

.site-nav[b-fgzu840u5w] {
    display: flex;
    gap: 0.35rem;
    margin-left: 0.5rem;
    flex: 1;
}

.site-nav[b-fgzu840u5w]  .site-link {
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.site-nav[b-fgzu840u5w]  .site-link:hover {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.site-nav[b-fgzu840u5w]  .site-link.active {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.account-area[b-fgzu840u5w] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sound-toggle[b-fgzu840u5w] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.sound-toggle:hover[b-fgzu840u5w] {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.sound-toggle svg[b-fgzu840u5w] {
    width: 18px;
    height: 18px;
}

.who[b-fgzu840u5w] {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.92rem;
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.15s ease;
}

.who:hover[b-fgzu840u5w] {
    color: var(--accent-soft);
}

@media (max-width: 560px) {
    .header-inner[b-fgzu840u5w] {
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
        padding: 0.6rem 0.9rem;
    }

    .brand[b-fgzu840u5w] {
        font-size: 1.1rem;
    }

    .site-nav[b-fgzu840u5w] {
        order: 3;
        flex-basis: 100%;
        margin-left: 0;
    }

    .account-area[b-fgzu840u5w] {
        margin-left: auto;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-zfup0geigw] {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 5rem;
}
