/* /Components/BadgeChip.razor.rz.scp.css */
.bc-wrap[b-xxur7kriyc] {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    user-select: none;
    transition: transform 0.12s ease;
}

.bc-wrap[role="button"]:hover[b-xxur7kriyc] {
    transform: translateY(-1px);
}

.bc-ring[b-xxur7kriyc] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    border: 2px solid rgba(255,255,255,0.45);
}

.bc-name[b-xxur7kriyc] {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    color: var(--pp-text, #333);
    max-width: 90px;
    line-height: 1.15;
    word-break: break-word;
}

/* ── Tier gradients ─────────────────────────────────────────────────────── */

.bc-bronze   .bc-ring[b-xxur7kriyc] { background: linear-gradient(135deg, #c78f5a, #a8703a); }
.bc-silver   .bc-ring[b-xxur7kriyc] { background: linear-gradient(135deg, #d7d7db, #9b9ba0); color: #2a2a2a; }
.bc-gold     .bc-ring[b-xxur7kriyc] { background: linear-gradient(135deg, #ffd86b, #f4a522); color: #4a2c00; }
.bc-platinum .bc-ring[b-xxur7kriyc] {
    background: linear-gradient(135deg, #a8d8ff, #4e7ed9 60%, #9b6fe3);
    box-shadow: 0 0 10px rgba(155,111,227,0.55), 0 2px 6px rgba(0,0,0,0.25);
}

/* ── Locked / hidden (grid overview) ────────────────────────────────────── */

.bc-locked .bc-ring[b-xxur7kriyc] {
    background: var(--pp-surface-3, #e4e4e4);
    color: var(--pp-text-muted, #999);
    box-shadow: none;
    border-color: rgba(0,0,0,0.08);
}

.bc-locked .bc-name[b-xxur7kriyc] {
    color: var(--pp-text-muted, #999);
}

.bc-hidden .bc-ring[b-xxur7kriyc] {
    background: repeating-linear-gradient(
        45deg,
        var(--pp-surface-3, #d7d7d7),
        var(--pp-surface-3, #d7d7d7) 4px,
        var(--pp-surface-2, #e0e0e0) 4px,
        var(--pp-surface-2, #e0e0e0) 8px);
    color: var(--pp-text-muted, #999);
}

.bc-hidden .bc-ring[b-xxur7kriyc]::before {
    content: "?";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--pp-text-muted, #777);
    font-size: 1rem;
    font-family: inherit;
}

.bc-hidden .bc-ring i[b-xxur7kriyc] {
    opacity: 0;
}

/* ── Sizes ──────────────────────────────────────────────────────────────── */

.bc-sm .bc-ring[b-xxur7kriyc] { width: 28px; height: 28px; font-size: 0.82rem; border-width: 1.5px; }
.bc-lg .bc-ring[b-xxur7kriyc] { width: 56px; height: 56px; font-size: 1.4rem; border-width: 3px; }
/* /Components/BadgeDetailModal.razor.rz.scp.css */
.bdm-backdrop[b-hmmwdgb1t1] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: bdm-fade-in-b-hmmwdgb1t1 0.12s ease-out;
}

@keyframes bdm-fade-in-b-hmmwdgb1t1 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.bdm-panel[b-hmmwdgb1t1] {
    background: var(--pp-card-bg, #fff);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 440px;
    width: calc(100% - 2rem);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    animation: bdm-pop-b-hmmwdgb1t1 0.18s ease-out;
}

@keyframes bdm-pop-b-hmmwdgb1t1 {
    from { opacity: 0; transform: translateY(6px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.bdm-close[b-hmmwdgb1t1] {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    color: var(--pp-text-muted, #777);
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 50%;
    line-height: 1;
    transition: background 0.12s ease, color 0.12s ease;
}

.bdm-close:hover[b-hmmwdgb1t1] {
    background: var(--pp-surface-2, #eee);
    color: var(--pp-text, #333);
}

.bdm-head[b-hmmwdgb1t1] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bdm-head-text h2[b-hmmwdgb1t1] {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pp-text, #222);
}

.bdm-tier-row[b-hmmwdgb1t1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.bdm-tier[b-hmmwdgb1t1] {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.1rem 0.45rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
}

.bdm-tier-bronze[b-hmmwdgb1t1]   { background: linear-gradient(135deg, #c78f5a, #a8703a); }
.bdm-tier-silver[b-hmmwdgb1t1]   { background: linear-gradient(135deg, #d7d7db, #9b9ba0); color: #2a2a2a; }
.bdm-tier-gold[b-hmmwdgb1t1]     { background: linear-gradient(135deg, #ffd86b, #f4a522); color: #4a2c00; }
.bdm-tier-platinum[b-hmmwdgb1t1] { background: linear-gradient(135deg, #a8d8ff, #4e7ed9 60%, #9b6fe3); }

.bdm-points[b-hmmwdgb1t1] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pp-text-muted, #888);
}

.bdm-body[b-hmmwdgb1t1] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bdm-desc[b-hmmwdgb1t1] {
    margin: 0;
    font-size: 0.9rem;
    color: var(--pp-text, #333);
    line-height: 1.4;
}

.bdm-row[b-hmmwdgb1t1] {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-top: 1px solid var(--pp-border-3, #eee);
}

.bdm-label[b-hmmwdgb1t1] {
    flex-shrink: 0;
    color: var(--pp-text-muted, #888);
    font-weight: 600;
    min-width: 115px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.bdm-value[b-hmmwdgb1t1] {
    color: var(--pp-text, #333);
    font-weight: 600;
}

.bdm-hidden-note[b-hmmwdgb1t1] {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
    color: var(--pp-text-muted, #888);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Progress bar shown on locked non-hidden badges. Sits in the .bdm-body row
   flow, but its value is a stacked block (text on top, bar below) instead of
   the usual inline label+value layout. */
.bdm-progress-row[b-hmmwdgb1t1] {
    align-items: flex-start;
}

.bdm-progress-wrap[b-hmmwdgb1t1] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.bdm-progress-text[b-hmmwdgb1t1] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pp-text, #333);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}

.bdm-progress-pct[b-hmmwdgb1t1] {
    color: var(--pp-text-muted, #888);
    font-size: 0.8rem;
    font-weight: 700;
}

.bdm-progress-bar[b-hmmwdgb1t1] {
    width: 100%;
    height: 8px;
    background: var(--pp-surface-2, #eee);
    border-radius: 999px;
    overflow: hidden;
}

.bdm-progress-fill[b-hmmwdgb1t1] {
    height: 100%;
    background: linear-gradient(90deg, #e63946, #ff6b6b);
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* Friends-with-this-badge row. Stacks the chips below the label so we can
   show many friends without overflowing the row. */
.bdm-friends-row[b-hmmwdgb1t1] {
    align-items: flex-start;
}

.bdm-friends-wrap[b-hmmwdgb1t1] {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    min-width: 0;
}

.bdm-friends-empty[b-hmmwdgb1t1] {
    color: var(--pp-text-muted, #888);
    font-size: 0.82rem;
    font-style: italic;
}

.bdm-friend[b-hmmwdgb1t1] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.55rem 0.2rem 0.2rem;
    background: var(--pp-surface-2, #f4f4f4);
    border-radius: 999px;
    text-decoration: none;
    color: var(--pp-text, #333);
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.12s ease, transform 0.12s ease;
    max-width: 100%;
}

.bdm-friend:hover[b-hmmwdgb1t1] {
    background: var(--pp-surface-3, #e8e8e8);
    transform: translateY(-1px);
}

.bdm-friend-avatar[b-hmmwdgb1t1] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bdm-friend-letter[b-hmmwdgb1t1] {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.bdm-friend-name[b-hmmwdgb1t1] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 120px;
}
/* /Components/InteractiveGuide.razor.rz.scp.css */
.pp-guide-backdrop[b-t3hx66ghmk] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 1rem;
    animation: pp-guide-fade-b-t3hx66ghmk 0.18s ease-out;
}

@keyframes pp-guide-fade-b-t3hx66ghmk {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pp-guide-panel[b-t3hx66ghmk] {
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 16px;
    padding: 1.75rem 1.5rem 1.5rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    animation: pp-guide-pop-b-t3hx66ghmk 0.22s ease-out;
}

@keyframes pp-guide-pop-b-t3hx66ghmk {
    from { transform: scale(0.94); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.pp-guide-close[b-t3hx66ghmk] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--pp-text-muted);
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1;
}

.pp-guide-close:hover[b-t3hx66ghmk] {
    background: var(--pp-surface-hover, rgba(0, 0, 0, 0.05));
    color: var(--pp-text);
}

.pp-guide-progress[b-t3hx66ghmk] {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.25rem;
}

.pp-guide-dot[b-t3hx66ghmk] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pp-border-3, #d8d8d8);
    transition: background 0.15s ease, transform 0.15s ease;
}

.pp-guide-dot.done[b-t3hx66ghmk] {
    background: var(--pp-accent, #7c3aed);
    opacity: 0.55;
}

.pp-guide-dot.current[b-t3hx66ghmk] {
    background: var(--pp-accent, #7c3aed);
    transform: scale(1.35);
}

.pp-guide-icon[b-t3hx66ghmk] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--pp-accent, #7c3aed) 14%, transparent);
    color: var(--pp-accent, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.pp-guide-eyebrow[b-t3hx66ghmk] {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pp-text-muted);
}

.pp-guide-title[b-t3hx66ghmk] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pp-text);
    line-height: 1.25;
}

.pp-guide-body[b-t3hx66ghmk] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--pp-text);
    opacity: 0.92;
}

.pp-guide-body code[b-t3hx66ghmk] {
    background: var(--pp-surface-hover, rgba(0, 0, 0, 0.06));
    padding: 0.05rem 0.35rem;
    border-radius: 4px;
    font-size: 0.85em;
}

.pp-guide-body a[b-t3hx66ghmk] {
    color: var(--pp-accent, #7c3aed);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pp-guide-actions[b-t3hx66ghmk] {
    display: flex;
    gap: 0.6rem;
    width: 100%;
    margin-top: 0.5rem;
}

.pp-guide-primary[b-t3hx66ghmk],
.pp-guide-secondary[b-t3hx66ghmk] {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid transparent;
}

.pp-guide-primary[b-t3hx66ghmk] {
    background: var(--pp-accent, #7c3aed);
    color: #fff;
    border-color: var(--pp-accent, #7c3aed);
}

.pp-guide-primary:hover[b-t3hx66ghmk] {
    filter: brightness(1.1);
}

.pp-guide-secondary[b-t3hx66ghmk] {
    background: none;
    border-color: var(--pp-border-3, #e0e0e0);
    color: var(--pp-text-muted);
}

.pp-guide-secondary:hover[b-t3hx66ghmk] {
    background: var(--pp-surface-hover, rgba(0, 0, 0, 0.05));
    color: var(--pp-text);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ── Page skeleton ─────────────────────────────────────────────────── */

.page[b-25tcbr2kei] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-25tcbr2kei] {
    flex: 1;
}

/* ── Responsive article padding ─────────────────────────────────────── */
/* Top-row / nav padding lives in Components/Layout/TopNav.razor.css
 * (scoped to that component). Only the article content padding — which
 * targets a child of MainLayout — stays here. */

@media (min-width: 641px) {
    article[b-25tcbr2kei] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* ── Footer ─────────────────────────────────────────────────────────── */

.site-footer[b-25tcbr2kei] {
    margin-top: 3rem;
    border-top: 1px solid var(--pp-border, rgba(255, 255, 255, 0.1));
    padding: 1.5rem 2rem;
}

.footer-content[b-25tcbr2kei] {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links[b-25tcbr2kei] {
    display: flex;
    gap: 1.5rem;
}

.footer-links a[b-25tcbr2kei] {
    color: var(--pp-text-muted, #777);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

.footer-links a:hover[b-25tcbr2kei] {
    color: var(--pp-text, #333);
    text-decoration: none;
}

.footer-copy[b-25tcbr2kei] {
    color: var(--pp-text-muted, #777);
    font-size: 0.8rem;
}

.footer-version[b-25tcbr2kei] {
    opacity: 0.7;
    font-size: 0.85em;
    margin-left: 0.25rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-64c4zbqhp0],
.components-reconnect-repeated-attempt-visible[b-64c4zbqhp0],
.components-reconnect-failed-visible[b-64c4zbqhp0],
.components-pause-visible[b-64c4zbqhp0],
.components-resume-failed-visible[b-64c4zbqhp0],
.components-rejoining-animation[b-64c4zbqhp0] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/TopNav.razor.rz.scp.css */
/* ── Top navigation bar ─────────────────────────────────────────────── */

.top-row[b-nyst95f4cy] {
    background: var(--pp-nav-bg, linear-gradient(135deg, #1a1a2e, #16213e, #0f3460));
    border-bottom: 1px solid var(--pp-nav-border, transparent);
    height: 3.5rem;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

/* ── Brand (logo + name) ───────────────────────────────────────────── */

.brand-link[b-nyst95f4cy] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
    margin-right: 0.5rem;
    letter-spacing: -0.01em;
}

.brand-link:hover[b-nyst95f4cy] { text-decoration: none; color: #fff; }

.brand-link .bi[b-nyst95f4cy] {
    font-size: 1.1rem;
    color: #ff6b6b;
}

/* ── Desktop nav links ──────────────────────────────────────────────── */

.nav-links[b-nyst95f4cy] {
    display: flex;
    align-items: stretch;
    height: 100%;
    flex: 1;
}

.top-row[b-nyst95f4cy]  .nav-links a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.85rem;
    height: 100%;
    white-space: nowrap;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.15s ease;
}

.top-row[b-nyst95f4cy]  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

.top-row[b-nyst95f4cy]  .nav-links a.active {
    font-weight: 700;
    color: #fff;
    box-shadow: inset 0 -3px 0 #ff6b6b;
    background: rgba(255, 255, 255, 0.05);
}

.nav-admin[b-nyst95f4cy] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.85rem;
    height: 100%;
    white-space: nowrap;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.15s ease;
}

.nav-admin:hover[b-nyst95f4cy] { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }

.nav-admin.active[b-nyst95f4cy] {
    font-weight: 700;
    color: #fff;
    box-shadow: inset 0 -3px 0 #ff6b6b;
    background: rgba(255, 255, 255, 0.05);
}

/* Desktop nav-group / dropdown styles live in Components/NavGroup.razor.css
 * (scoped to that component). Only rules targeting elements directly in
 * TopNav's template remain below. */

.nav-group-backdrop[b-nyst95f4cy] {
    position: fixed;
    inset: 0;
    z-index: 180;
    background: transparent;
}

.mobile-section-label[b-nyst95f4cy] {
    padding: 0.7rem 1.35rem 0.3rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.mobile-pro[b-nyst95f4cy] {
    margin-left: auto;
    padding: 1px 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffc233, #ff9a33);
    color: #1a1a2e;
    flex-shrink: 0;
}

/* ── Right-side nav controls ────────────────────────────────────────── */

.nav-end[b-nyst95f4cy] {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 0.15rem;
    margin-left: auto;
}

.desktop-nav-right[b-nyst95f4cy] {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.top-row[b-nyst95f4cy]  .desktop-nav-right a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.75rem;
    height: 100%;
    white-space: nowrap;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.15s ease;
    position: relative;
}

.top-row[b-nyst95f4cy]  .desktop-nav-right a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

.top-row[b-nyst95f4cy]  .desktop-nav-right a.active {
    font-weight: 700;
    color: #fff;
    box-shadow: inset 0 -3px 0 #ff6b6b;
    background: rgba(255, 255, 255, 0.05);
}

/* ── Theme toggle ───────────────────────────────────────────────────── */

.theme-toggle[b-nyst95f4cy] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1;
    transition: all 0.15s ease;
}

.theme-toggle:hover[b-nyst95f4cy] { color: #ffc233; background: rgba(255, 255, 255, 0.08); }

/* ── Sign-in link (shown when signed out) ───────────────────────────── */

.signin-link[b-nyst95f4cy] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.15s ease, border-color 0.15s ease;
    align-self: center;
    white-space: nowrap;
}

.signin-link:hover[b-nyst95f4cy] {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

.signin-link .bi[b-nyst95f4cy] { color: #ff6b6b; font-size: 1rem; }

/* ── Invite / notification badge ────────────────────────────────────── */

.invite-badge[b-nyst95f4cy] {
    position: absolute;
    top: 6px;
    right: 2px;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.5);
}

/* ── Hamburger button (mobile only) ─────────────────────────────────── */

.hamburger[b-nyst95f4cy] {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 2.2rem;
    height: 2.2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 8px;
    gap: 5px;
    transition: background 0.15s;
    flex-shrink: 0;
}

.hamburger:hover[b-nyst95f4cy] { background: rgba(255, 255, 255, 0.1); }

.hamburger span[b-nyst95f4cy] {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1)[b-nyst95f4cy] {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2)[b-nyst95f4cy] {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3)[b-nyst95f4cy] {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile slide-down menu ─────────────────────────────────────────── */

.mobile-menu[b-nyst95f4cy] {
    display: none;
    position: fixed;
    top: 3.5rem;
    left: 0;
    right: 0;
    z-index: 199;
    background: var(--pp-nav-bg-solid, #1a1a2e);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.18s ease;
    padding: 0.4rem 0 0.6rem;
}

.mobile-menu.open[b-nyst95f4cy] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu[b-nyst95f4cy]  a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.35rem;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.13s ease;
    position: relative;
}

.mobile-menu[b-nyst95f4cy]  a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.mobile-menu[b-nyst95f4cy]  a.active {
    font-weight: 700;
    color: #fff;
}

.mobile-menu[b-nyst95f4cy]  a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #e63946, #ff6b6b);
    border-radius: 0 3px 3px 0;
}

.mobile-menu[b-nyst95f4cy]  a .bi {
    width: 1.3rem;
    text-align: center;
    font-size: 1.05rem;
    opacity: 0.7;
    flex-shrink: 0;
}

.mobile-menu[b-nyst95f4cy]  a.active .bi {
    opacity: 1;
}

.mobile-divider[b-nyst95f4cy] {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0.3rem 1.35rem;
}

/* Mobile accordion styles live in Components/MobileNavGroup.razor.css (scoped
 * to that component). Keeping only the parts that style elements authored
 * directly in TopNav's template below. */

.mobile-badge[b-nyst95f4cy] {
    margin-left: auto;
    min-width: 1.3rem;
    height: 1.3rem;
    padding: 0 0.3rem;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.4);
}


/* ── Backdrop (dims content when mobile menu is open) ───────────────── */

.menu-backdrop[b-nyst95f4cy] {
    display: none;
    position: fixed;
    top: 3.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 198;
    background: rgba(0, 0, 0, 0.4);
    animation: backdropIn-b-nyst95f4cy 0.18s ease forwards;
}

@keyframes backdropIn-b-nyst95f4cy {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Responsive breakpoints ─────────────────────────────────────────── */

@media (max-width: 640.98px) {
    .hamburger[b-nyst95f4cy]    { display: flex; }
    .mobile-menu[b-nyst95f4cy]  { display: block; }
    .menu-backdrop[b-nyst95f4cy] { display: block; }
    .nav-links[b-nyst95f4cy]    { display: none; }
    .desktop-nav-right[b-nyst95f4cy] { display: none; }

    .top-row[b-nyst95f4cy] {
        padding-left: 1rem !important;
        padding-right: 0.75rem !important;
    }
}

@media (min-width: 641px) {
    .hamburger[b-nyst95f4cy]    { display: none !important; }
    .mobile-menu[b-nyst95f4cy]  { display: none !important; }
    .menu-backdrop[b-nyst95f4cy] { display: none !important; }

    .top-row[b-nyst95f4cy] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/MobileNavGroup.razor.rz.scp.css */
.mobile-group-header[b-ir9nr2cqfs] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.35rem;
    font-size: 0.97rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.13s ease;
}

.mobile-group-header:hover[b-ir9nr2cqfs] {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-group-header > .bi:first-child[b-ir9nr2cqfs] {
    width: 1.3rem;
    text-align: center;
    font-size: 1.05rem;
    opacity: 0.85;
    flex-shrink: 0;
}

.mobile-group-chev[b-ir9nr2cqfs] {
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.mobile-group.open .mobile-group-chev[b-ir9nr2cqfs] {
    transform: rotate(180deg);
}

.mobile-group-items[b-ir9nr2cqfs] {
    display: none;
    padding-bottom: 0.3rem;
    background: rgba(0, 0, 0, 0.15);
}

.mobile-group.open .mobile-group-items[b-ir9nr2cqfs] {
    display: block;
}

.mobile-group + .mobile-group[b-ir9nr2cqfs] {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Children are authored in the parent component (MainLayout), so their
 * anchor/badge elements carry the parent's scope attribute — use ::deep. */
.mobile-group-items[b-ir9nr2cqfs]  a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.35rem;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.13s ease;
    position: relative;
}

.mobile-group-items[b-ir9nr2cqfs]  a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.mobile-group-items[b-ir9nr2cqfs]  a.active {
    font-weight: 700;
    color: #fff;
}

.mobile-group-items[b-ir9nr2cqfs]  a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #e63946, #ff6b6b);
    border-radius: 0 3px 3px 0;
}

.mobile-group-items[b-ir9nr2cqfs]  a .bi {
    width: 1.3rem;
    text-align: center;
    font-size: 1.05rem;
    opacity: 0.7;
    flex-shrink: 0;
}

.mobile-group-items[b-ir9nr2cqfs]  a.active .bi {
    opacity: 1;
}

.mobile-group-items[b-ir9nr2cqfs]  .mobile-pro {
    margin-left: auto;
    padding: 1px 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffc233, #ff9a33);
    color: #1a1a2e;
    flex-shrink: 0;
}

.mobile-group-items[b-ir9nr2cqfs]  .mobile-beta {
    margin-left: auto;
    padding: 1px 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4ecd, #7b6cff 60%, #4ecdff);
    color: #fff;
    flex-shrink: 0;
}

.mobile-group-items[b-ir9nr2cqfs]  .mobile-badge,
.mobile-badge[b-ir9nr2cqfs] {
    margin-left: auto;
    min-width: 1.3rem;
    height: 1.3rem;
    padding: 0 0.3rem;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.4);
}
/* /Components/NavGroup.razor.rz.scp.css */
.nav-group[b-7cjebqhv1i] {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.nav-group-toggle[b-7cjebqhv1i] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.85rem;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.15s ease;
    font-family: inherit;
}

.nav-group-toggle:hover[b-7cjebqhv1i],
.nav-group.open .nav-group-toggle[b-7cjebqhv1i] {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-chev[b-7cjebqhv1i] {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.18s ease;
}

.nav-group.open .nav-chev[b-7cjebqhv1i] {
    transform: rotate(180deg);
}

.nav-group-right .nav-dropdown[b-7cjebqhv1i] {
    left: auto;
    right: 0;
}

.nav-dropdown[b-7cjebqhv1i] {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 14rem;
    background: var(--pp-nav-bg-solid, #1a1a2e);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    padding: 0.35rem 0;
    display: none;
    z-index: 210;
}

.nav-group.open .nav-dropdown[b-7cjebqhv1i] {
    display: block;
}

/* Hover-open on mouse devices. Click still works for touch + keyboard. */
@media (hover: hover) {
    .nav-group:hover .nav-dropdown[b-7cjebqhv1i] {
        display: block;
    }
    .nav-group:hover .nav-group-toggle[b-7cjebqhv1i] {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    .nav-group:hover .nav-chev[b-7cjebqhv1i] {
        transform: rotate(180deg);
    }
}

/* After clicking a dropdown link, suppress hover-open until the mouse leaves
 * the group. Otherwise the menu stays visible because :hover is still true. */
.nav-group.nav-hover-suppressed .nav-dropdown[b-7cjebqhv1i] {
    display: none !important;
}

/* NavLinks/anchors inside the dropdown are ChildContent authored by the parent
 * component, so they carry the parent's scope attribute — use ::deep to reach. */
.nav-dropdown[b-7cjebqhv1i]  a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.13s ease, color 0.13s ease;
}

.nav-dropdown[b-7cjebqhv1i]  a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.nav-dropdown[b-7cjebqhv1i]  a.active {
    color: #fff;
    background: rgba(230, 57, 70, 0.18);
}

.nav-dropdown[b-7cjebqhv1i]  a .bi {
    width: 1.05rem;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.85;
}

.nav-dropdown[b-7cjebqhv1i]  .nav-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.3rem 0.75rem;
}

.nav-dropdown[b-7cjebqhv1i]  .nav-pro {
    margin-left: auto;
    padding: 1px 6px;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffc233, #ff9a33);
    color: #1a1a2e;
}

.nav-dropdown[b-7cjebqhv1i]  .nav-beta {
    margin-left: auto;
    padding: 1px 6px;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4ecd, #7b6cff 60%, #4ecdff);
    color: #fff;
}

.nav-dropdown[b-7cjebqhv1i]  .nav-inline-badge {
    margin-left: auto;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Badge rendered directly by NavGroup.razor (not child content). */
.nav-inline-badge[b-7cjebqhv1i] {
    margin-left: auto;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* /Components/Pages/ComparePage.razor.rz.scp.css */
.compare-header[b-ocelgg4ada] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0 1.25rem;
}

.compare-header h2[b-ocelgg4ada] {
    margin: 0 0 0.1rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.compare-avatar[b-ocelgg4ada] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #e63946;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.2);
}

.compare-subtitle[b-ocelgg4ada] {
    font-size: 0.85rem;
    color: var(--pp-text-dim, #666);
    font-weight: 600;
}

.profile-link[b-ocelgg4ada] {
    margin-left: auto;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, #3d7be6, #58b4ff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.12s ease;
    white-space: nowrap;
}
.profile-link:hover[b-ocelgg4ada] {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(61, 123, 230, 0.35);
    color: #fff;
}

/* Tabs */
.compare-tabs[b-ocelgg4ada] {
    display: flex;
    gap: 0.5rem;
    padding: 0 0 1rem;
    flex-wrap: wrap;
}

.tab[b-ocelgg4ada] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--pp-border, #d4d4d4);
    border-radius: 10px;
    background: var(--pp-surface, #fff);
    color: var(--pp-text, #333);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}
.tab:hover[b-ocelgg4ada] {
    background: var(--pp-surface-hover, #eee);
    transform: translateY(-1px);
}
.tab.active[b-ocelgg4ada] {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    border-color: #e63946;
    color: white;
    box-shadow: 0 2px 12px rgba(230, 57, 70, 0.3);
}
.tab i[b-ocelgg4ada] { font-size: 1rem; }
.tab-count[b-ocelgg4ada] {
    background: rgba(0,0,0,0.15);
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 0.75rem;
}
.tab.active .tab-count[b-ocelgg4ada] {
    background: rgba(255,255,255,0.25);
}

/* Card grid */
.compare-grid[b-ocelgg4ada] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.compare-card[b-ocelgg4ada] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem;
    background: var(--pp-surface, #fff);
    border: 2px solid var(--pp-border, #d4d4d4);
    border-radius: 10px;
    text-decoration: none;
    color: var(--pp-text, #333);
    transition: all 0.12s ease;
}
.compare-card:hover[b-ocelgg4ada] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--pp-text, #333);
}

.compare-card.tier-0[b-ocelgg4ada] { border-left: 4px solid #999; }
.compare-card.tier-1[b-ocelgg4ada] { border-left: 4px solid #58b4ff; }
.compare-card.tier-2[b-ocelgg4ada] { border-left: 4px solid #3d7be6; }
.compare-card.tier-3[b-ocelgg4ada] { border-left: 4px solid #c06dff; }
.compare-card.tier-4[b-ocelgg4ada] { border-left: 4px solid #ffc233; }

.compare-card.high-value[b-ocelgg4ada] {
    border-color: #ffc233;
    box-shadow: 0 0 12px rgba(255, 194, 51, 0.3);
}

.compare-card img[b-ocelgg4ada] {
    width: 60px;
    border-radius: 4px;
    flex-shrink: 0;
}
.compare-card img.silhouette[b-ocelgg4ada] {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(0.4);
    opacity: 0.5;
}

.no-image-thumb[b-ocelgg4ada] {
    width: 60px;
    height: 84px;
    background: var(--pp-surface-2, #eee);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--pp-text-muted, #999);
    flex-shrink: 0;
}

.compare-info[b-ocelgg4ada] {
    min-width: 0;
}

.compare-name[b-ocelgg4ada] {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: capitalize;
}

.compare-card-name[b-ocelgg4ada] {
    font-size: 0.8rem;
    color: var(--pp-text-muted, #777);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-set[b-ocelgg4ada] {
    font-size: 0.75rem;
    color: var(--pp-text-dim, #999);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-price[b-ocelgg4ada] {
    font-weight: 800;
    font-size: 0.8rem;
    color: #2ecc71;
    margin-top: 2px;
}

.compare-spare[b-ocelgg4ada] {
    font-weight: 800;
    font-size: 0.8rem;
    color: #e63946;
    margin-top: 2px;
}

/* Trade section */
.trade-section[b-ocelgg4ada] {
    padding: 0.5rem 0;
}

.trade-heading[b-ocelgg4ada] {
    font-size: 1rem;
    font-weight: 800;
    margin: 1.5rem 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.trade-heading:first-child[b-ocelgg4ada] {
    margin-top: 0.5rem;
}

.trade-empty[b-ocelgg4ada] {
    text-align: center;
    padding: 2rem;
    color: var(--pp-text-muted, #777);
}
.trade-empty a[b-ocelgg4ada] {
    color: #3d7be6;
    font-weight: 600;
}

/* Gen filter chips */
.chip.gen-chip[b-ocelgg4ada] { border-left: 4px solid #58b4ff; }

@media (max-width: 600px) {
    .compare-header[b-ocelgg4ada] {
        flex-wrap: wrap;
    }
    .profile-link[b-ocelgg4ada] {
        margin-left: 0;
    }
    .compare-tabs[b-ocelgg4ada] {
        flex-direction: column;
    }
    .tab[b-ocelgg4ada] {
        justify-content: center;
    }
    .compare-grid[b-ocelgg4ada] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/DailyChallengePage.razor.rz.scp.css */
.daily-challenge-page[b-yft2ph4g26] {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.daily-hero[b-yft2ph4g26] {
    text-align: center;
}

.daily-hero h1[b-yft2ph4g26] {
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
    color: var(--pp-text);
}

.daily-subtitle[b-yft2ph4g26] {
    color: var(--pp-text-muted);
    font-size: 0.88rem;
    margin: 0;
}

.daily-today[b-yft2ph4g26] {
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.daily-pokemon-card[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.daily-sprite[b-yft2ph4g26] {
    width: 96px;
    height: 96px;
    image-rendering: pixelated;
}

.daily-pokemon-info[b-yft2ph4g26] {
    display: flex;
    flex-direction: column;
}

.daily-pokemon-number[b-yft2ph4g26] {
    font-size: 0.8rem;
    color: var(--pp-text-muted);
    font-weight: 600;
}

.daily-pokemon-name[b-yft2ph4g26] {
    font-size: 1.5rem;
    margin: 0;
    text-transform: capitalize;
    color: var(--pp-text);
}

.daily-date[b-yft2ph4g26] {
    font-size: 0.82rem;
    color: var(--pp-text-subtle);
}

.daily-action[b-yft2ph4g26] {
    width: 100%;
    text-align: center;
}

.btn-daily-checkin[b-yft2ph4g26] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--pp-accent, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-daily-checkin:hover:not(:disabled)[b-yft2ph4g26] {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.btn-daily-checkin:disabled[b-yft2ph4g26] {
    opacity: 0.6;
    cursor: not-allowed;
}

.daily-checked-in[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #22c55e;
    font-size: 1.1rem;
    font-weight: 600;
}

.daily-checked-in i[b-yft2ph4g26] {
    font-size: 1.3rem;
}

.daily-no-card[b-yft2ph4g26] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--pp-text-muted);
    font-size: 0.9rem;
}

.daily-no-card i[b-yft2ph4g26] {
    font-size: 1.3rem;
    color: var(--pp-text-dim);
}

.daily-find-card[b-yft2ph4g26] {
    color: var(--pp-accent, #7c3aed);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.daily-find-card:hover[b-yft2ph4g26] {
    text-decoration: underline;
}

.daily-stats-row[b-yft2ph4g26] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.daily-stat[b-yft2ph4g26] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    flex: 1;
    min-width: 0;
}

.daily-stat-value[b-yft2ph4g26] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pp-text);
    line-height: 1;
}

.daily-stat-label[b-yft2ph4g26] {
    font-size: 0.75rem;
    color: var(--pp-text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
    text-align: center;
}

.daily-rule-note[b-yft2ph4g26] {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.7rem 0.9rem;
    border: 1px dashed var(--pp-border-3, #e0e0e0);
    border-radius: 10px;
    background: var(--pp-surface-soft, rgba(124, 58, 237, 0.04));
    color: var(--pp-text-muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.daily-rule-note i[b-yft2ph4g26] {
    color: var(--pp-accent, #7c3aed);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.daily-calendar-section[b-yft2ph4g26] {
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 14px;
    padding: 1.25rem;
}

.daily-calendar-header[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.daily-calendar-header h3[b-yft2ph4g26] {
    margin: 0;
    font-size: 1rem;
    color: var(--pp-text);
}

.daily-cal-nav[b-yft2ph4g26] {
    background: none;
    border: none;
    color: var(--pp-text);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: background 0.15s;
}

.daily-cal-nav:hover:not(:disabled)[b-yft2ph4g26] {
    background: var(--pp-border-3, #e0e0e0);
}

.daily-cal-nav:disabled[b-yft2ph4g26] {
    opacity: 0.3;
    cursor: not-allowed;
}

.daily-calendar-grid[b-yft2ph4g26] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.daily-cal-day-header[b-yft2ph4g26] {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pp-text-muted);
    padding: 0.25rem 0;
    text-transform: uppercase;
}

.daily-cal-cell[b-yft2ph4g26] {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    font-size: 0.82rem;
    color: var(--pp-text);
    transition: background 0.15s;
}

.daily-cal-cell.empty[b-yft2ph4g26] {
    background: transparent;
}

.daily-cal-cell.future[b-yft2ph4g26] {
    opacity: 0.3;
}

.daily-cal-cell.pre-launch[b-yft2ph4g26] {
    opacity: 0.15;
    color: var(--pp-text-muted);
}

.daily-cal-cell.today[b-yft2ph4g26] {
    border: 2px solid var(--pp-accent, #7c3aed);
    font-weight: 700;
}

.daily-cal-cell.checked-in[b-yft2ph4g26] {
    background: rgba(34, 197, 94, 0.15);
}

.daily-cal-cell.checked-in .daily-cal-day[b-yft2ph4g26] {
    color: #22c55e;
    font-weight: 700;
}

.daily-cal-check[b-yft2ph4g26] {
    font-size: 0.55rem;
    color: #22c55e;
    position: absolute;
    bottom: 2px;
}

.daily-upcoming-section[b-yft2ph4g26] {
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 14px;
    padding: 1.25rem;
}

.daily-upcoming-header[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.daily-upcoming-header h3[b-yft2ph4g26] {
    margin: 0;
    font-size: 1rem;
    color: var(--pp-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.daily-upcoming-upsell[b-yft2ph4g26] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--pp-accent, #7c3aed);
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--pp-accent, #7c3aed);
    border-radius: 6px;
    font-weight: 600;
}

.daily-upcoming-upsell:hover[b-yft2ph4g26] {
    background: var(--pp-accent, #7c3aed);
    color: #fff;
}

.daily-upcoming-list[b-yft2ph4g26] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.daily-upcoming-item[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    background: var(--pp-surface, transparent);
    border: 1px solid var(--pp-border, transparent);
    text-decoration: none;
    color: var(--pp-text);
    transition: background 0.15s, border-color 0.15s;
}

.daily-upcoming-item:hover[b-yft2ph4g26] {
    background: var(--pp-surface-hover, rgba(0, 0, 0, 0.04));
    text-decoration: none;
}

.daily-upcoming-item.owned[b-yft2ph4g26] {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.25);
}

.daily-upcoming-sprite[b-yft2ph4g26] {
    width: 40px;
    height: 40px;
    image-rendering: pixelated;
    flex-shrink: 0;
}

.daily-upcoming-info[b-yft2ph4g26] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.daily-upcoming-date[b-yft2ph4g26] {
    font-size: 0.72rem;
    color: var(--pp-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.daily-upcoming-name[b-yft2ph4g26] {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: capitalize;
    color: var(--pp-text);
}

.daily-upcoming-meta[b-yft2ph4g26] {
    font-size: 0.72rem;
    color: var(--pp-text-muted);
}

.daily-upcoming-status[b-yft2ph4g26] {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--pp-text-dim, #ccc);
}

.daily-upcoming-item.owned .daily-upcoming-status[b-yft2ph4g26] {
    color: #22c55e;
}

.daily-upcoming-status-group[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.daily-upcoming-pro-pill[b-yft2ph4g26] {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--pp-gold, #ffc233);
    background: rgba(255, 194, 51, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

.daily-upcoming-locked[b-yft2ph4g26] {
    text-decoration: none;
    color: var(--pp-text-muted);
    opacity: 0.85;
    transition: opacity 0.15s, background 0.15s;
}

.daily-upcoming-locked:hover[b-yft2ph4g26] {
    opacity: 1;
    background: rgba(255, 194, 51, 0.06);
}

.daily-upcoming-sprite-locked[b-yft2ph4g26] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pp-surface-2, rgba(0,0,0,0.04));
    border: 1px dashed var(--pp-border-3, #e0e0e0);
    border-radius: 8px;
    color: var(--pp-text-dim, #999);
    font-size: 1.1rem;
}

.daily-upcoming-locked .daily-upcoming-name[b-yft2ph4g26] {
    font-style: italic;
    color: var(--pp-text-muted);
}

.daily-checkin-overlay[b-yft2ph4g26] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 1rem;
    animation: daily-checkin-fade-b-yft2ph4g26 0.2s ease-out;
}

@keyframes daily-checkin-fade-b-yft2ph4g26 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.daily-checkin-burst[b-yft2ph4g26] {
    position: relative;
    max-width: 360px;
    width: 100%;
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-accent, #7c3aed);
    border-radius: 18px;
    padding: 1.75rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    animation: daily-checkin-pop-b-yft2ph4g26 0.4s cubic-bezier(0.18, 1.2, 0.4, 1);
}

@keyframes daily-checkin-pop-b-yft2ph4g26 {
    0% { transform: scale(0.6); opacity: 0; }
    60% { transform: scale(1.04); opacity: 1; }
    100% { transform: scale(1); }
}

.daily-checkin-confetti[b-yft2ph4g26] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: 18px;
}

.daily-checkin-dot[b-yft2ph4g26] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 12px;
    background: var(--pp-accent, #7c3aed);
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: daily-checkin-confetti-b-yft2ph4g26 1.1s cubic-bezier(0.2, 0.8, 0.35, 1) forwards;
    animation-delay: var(--dly, 0ms);
    opacity: 0;
}

.daily-checkin-dot:nth-child(3n)[b-yft2ph4g26] { background: #22c55e; }
.daily-checkin-dot:nth-child(3n+1)[b-yft2ph4g26] { background: #ffc233; }
.daily-checkin-dot:nth-child(3n+2)[b-yft2ph4g26] { background: #e63946; }

@keyframes daily-checkin-confetti-b-yft2ph4g26 {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scale(0.4);
    }
    15% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--dx, 0)), calc(-50% + 180px)) rotate(var(--rot, 0deg)) scale(1);
    }
}

.daily-checkin-title[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #22c55e;
    z-index: 1;
}

.daily-checkin-title i[b-yft2ph4g26] {
    font-size: 1.3rem;
}

.daily-checkin-card-wrap[b-yft2ph4g26] {
    position: relative;
    z-index: 1;
    animation: daily-checkin-card-in-b-yft2ph4g26 0.5s 0.1s ease-out both;
}

@keyframes daily-checkin-card-in-b-yft2ph4g26 {
    from { transform: translateY(18px) rotate(-4deg); opacity: 0; }
    to { transform: translateY(0) rotate(0); opacity: 1; }
}

.daily-checkin-card[b-yft2ph4g26] {
    max-width: 220px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.daily-checkin-sprite-fallback[b-yft2ph4g26] {
    width: 120px;
    height: 120px;
    image-rendering: pixelated;
    z-index: 1;
}

.daily-checkin-caption[b-yft2ph4g26] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    z-index: 1;
    text-align: center;
}

.daily-checkin-name[b-yft2ph4g26] {
    font-weight: 700;
    font-size: 1rem;
    color: var(--pp-text);
    text-transform: capitalize;
}

.daily-checkin-set[b-yft2ph4g26] {
    font-size: 0.78rem;
    color: var(--pp-text-muted);
}

.daily-checkin-close[b-yft2ph4g26] {
    margin-top: 0.35rem;
    padding: 0.55rem 1.5rem;
    background: var(--pp-accent, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 1;
    transition: filter 0.15s;
}

.daily-checkin-close:hover[b-yft2ph4g26] {
    filter: brightness(1.1);
}

.daily-history-section[b-yft2ph4g26] {
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 14px;
    padding: 1.25rem;
}

.daily-history-section h3[b-yft2ph4g26] {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--pp-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.daily-history-list[b-yft2ph4g26] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.daily-history-item[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--pp-text);
    transition: background 0.15s;
}

.daily-history-item:hover[b-yft2ph4g26] {
    background: var(--pp-surface-hover, rgba(0, 0, 0, 0.04));
}

.daily-history-item.today[b-yft2ph4g26] {
    border: 2px solid var(--pp-accent, #7c3aed);
}

.daily-history-item.checked-in[b-yft2ph4g26] {
    background: rgba(34, 197, 94, 0.06);
}

.daily-history-sprite[b-yft2ph4g26] {
    width: 40px;
    height: 40px;
    image-rendering: pixelated;
    flex-shrink: 0;
}

.daily-history-info[b-yft2ph4g26] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.daily-history-name[b-yft2ph4g26] {
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: capitalize;
}

.daily-history-meta[b-yft2ph4g26] {
    font-size: 0.75rem;
    color: var(--pp-text-muted);
}

.daily-history-status[b-yft2ph4g26] {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.daily-history-check[b-yft2ph4g26] {
    color: #22c55e;
    font-size: 1.1rem;
}

.daily-history-miss[b-yft2ph4g26] {
    color: var(--pp-text-dim, #ccc);
    font-size: 1rem;
}

.daily-history-more[b-yft2ph4g26] {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: none;
    border: 1px solid var(--pp-border-3, #e0e0e0);
    border-radius: 8px;
    color: var(--pp-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.daily-history-more:hover[b-yft2ph4g26] {
    background: var(--pp-surface-hover, rgba(0, 0, 0, 0.04));
    color: var(--pp-text);
}

@media (max-width: 500px) {
    .daily-stats-row[b-yft2ph4g26] {
        gap: 0.5rem;
    }

    .daily-stat[b-yft2ph4g26] {
        padding: 0.75rem 0.5rem;
    }

    .daily-stat-value[b-yft2ph4g26] {
        font-size: 1.4rem;
    }

    .daily-pokemon-card[b-yft2ph4g26] {
        flex-direction: column;
        text-align: center;
    }

    .daily-pokemon-info[b-yft2ph4g26] {
        align-items: center;
    }

    .daily-cal-cell[b-yft2ph4g26] {
        font-size: 0.72rem;
    }

    .daily-cal-check[b-yft2ph4g26] {
        font-size: 0.45rem;
    }

    .daily-history-sprite[b-yft2ph4g26] {
        width: 32px;
        height: 32px;
    }
}

/* ─── Hard Mode ─────────────────────────────────────────────────────────── */

.daily-today-hard[b-yft2ph4g26] {
    border-color: #d62828;
    box-shadow: 0 0 0 1px rgba(214, 40, 40, 0.25), 0 6px 22px rgba(214, 40, 40, 0.18);
    background: linear-gradient(180deg, rgba(214, 40, 40, 0.07), transparent 60%), var(--pp-card-bg, #fff);
}

.daily-hard-tag[b-yft2ph4g26] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: #d62828;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    text-transform: uppercase;
    vertical-align: middle;
}

.daily-required-card[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--pp-surface-2, #f5f5f5);
    border: 1px solid var(--pp-border, #ddd);
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    text-decoration: none;
    color: var(--pp-text);
    width: 100%;
    max-width: 420px;
    transition: transform 0.15s, border-color 0.15s;
}

.daily-required-card:hover[b-yft2ph4g26] {
    transform: translateY(-1px);
    border-color: #d62828;
}

.daily-required-card img[b-yft2ph4g26] {
    width: 56px;
    height: 78px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.daily-required-meta[b-yft2ph4g26] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.daily-required-label[b-yft2ph4g26] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #d62828;
}

.daily-required-name[b-yft2ph4g26] {
    font-weight: 600;
    color: var(--pp-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.daily-required-set[b-yft2ph4g26] {
    font-size: 0.78rem;
    color: var(--pp-text-muted);
}

.daily-checked-skull[b-yft2ph4g26] {
    color: #d62828;
    margin-left: 0.25rem;
    vertical-align: middle;
}

.daily-stat-skull[b-yft2ph4g26] {
    color: #d62828;
    margin-left: 0.2rem;
    font-size: 0.85em;
    vertical-align: middle;
}

.daily-stat-hard .daily-stat-value[b-yft2ph4g26] {
    color: #d62828;
}

.daily-hardmode-panel[b-yft2ph4g26] {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

.daily-hardmode-on[b-yft2ph4g26],
.daily-hardmode-off[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--pp-border, #ddd);
    background: var(--pp-surface, #fff);
}

.daily-hardmode-on[b-yft2ph4g26] {
    border-color: #d62828;
    background: linear-gradient(90deg, rgba(214, 40, 40, 0.08), var(--pp-surface, #fff));
}

.daily-hardmode-on strong i[b-yft2ph4g26],
.daily-hardmode-off strong i[b-yft2ph4g26] {
    margin-right: 0.25rem;
    color: #d62828;
}

.daily-hardmode-hint[b-yft2ph4g26] {
    display: block;
    font-size: 0.82rem;
    color: var(--pp-text-muted);
    margin-top: 0.15rem;
}

.daily-hardmode-toggle[b-yft2ph4g26] {
    background: var(--pp-surface-2, #f0f0f0);
    color: var(--pp-text);
    border: 1px solid var(--pp-border, #ccc);
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.daily-hardmode-toggle-enable[b-yft2ph4g26] {
    background: #d62828;
    color: #fff;
    border-color: #d62828;
}

.daily-hardmode-toggle-enable:hover[b-yft2ph4g26] {
    filter: brightness(1.1);
}

.daily-hardmode-upsell[b-yft2ph4g26] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px dashed var(--pp-border, #ccc);
    background: var(--pp-surface, #fff);
    text-decoration: none;
    color: var(--pp-text);
}

.daily-hardmode-upsell:hover[b-yft2ph4g26] {
    border-color: var(--pp-accent, #7c3aed);
}

.daily-hardmode-upsell-cta[b-yft2ph4g26] {
    background: var(--pp-accent, #7c3aed);
    color: #fff;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.pro-pill-inline[b-yft2ph4g26] {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: rgba(255, 194, 51, 0.18);
    color: var(--pp-gold, #ffc233);
    padding: 0.1rem 0.35rem;
    border-radius: 5px;
    margin-left: 0.25rem;
    vertical-align: middle;
}

.daily-upcoming-card-thumb[b-yft2ph4g26] {
    width: 40px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.daily-upcoming-skull[b-yft2ph4g26] {
    color: #d62828;
    font-size: 0.9rem;
}

.daily-cal-skull[b-yft2ph4g26] {
    color: #d62828 !important;
}

.daily-cal-cell.hard-checked[b-yft2ph4g26] {
    background: rgba(214, 40, 40, 0.14);
    border: 1px solid rgba(214, 40, 40, 0.35);
}

.daily-history-skull[b-yft2ph4g26] {
    color: #d62828 !important;
}

/* Confirmation dialog */
.daily-hard-confirm-overlay[b-yft2ph4g26] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 1rem;
}

.daily-hard-confirm[b-yft2ph4g26] {
    background: var(--pp-card-bg, #fff);
    color: var(--pp-text);
    border-radius: 14px;
    padding: 1.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.daily-hard-confirm h3[b-yft2ph4g26] {
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pp-text);
}

.daily-hard-confirm h3 i[b-yft2ph4g26] {
    color: #d62828;
}

.daily-hard-confirm p[b-yft2ph4g26] {
    margin: 0 0 0.75rem;
    color: var(--pp-text-muted);
    line-height: 1.5;
}

.daily-hard-confirm-warn[b-yft2ph4g26] {
    color: #d62828 !important;
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
}

.daily-hard-confirm-actions[b-yft2ph4g26] {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-top: 1rem;
}

.daily-hard-confirm-cancel[b-yft2ph4g26],
.daily-hard-confirm-go[b-yft2ph4g26] {
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    cursor: pointer;
}

.daily-hard-confirm-cancel[b-yft2ph4g26] {
    background: var(--pp-surface-2, #f0f0f0);
    color: var(--pp-text);
}

.daily-hard-confirm-go[b-yft2ph4g26] {
    background: #d62828;
    color: #fff;
}

.daily-hard-confirm-go:hover[b-yft2ph4g26] {
    filter: brightness(1.1);
}

@media (max-width: 600px) {
    .daily-hardmode-on[b-yft2ph4g26],
    .daily-hardmode-off[b-yft2ph4g26],
    .daily-hardmode-upsell[b-yft2ph4g26] {
        flex-direction: column;
        align-items: flex-start;
    }

    .daily-required-card img[b-yft2ph4g26] {
        width: 48px;
        height: 67px;
    }
}

/* /Components/Pages/ExportPage.razor.rz.scp.css */
.export-page[b-38sxlg1609] {
    max-width: 600px;
    margin: 0 auto;
}

.export-page h2[b-38sxlg1609] {
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.export-card[b-38sxlg1609] {
    background: var(--pp-surface, #f8f9fa);
    border: 2px solid var(--pp-border-3, #dee2e6);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
}

.export-hint[b-38sxlg1609] {
    color: var(--pp-text-subtle, #555);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.export-options[b-38sxlg1609] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.format-option[b-38sxlg1609] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: var(--pp-surface-2, #e9ecef);
    border-radius: 10px;
}

.format-info h3[b-38sxlg1609] {
    margin: 0 0 0.25rem;
    font-weight: 700;
    font-size: 1rem;
}

.format-info p[b-38sxlg1609] {
    margin: 0;
    font-size: 0.85rem;
    color: var(--pp-text-subtle, #555);
    font-weight: 500;
}

.btn-export[b-38sxlg1609] {
    padding: 0.55rem 1.2rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: white;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.12s ease;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-export:hover:not(:disabled)[b-38sxlg1609] {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}

.btn-export:disabled[b-38sxlg1609] {
    opacity: 0.45;
    cursor: not-allowed;
}

.export-fields[b-38sxlg1609] {
    background: var(--pp-surface, #f8f9fa);
    border: 2px solid var(--pp-border-3, #dee2e6);
    border-radius: 14px;
    padding: 1.5rem;
}

.export-fields h3[b-38sxlg1609] {
    margin: 0 0 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.export-fields ul[b-38sxlg1609] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.export-fields li[b-38sxlg1609] {
    padding: 0.3rem 0.7rem;
    background: var(--pp-surface-2, #e9ecef);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pp-text-subtle, #555);
}

@media (max-width: 480px) {
    .format-option[b-38sxlg1609] {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .btn-export[b-38sxlg1609] {
        justify-content: center;
    }
}
/* /Components/Pages/FriendPokedexPage.razor.rz.scp.css */
.friend-header[b-chzqlryw5e] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0 1.25rem;
}

.friend-header h2[b-chzqlryw5e] {
    margin: 0 0 0.1rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.friend-avatar[b-chzqlryw5e] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #e63946;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.2);
}

.owned-count[b-chzqlryw5e] { font-size: 0.85rem; color: var(--pp-text-dim, #666); font-weight: 600; }

.compare-link[b-chzqlryw5e] {
    margin-left: auto;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.12s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.compare-link:hover[b-chzqlryw5e] {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35);
    color: #fff;
}

.profile-link[b-chzqlryw5e] {
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, #3d7be6, #58b4ff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.12s ease;
}
.profile-link:hover[b-chzqlryw5e] {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(61, 123, 230, 0.35);
    color: #fff;
}

/* Reuse the same grid/chip/cell styles from the main app CSS */

/* Diff filter chips */
.chip.diff-chip.diff-they-have[b-chzqlryw5e] { border-left: 4px solid #2ecc71; }
.chip.diff-chip.diff-i-have[b-chzqlryw5e] { border-left: 4px solid #e63946; }

/* Mini badge showing your card in "I have, they don't" mode */
.my-card-badge[b-chzqlryw5e] {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 30px;
    height: 42px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
    pointer-events: none;
}
.my-card-badge img[b-chzqlryw5e] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* /Components/Pages/FriendSlotPage.razor.rz.scp.css */
.friend-slot-page[b-t386dh1c4o] {
    padding: 0.5rem 0 2rem;
}

.friend-slot-header[b-t386dh1c4o] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.back-link[b-t386dh1c4o] {
    color: var(--pp-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.back-link:hover[b-t386dh1c4o] { color: var(--pp-text); }

.slot-nav[b-t386dh1c4o] {
    display: flex;
    gap: 0.4rem;
}
.nav-btn[b-t386dh1c4o] {
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    background: var(--pp-surface-2);
    border: 1px solid var(--pp-border);
    text-decoration: none;
    color: var(--pp-text);
    font-size: 0.85rem;
    font-weight: 600;
}
.nav-btn:hover[b-t386dh1c4o] { background: var(--pp-surface-3); }
.nav-btn.disabled[b-t386dh1c4o] { opacity: 0.4; cursor: not-allowed; }

.friend-slot-title-row[b-t386dh1c4o] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.25rem 0 1rem;
}

.friend-slot-sprite[b-t386dh1c4o] {
    width: 72px;
    height: 72px;
    image-rendering: pixelated;
    flex-shrink: 0;
}

.slot-title[b-t386dh1c4o] {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
}

.friend-slot-subtitle[b-t386dh1c4o] {
    color: var(--pp-text-muted);
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.friend-slot-you-have[b-t386dh1c4o] { color: #2ecc71; font-weight: 600; }

.friend-slot-empty[b-t386dh1c4o] {
    padding: 2rem 1rem;
    text-align: center;
    background: var(--pp-surface-2);
    border: 1px dashed var(--pp-border);
    border-radius: 10px;
    color: var(--pp-text-muted);
}

.friend-slot-grid[b-t386dh1c4o] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    padding: 0.25rem 0;
}

.friend-slot-card[b-t386dh1c4o] {
    position: relative;
    background: var(--pp-surface);
    border: 2px solid var(--pp-border-2);
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.friend-slot-card:hover[b-t386dh1c4o] {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.friend-slot-card.tier-0[b-t386dh1c4o] { border-color: #999; }
.friend-slot-card.tier-1[b-t386dh1c4o] { border-color: #58b4ff; }
.friend-slot-card.tier-2[b-t386dh1c4o] { border-color: #3d7be6; }
.friend-slot-card.tier-3[b-t386dh1c4o] { border-color: #c06dff; box-shadow: 0 0 10px rgba(192, 109, 255, 0.25); }
.friend-slot-card.tier-4[b-t386dh1c4o] { border-color: #ffc233; box-shadow: 0 0 14px rgba(255, 194, 51, 0.35); }

.friend-slot-card.is-main[b-t386dh1c4o] {
    outline: 2px solid rgba(255, 194, 51, 0.35);
    outline-offset: 2px;
}

.friend-slot-main-badge[b-t386dh1c4o],
.friend-slot-owned-badge[b-t386dh1c4o] {
    position: absolute;
    top: 6px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #fff;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.friend-slot-main-badge[b-t386dh1c4o] {
    left: 6px;
    background: linear-gradient(135deg, #ffc233, #ff9f33);
}
.friend-slot-owned-badge[b-t386dh1c4o] {
    right: 6px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.friend-slot-card-image[b-t386dh1c4o] {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 5 / 7;
    background: var(--pp-surface-3);
    border-radius: 6px;
    overflow: hidden;
}
.friend-slot-card-image img[b-t386dh1c4o] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.friend-slot-no-image[b-t386dh1c4o] {
    color: var(--pp-text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

.friend-slot-card-meta[b-t386dh1c4o] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.82rem;
}
.friend-slot-card-name[b-t386dh1c4o] { font-weight: 700; font-size: 0.95rem; }
.friend-slot-card-set[b-t386dh1c4o] { color: var(--pp-text-muted); }
.friend-slot-card-rarity[b-t386dh1c4o] { color: var(--pp-text-muted); }
.friend-slot-card-price[b-t386dh1c4o] { color: #2ecc71; font-weight: 600; }

.friend-slot-card-actions[b-t386dh1c4o] {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 0.25rem;
}

.friend-slot-action-link[b-t386dh1c4o] {
    color: var(--pp-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 4px 10px;
    border: 1px solid var(--pp-border);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.friend-slot-action-link:hover[b-t386dh1c4o] {
    color: var(--pp-text);
    background: var(--pp-surface-2);
}
/* /Components/Pages/FriendsPage.razor.rz.scp.css */
.profile-layout[b-nvg3tsamez] {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card[b-nvg3tsamez] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}

.btn-share-profile[b-nvg3tsamez] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pp-surface-2, #f0f0f0);
    border: 2px solid var(--pp-border, #ddd);
    color: var(--pp-text-muted, #888);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.15s ease;
}

.btn-share-profile:hover[b-nvg3tsamez] {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    border-color: #e63946;
    color: #fff;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
    transform: translateY(-1px);
}

.avatar-wrap[b-nvg3tsamez] { flex-shrink: 0; }

.avatar[b-nvg3tsamez] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #e63946;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.25);
}

.avatar-letter[b-nvg3tsamez] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.3);
}

.profile-info[b-nvg3tsamez] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.profile-info h2[b-nvg3tsamez] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.profile-email[b-nvg3tsamez], .profile-since[b-nvg3tsamez] {
    font-size: 0.85rem;
    color: var(--pp-text-dim, #666);
    font-weight: 500;
}

.pro-badge[b-nvg3tsamez] {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #ffc233, #f39c12);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(255, 194, 51, 0.4);
    letter-spacing: 0.03em;
}

.section[b-nvg3tsamez] {
    padding: 1.5rem;
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.section h3[b-nvg3tsamez] {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge[b-nvg3tsamez] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.35rem;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.35);
}

.empty-hint[b-nvg3tsamez] { color: var(--pp-text-muted, #999); font-size: 0.9rem; margin: 0; font-weight: 500; }

.invite-list[b-nvg3tsamez], .friend-list[b-nvg3tsamez] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.invite-item[b-nvg3tsamez] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--pp-border-3, #f0f0f0);
}

.invite-item:last-child[b-nvg3tsamez] { border-bottom: none; }

.friend-item[b-nvg3tsamez] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.75rem;
    background: var(--pp-surface, #fafafa);
    border: 1px solid var(--pp-border-3, #ececec);
    border-radius: 10px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.friend-item:hover[b-nvg3tsamez] {
    border-color: var(--pp-border, #d8d8d8);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.friend-item-header[b-nvg3tsamez] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.invite-name[b-nvg3tsamez] {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
}

.friend-name[b-nvg3tsamez] {
    font-size: 0.95rem;
    font-weight: 600;
}

.invite-actions[b-nvg3tsamez], .friend-actions[b-nvg3tsamez] {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.friend-menu-wrap[b-nvg3tsamez] {
    position: relative;
    flex-shrink: 0;
}

.btn-menu-icon[b-nvg3tsamez] {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--pp-text-muted, #999);
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-menu-icon:hover[b-nvg3tsamez],
.btn-menu-icon[aria-expanded="true"][b-nvg3tsamez] {
    background: var(--pp-border-3, #ececec);
    color: var(--pp-text, #333);
    border-color: var(--pp-border, #d8d8d8);
}

.menu-backdrop[b-nvg3tsamez] {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: transparent;
}

.friend-menu[b-nvg3tsamez] {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 50;
    min-width: 180px;
    padding: 0.35rem;
    background: var(--pp-card-bg, #fff);
    border: 1px solid var(--pp-border, #d8d8d8);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.menu-item[b-nvg3tsamez] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: transparent;
    color: var(--pp-text, #333);
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease;
}

.menu-item:hover[b-nvg3tsamez] {
    background: var(--pp-border-3, #f0f0f0);
}

.menu-item-danger[b-nvg3tsamez] {
    color: #e63946;
}

.menu-item-danger:hover[b-nvg3tsamez] {
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

.btn-shared-locked[b-nvg3tsamez] {
    background: transparent;
    color: var(--pp-text-muted, #888);
    border: 2px solid var(--pp-border, #ccc);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-shared-locked:hover[b-nvg3tsamez] {
    border-color: #7c3aed;
    color: #7c3aed;
}

.friend-avatar[b-nvg3tsamez] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pp-border);
}

.friend-profile-link[b-nvg3tsamez] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
    min-width: 0;
    padding: 0.15rem 0.25rem;
    margin: -0.15rem -0.25rem;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
}

.friend-profile-link:hover[b-nvg3tsamez] {
    background: var(--pp-border-3, #f4f4f4);
    color: var(--pp-accent, #e63946);
}

.friend-profile-link .friend-name[b-nvg3tsamez] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar-letter-sm[b-nvg3tsamez] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    flex-shrink: 0;
}

.invite-form[b-nvg3tsamez] {
    display: flex;
    gap: 0.5rem;
}

.invite-input[b-nvg3tsamez] {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--pp-input-bg, #fff);
    color: var(--pp-text, #333);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.invite-input:focus[b-nvg3tsamez] {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    outline: none;
}

.invite-msg[b-nvg3tsamez] {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.invite-msg.ok[b-nvg3tsamez] { color: #2ecc71; }
.invite-msg.error[b-nvg3tsamez] { color: #e63946; }

.invite-hint[b-nvg3tsamez] {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: var(--pp-text-muted, #888);
}

.friend-controls[b-nvg3tsamez] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 0;
}

/* Buttons */
button[b-nvg3tsamez], a.btn-view[b-nvg3tsamez] {
    padding: 0.35rem 0.85rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.12s ease;
}

.btn-send[b-nvg3tsamez] { background: linear-gradient(135deg, #e63946, #ff6b6b); color: #fff; }
.btn-send:hover[b-nvg3tsamez] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35); }
.btn-send:disabled[b-nvg3tsamez] { opacity: 0.5; cursor: default; transform: none; box-shadow: none; }
.btn-accept[b-nvg3tsamez] { background: linear-gradient(135deg, #2ecc71, #27ae60); color: #fff; }
.btn-accept:hover[b-nvg3tsamez] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(46, 204, 113, 0.35); }
.btn-reject[b-nvg3tsamez] { background: #666; color: #fff; }
.btn-reject:hover[b-nvg3tsamez] { background: #555; }
.btn-cancel[b-nvg3tsamez] { background: var(--pp-surface-2, #ddd); color: var(--pp-text, #333); }
.btn-remove[b-nvg3tsamez] { background: transparent; color: #e63946; border: 2px solid #e63946; }
.btn-remove:hover[b-nvg3tsamez] { background: rgba(230, 57, 70, 0.08); }
.btn-view[b-nvg3tsamez] { background: linear-gradient(135deg, #3d7be6, #58b4ff); color: #fff; }
.btn-view:hover[b-nvg3tsamez] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(61, 123, 230, 0.35); }
.btn-compare[b-nvg3tsamez] { background: linear-gradient(135deg, #e63946, #ff6b6b); color: #fff; display: inline-flex; align-items: center; gap: 0.3rem; }
.btn-compare:hover[b-nvg3tsamez] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35); color: #fff; }
.btn-pending[b-nvg3tsamez] { background: var(--pp-surface-2, #ccc); color: var(--pp-text-muted, #666); cursor: default; }
.btn-shared[b-nvg3tsamez] { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; }
.btn-shared:hover[b-nvg3tsamez] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(124, 58, 237, 0.35); color: #fff; }
.btn-shared-start[b-nvg3tsamez] { background: transparent; color: #7c3aed; border: 2px solid #7c3aed; }
.btn-shared-start:hover[b-nvg3tsamez] { background: rgba(124, 58, 237, 0.08); }

.signout-section[b-nvg3tsamez] { border-top: 1px solid var(--pp-border, #e0e0e0); padding-top: 1.5rem; margin-top: 1rem; }

.btn-signout[b-nvg3tsamez] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #e63946;
    background: transparent;
    color: #e63946;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-signout:hover[b-nvg3tsamez] {
    background: rgba(230, 57, 70, 0.08);
}

/* About section */
.section-header[b-nvg3tsamez] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.section-header h3[b-nvg3tsamez] { margin: 0; }

.btn-edit[b-nvg3tsamez] {
    padding: 0.3rem 0.7rem;
    background: transparent;
    color: var(--pp-text, #333);
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}
.btn-edit:hover[b-nvg3tsamez] { border-color: #e63946; color: #e63946; }

.about-view[b-nvg3tsamez] { display: flex; flex-direction: column; gap: 0.85rem; }
.about-bio[b-nvg3tsamez] {
    margin: 0;
    white-space: pre-wrap;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--pp-text, #333);
}
.about-facts[b-nvg3tsamez] {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.6rem 1rem;
}
.about-fact[b-nvg3tsamez] { margin: 0; }
.about-fact dt[b-nvg3tsamez] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--pp-text-dim, #888);
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.about-fact dd[b-nvg3tsamez] {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pp-text, #333);
}
.favorite-hero[b-nvg3tsamez] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--pp-surface-2, #f3f3f3), var(--pp-surface, #fafafa));
    border: 2px solid var(--pp-border, #e0e0e0);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}
.favorite-hero[b-nvg3tsamez]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.favorite-hero-sprite[b-nvg3tsamez] {
    width: 72px;
    height: 72px;
    object-fit: contain;
    image-rendering: pixelated;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}
.favorite-hero-info[b-nvg3tsamez] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.favorite-hero-label[b-nvg3tsamez] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pp-text-dim, #888);
    font-weight: 700;
}
.favorite-hero-name[b-nvg3tsamez] {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pp-text, #333);
}

.favorite-preview[b-nvg3tsamez] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    background: var(--pp-surface-2, #f3f3f3);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}
.favorite-preview img[b-nvg3tsamez] {
    width: 40px;
    height: 40px;
    object-fit: contain;
    image-rendering: pixelated;
}

.about-form[b-nvg3tsamez] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.about-row[b-nvg3tsamez] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
@media (max-width: 480px) {
    .about-row[b-nvg3tsamez] { grid-template-columns: 1fr; }
}
.about-label[b-nvg3tsamez] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pp-text-dim, #666);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.about-input[b-nvg3tsamez] {
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--pp-input-bg, #fff);
    color: var(--pp-text, #333);
    font-family: inherit;
    text-transform: none;
    letter-spacing: normal;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.about-input:focus[b-nvg3tsamez] {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    outline: none;
}
textarea.about-input[b-nvg3tsamez] { resize: vertical; min-height: 3.5rem; }
.char-hint[b-nvg3tsamez] {
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.75rem;
    color: var(--pp-text-muted, #999);
    font-weight: 500;
    text-align: right;
}
.about-dex-row[b-nvg3tsamez] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.about-dex-input[b-nvg3tsamez] { max-width: 120px; }

/* Pokémon search */
.poke-search-wrap[b-nvg3tsamez] { position: relative; }
.poke-search-dropdown[b-nvg3tsamez] {
    position: absolute; z-index: 10; top: 100%; left: 0; right: 0;
    list-style: none; margin: 0.15rem 0 0; padding: 0.25rem 0;
    background: var(--surface, #1c1c1c); border: 1px solid var(--border); border-radius: 8px;
    max-height: 240px; overflow-y: auto; box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.poke-search-dropdown li[b-nvg3tsamez] {
    display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.75rem; cursor: pointer;
}
.poke-search-dropdown li:hover[b-nvg3tsamez] { background: var(--surface-hover, rgba(255,255,255,0.06)); }
.poke-search-dropdown li img[b-nvg3tsamez] { width: 32px; height: 32px; image-rendering: pixelated; }
.poke-search-dropdown li span[b-nvg3tsamez] { font-size: 0.9rem; }

/* Type icon */
.type-icon[b-nvg3tsamez] { width: 18px; height: 18px; vertical-align: middle; margin-right: 0.2rem; }
.about-type-select[b-nvg3tsamez] { flex: 1; }

.about-actions[b-nvg3tsamez] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

/* Social links — edit */
.social-links-edit[b-nvg3tsamez] { margin-top: 0.5rem; }
.social-links-edit .about-label-text[b-nvg3tsamez] { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.social-link-row[b-nvg3tsamez] { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.35rem; }
.social-link-row i[b-nvg3tsamez] { font-size: 1.1rem; width: 1.4rem; text-align: center; color: var(--text-muted); }
.social-link-row .about-input[b-nvg3tsamez] { flex: 1; }
.btn-remove-link[b-nvg3tsamez] { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.25rem; }
.btn-remove-link:hover[b-nvg3tsamez] { color: var(--danger); }
.btn-add-link[b-nvg3tsamez] { background: none; border: 1px dashed var(--border); color: var(--text-muted); border-radius: 6px; padding: 0.3rem 0.75rem; cursor: pointer; font-size: 0.85rem; margin-top: 0.15rem; }
.btn-add-link:hover[b-nvg3tsamez] { border-color: var(--accent); color: var(--accent); }

/* Social links — view */
.social-links-view[b-nvg3tsamez] { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.social-link[b-nvg3tsamez] { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.7rem; border-radius: 6px; background: var(--surface-hover, rgba(255,255,255,0.06)); color: var(--accent); text-decoration: none; font-size: 0.85rem; transition: background 0.15s; }
.social-link:hover[b-nvg3tsamez] { background: var(--surface-active, rgba(255,255,255,0.12)); }
.social-link i[b-nvg3tsamez] { font-size: 1rem; }

/* Remove friend confirmation */
.remove-friend-overlay[b-nvg3tsamez] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 1rem;
}

.remove-friend-dialog[b-nvg3tsamez] {
    background: var(--pp-card-bg, var(--surface, #fff));
    color: var(--pp-text, var(--text));
    border-radius: 14px;
    padding: 1.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.remove-friend-dialog h3[b-nvg3tsamez] {
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.remove-friend-dialog h3 i[b-nvg3tsamez] { color: #d62828; }

.remove-friend-dialog p[b-nvg3tsamez] {
    margin: 0 0 0.75rem;
    color: var(--pp-text-muted, var(--text-muted));
    line-height: 1.5;
}

.remove-friend-actions[b-nvg3tsamez] {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-top: 1rem;
}

.remove-friend-cancel[b-nvg3tsamez],
.remove-friend-go[b-nvg3tsamez] {
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    cursor: pointer;
}

.remove-friend-cancel[b-nvg3tsamez] {
    background: var(--pp-surface-2, var(--surface-hover, #f0f0f0));
    color: var(--pp-text, var(--text));
}

.remove-friend-go[b-nvg3tsamez] {
    background: #d62828;
    color: #fff;
}

.remove-friend-go:hover:not(:disabled)[b-nvg3tsamez] { filter: brightness(1.1); }

.remove-friend-cancel:disabled[b-nvg3tsamez],
.remove-friend-go:disabled[b-nvg3tsamez] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* /Components/Pages/ImportPage.razor.rz.scp.css */
.import-page[b-eiktjuc8po] {
    max-width: 600px;
    margin: 0 auto;
}

.import-page h2[b-eiktjuc8po] {
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.import-source[b-eiktjuc8po] {
    background: var(--pp-surface, #f8f9fa);
    border: 2px solid var(--pp-border-3, #dee2e6);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.import-source h3[b-eiktjuc8po] {
    margin: 0 0 1rem;
    font-weight: 700;
}

.import-source p[b-eiktjuc8po] {
    color: var(--pp-text-subtle, #555);
    font-weight: 500;
}

.import-steps[b-eiktjuc8po] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step[b-eiktjuc8po] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-num[b-eiktjuc8po] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.bookmarklet[b-eiktjuc8po] {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--pp-surface-2, #e9ecef);
    border-radius: 8px;
    color: var(--pp-text, #333) !important;
    text-decoration: none !important;
    font-weight: 700;
    border: 2px dashed var(--pp-border, #adb5bd);
    cursor: grab;
    transition: all 0.12s ease;
}

.bookmarklet:hover[b-eiktjuc8po] {
    background: var(--pp-surface-hover, #dee2e6);
    transform: translateY(-1px);
}

.import-divider[b-eiktjuc8po] {
    text-align: center;
    color: var(--pp-text-muted, #888);
    margin: 1.5rem 0;
    position: relative;
    font-weight: 600;
}

.import-divider[b-eiktjuc8po]::before,
.import-divider[b-eiktjuc8po]::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--pp-border-3, #dee2e6);
}

.import-divider[b-eiktjuc8po]::before { left: 0; }
.import-divider[b-eiktjuc8po]::after { right: 0; }

.import-actions[b-eiktjuc8po] {
    margin-bottom: 1rem;
}

.import-form[b-eiktjuc8po] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.paste-box[b-eiktjuc8po] {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--pp-border, #ced4da);
    background: var(--pp-input-bg, #fff);
    color: var(--pp-text, #333);
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    resize: vertical;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.paste-box:focus[b-eiktjuc8po] {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    outline: none;
}

.btn-import[b-eiktjuc8po] {
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: white;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    align-self: flex-start;
    transition: all 0.12s ease;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
}

.btn-import:hover:not(:disabled)[b-eiktjuc8po] {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
}

.btn-import:disabled[b-eiktjuc8po] {
    opacity: 0.45;
    cursor: not-allowed;
}

.import-progress[b-eiktjuc8po] {
    margin-top: 1rem;
}

.progress-bar-track[b-eiktjuc8po] {
    height: 10px;
    background: var(--pp-border-3, #dee2e6);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill[b-eiktjuc8po] {
    height: 100%;
    background: linear-gradient(90deg, #e63946, #ff6b6b, #ffc233);
    border-radius: 5px;
    transition: width 0.3s ease;
}

.progress-label[b-eiktjuc8po] {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pp-text-subtle, #555);
}

.import-error[b-eiktjuc8po] {
    margin-top: 1rem;
    padding: 0.85rem 1.1rem;
    background: #fff0f0;
    border: 2px solid #ffccd0;
    border-radius: 10px;
    color: #c0392b;
    font-weight: 600;
}

.import-result[b-eiktjuc8po] {
    margin-top: 1.5rem;
    padding: 1.1rem 1.35rem;
    background: #ecfdf5;
    border: 2px solid #a7f3d0;
    border-radius: 10px;
    color: #065f46;
}

.import-result h4[b-eiktjuc8po] {
    margin: 0 0 0.75rem;
    color: #065f46;
    font-weight: 700;
}

.import-result ul[b-eiktjuc8po] {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.import-result li[b-eiktjuc8po] {
    padding: 0.3rem 0;
    font-weight: 500;
}

.import-result .btn-import[b-eiktjuc8po] {
    margin-top: 0.5rem;
}

.import-file[b-eiktjuc8po]  input[type="file"] {
    display: block;
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    border: 2px dashed var(--pp-border, #adb5bd);
    background: var(--pp-input-bg, #fff);
    color: var(--pp-text, #333);
    font-weight: 500;
    cursor: pointer;
}

.import-file[b-eiktjuc8po]  input[type="file"]::file-selector-button {
    margin-right: 0.85rem;
    padding: 0.45rem 1.05rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: white;
    font-weight: 700;
    cursor: pointer;
}
/* /Components/Pages/NotFoundPage.razor.rz.scp.css */
.notfound-page[b-poqbtvfhuh] {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0.5rem 3rem;
}

.notfound-card[b-poqbtvfhuh] {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    padding: 2rem 1.5rem 2.25rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(230, 57, 70, 0.14) 55%, rgba(245, 158, 11, 0.16));
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.notfound-eyebrow[b-poqbtvfhuh] {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7c3aed;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.14);
}

.notfound-art[b-poqbtvfhuh] {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 180px;
    margin: 0.25rem 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notfound-code[b-poqbtvfhuh] {
    font-family: "Courier New", ui-monospace, monospace;
    font-weight: 900;
    font-size: clamp(5rem, 18vw, 8.5rem);
    line-height: 1;
    background: linear-gradient(135deg, #7c3aed, #e63946 60%, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 0;
}

.notfound-code[b-poqbtvfhuh]::before,
.notfound-code[b-poqbtvfhuh]::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.7;
}
.notfound-code[b-poqbtvfhuh]::before {
    transform: translate(-3px, 0);
    filter: hue-rotate(-25deg);
    animation: nf-glitch-x-b-poqbtvfhuh 2.4s steps(1, end) infinite;
}
.notfound-code[b-poqbtvfhuh]::after {
    transform: translate(3px, 0);
    filter: hue-rotate(35deg);
    animation: nf-glitch-x-b-poqbtvfhuh 1.7s steps(1, end) infinite reverse;
}

@keyframes nf-glitch-x-b-poqbtvfhuh {
    0%, 92%, 100% { transform: translate(0, 0); opacity: 0; }
    93%           { transform: translate(-4px, 1px); opacity: 0.85; }
    95%           { transform: translate(3px, -1px); opacity: 0.85; }
    97%           { transform: translate(-2px, 2px); opacity: 0.85; }
    99%           { transform: translate(2px, 0); opacity: 0.85; }
}

.notfound-sprite[b-poqbtvfhuh] {
    position: absolute;
    right: 6%;
    bottom: 8%;
    width: 88px;
    height: 88px;
    border-radius: 4px;
    overflow: hidden;
    background: #1a1a2e;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
    transform: rotate(-3deg);
    image-rendering: pixelated;
}

.notfound-sprite-inner[b-poqbtvfhuh] {
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            90deg,
            #2b2b44 0 8px,
            #4d4d6f 8px 14px,
            #1a1a2e 14px 22px,
            #6b6b8a 22px 30px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.08) 0 6px,
            transparent 6px 12px
        );
    background-blend-mode: screen;
    animation: nf-sprite-flicker-b-poqbtvfhuh 0.45s steps(2, end) infinite;
    position: relative;
}
.notfound-sprite-inner[b-poqbtvfhuh]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent 38%, rgba(230, 57, 70, 0.25) 38% 42%, transparent 42%),
        linear-gradient(transparent 60%, rgba(124, 58, 237, 0.3) 60% 65%, transparent 65%);
    mix-blend-mode: screen;
}
.notfound-sprite-inner[b-poqbtvfhuh]::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            transparent 0 3px,
            rgba(0, 0, 0, 0.25) 3px 4px
        );
    pointer-events: none;
}

@keyframes nf-sprite-flicker-b-poqbtvfhuh {
    0%, 100% { filter: hue-rotate(0deg) contrast(1); }
    50%      { filter: hue-rotate(20deg) contrast(1.15); }
}

.notfound-ghost[b-poqbtvfhuh] {
    position: absolute;
    left: 8%;
    top: 6%;
    font-size: 2.4rem;
    filter: drop-shadow(0 4px 10px rgba(124, 58, 237, 0.45));
    animation: nf-float-b-poqbtvfhuh 3.2s ease-in-out infinite;
}

@keyframes nf-float-b-poqbtvfhuh {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%      { transform: translateY(-8px) rotate(4deg); }
}

.notfound-title[b-poqbtvfhuh] {
    margin: 0;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--pp-text);
}

.notfound-glitch[b-poqbtvfhuh] {
    position: relative;
    color: #e63946;
    font-family: "Courier New", ui-monospace, monospace;
    letter-spacing: 0.02em;
}
.notfound-glitch[b-poqbtvfhuh]::before,
.notfound-glitch[b-poqbtvfhuh]::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}
.notfound-glitch[b-poqbtvfhuh]::before {
    color: #7c3aed;
    transform: translate(-1.5px, 0);
    clip-path: inset(0 0 55% 0);
    mix-blend-mode: screen;
}
.notfound-glitch[b-poqbtvfhuh]::after {
    color: #06b6d4;
    transform: translate(1.5px, 0);
    clip-path: inset(55% 0 0 0);
    mix-blend-mode: screen;
}

.notfound-subtitle[b-poqbtvfhuh] {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--pp-text);
    opacity: 0.92;
    max-width: 520px;
}

.notfound-dialog[b-poqbtvfhuh] {
    margin: 0.25rem 0 0.25rem;
    padding: 0.85rem 1rem;
    width: 100%;
    max-width: 480px;
    background: var(--pp-surface-2, #f5f3ff);
    border: 2px solid var(--pp-border, #c7c2e6);
    border-radius: 10px;
    text-align: left;
    font-family: "Courier New", ui-monospace, monospace;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--pp-text);
    white-space: pre-wrap;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.notfound-dialog strong[b-poqbtvfhuh] {
    color: #e63946;
    font-weight: 700;
}

.notfound-actions[b-poqbtvfhuh] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.notfound-hint[b-poqbtvfhuh] {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    color: var(--pp-text-muted);
}

@media (max-width: 480px) {
    .notfound-card[b-poqbtvfhuh] { padding: 1.5rem 1rem 1.75rem; }
    .notfound-art[b-poqbtvfhuh] { height: 150px; }
    .notfound-sprite[b-poqbtvfhuh] { width: 70px; height: 70px; }
    .notfound-ghost[b-poqbtvfhuh] { font-size: 2rem; }
    .notfound-actions[b-poqbtvfhuh] { flex-direction: column; align-items: stretch; width: 100%; }
}
/* /Components/Pages/ProfilePage.razor.rz.scp.css */
.profile-layout[b-4cir39nh5z] {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card[b-4cir39nh5z] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-top: 4px solid var(--user-accent, #e63946);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 -2px 0 var(--user-accent-glow, rgba(230, 57, 70, 0.2));
    position: relative;
}

.profile-card.has-banner[b-4cir39nh5z] {
    padding-top: 5.5rem;
}

.profile-banner[b-4cir39nh5z] {
    position: absolute;
    inset: 0 0 auto 0;
    height: 6.5rem;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    pointer-events: none;
    z-index: 0;
}

.profile-banner-img[b-4cir39nh5z] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-banner-placeholder[b-4cir39nh5z] {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--user-accent, #e63946), var(--pp-surface-2, #f0f0f0));
    opacity: 0.75;
}

.profile-banner[b-4cir39nh5z]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, var(--pp-card-bg, #fff) 100%);
    pointer-events: none;
}

.btn-share-profile[b-4cir39nh5z] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pp-surface-2, #f0f0f0);
    border: 2px solid var(--pp-border, #ddd);
    color: var(--pp-text-muted, #888);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.15s ease;
}

.btn-share-profile:hover[b-4cir39nh5z] {
    background: var(--user-accent, #e63946);
    border-color: var(--user-accent, #e63946);
    color: #fff;
    box-shadow: 0 2px 10px var(--user-accent-glow, rgba(230, 57, 70, 0.3));
    transform: translateY(-1px);
}

.avatar-wrap[b-4cir39nh5z] { flex-shrink: 0; position: relative; z-index: 1; }

.avatar[b-4cir39nh5z] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid var(--user-accent, #e63946);
    box-shadow: 0 0 12px var(--user-accent-glow, rgba(230, 57, 70, 0.25));
    position: relative;
    z-index: 1;
}

.avatar-letter[b-4cir39nh5z] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--user-accent, #e63946), var(--user-accent, #ff6b6b));
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 0 12px var(--user-accent-glow, rgba(230, 57, 70, 0.3));
    position: relative;
    z-index: 1;
}

.profile-info[b-4cir39nh5z] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
}

.profile-info h2[b-4cir39nh5z] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--user-accent, #e63946), var(--pp-text, #333) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.profile-email[b-4cir39nh5z], .profile-since[b-4cir39nh5z] {
    font-size: 0.85rem;
    color: var(--pp-text-dim, #666);
    font-weight: 500;
}

.profile-slug[b-4cir39nh5z] {
    font-size: 0.9rem;
    color: var(--user-accent, #e63946);
    font-weight: 700;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: 0.01em;
}

.pro-badge[b-4cir39nh5z] {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #ffc233, #f39c12);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(255, 194, 51, 0.4);
    letter-spacing: 0.03em;
}

.section[b-4cir39nh5z] {
    padding: 1.5rem;
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.section h3[b-4cir39nh5z] {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section h3 > i[b-4cir39nh5z] {
    color: var(--user-accent, #e63946);
}

.badge[b-4cir39nh5z] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.35rem;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.35);
}

.empty-hint[b-4cir39nh5z] { color: var(--pp-text-muted, #999); font-size: 0.9rem; margin: 0; font-weight: 500; }

.invite-list[b-4cir39nh5z], .friend-list[b-4cir39nh5z] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.invite-item[b-4cir39nh5z], .friend-item[b-4cir39nh5z] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--pp-border-3, #f0f0f0);
}

.invite-item:last-child[b-4cir39nh5z], .friend-item:last-child[b-4cir39nh5z] { border-bottom: none; }

.invite-name[b-4cir39nh5z], .friend-name[b-4cir39nh5z] {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
}

.invite-actions[b-4cir39nh5z], .friend-actions[b-4cir39nh5z] {
    display: flex;
    gap: 0.4rem;
}

.friend-avatar[b-4cir39nh5z] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pp-border);
}

.friend-profile-link[b-4cir39nh5z] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
    min-width: 0;
    padding: 0.15rem 0.25rem;
    margin: -0.15rem -0.25rem;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
}

.friend-profile-link:hover[b-4cir39nh5z] {
    background: var(--pp-border-3, #f4f4f4);
    color: var(--pp-accent, #e63946);
}

.friend-profile-link .friend-name[b-4cir39nh5z] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar-letter-sm[b-4cir39nh5z] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    flex-shrink: 0;
}

.invite-form[b-4cir39nh5z] {
    display: flex;
    gap: 0.5rem;
}

.invite-input[b-4cir39nh5z] {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--pp-input-bg, #fff);
    color: var(--pp-text, #333);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.invite-input:focus[b-4cir39nh5z] {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    outline: none;
}

.invite-msg[b-4cir39nh5z] {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.invite-msg.ok[b-4cir39nh5z] { color: #2ecc71; }
.invite-msg.error[b-4cir39nh5z] { color: #e63946; }

.friend-controls[b-4cir39nh5z] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 0;
}

/* Buttons */
button[b-4cir39nh5z], a.btn-view[b-4cir39nh5z] {
    padding: 0.35rem 0.85rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.12s ease;
}

.btn-send[b-4cir39nh5z] { background: linear-gradient(135deg, #e63946, #ff6b6b); color: #fff; }
.btn-send:hover[b-4cir39nh5z] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35); }
.btn-send:disabled[b-4cir39nh5z] { opacity: 0.5; cursor: default; transform: none; box-shadow: none; }
.btn-accept[b-4cir39nh5z] { background: linear-gradient(135deg, #2ecc71, #27ae60); color: #fff; }
.btn-accept:hover[b-4cir39nh5z] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(46, 204, 113, 0.35); }
.btn-reject[b-4cir39nh5z] { background: #666; color: #fff; }
.btn-reject:hover[b-4cir39nh5z] { background: #555; }
.btn-cancel[b-4cir39nh5z] { background: var(--pp-surface-2, #ddd); color: var(--pp-text, #333); }
.btn-remove[b-4cir39nh5z] { background: transparent; color: #e63946; border: 2px solid #e63946; }
.btn-remove:hover[b-4cir39nh5z] { background: rgba(230, 57, 70, 0.08); }
.btn-view[b-4cir39nh5z] { background: linear-gradient(135deg, #3d7be6, #58b4ff); color: #fff; }
.btn-view:hover[b-4cir39nh5z] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(61, 123, 230, 0.35); }
.btn-compare[b-4cir39nh5z] { background: linear-gradient(135deg, #e63946, #ff6b6b); color: #fff; display: inline-flex; align-items: center; gap: 0.3rem; }
.btn-compare:hover[b-4cir39nh5z] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35); color: #fff; }
.btn-pending[b-4cir39nh5z] { background: var(--pp-surface-2, #ccc); color: var(--pp-text-muted, #666); cursor: default; }
.btn-shared[b-4cir39nh5z] { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; }
.btn-shared:hover[b-4cir39nh5z] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(124, 58, 237, 0.35); color: #fff; }
.btn-shared-start[b-4cir39nh5z] { background: transparent; color: #7c3aed; border: 2px solid #7c3aed; }
.btn-shared-start:hover[b-4cir39nh5z] { background: rgba(124, 58, 237, 0.08); }

.signout-section[b-4cir39nh5z] { border-top: 1px solid var(--pp-border, #e0e0e0); padding-top: 1.5rem; margin-top: 1rem; }

.btn-signout[b-4cir39nh5z] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #e63946;
    background: transparent;
    color: #e63946;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-signout:hover[b-4cir39nh5z] {
    background: rgba(230, 57, 70, 0.08);
}

/* About section */
.section-header[b-4cir39nh5z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.section-header h3[b-4cir39nh5z] { margin: 0; }

.btn-edit[b-4cir39nh5z] {
    padding: 0.3rem 0.7rem;
    background: transparent;
    color: var(--pp-text, #333);
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}
.btn-edit:hover[b-4cir39nh5z] { border-color: #e63946; color: #e63946; }

.about-view[b-4cir39nh5z] { display: flex; flex-direction: column; gap: 0.85rem; }
.about-bio[b-4cir39nh5z] {
    margin: 0;
    white-space: pre-wrap;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--pp-text, #333);
}
.about-facts[b-4cir39nh5z] {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.6rem 1rem;
}
.about-fact[b-4cir39nh5z] { margin: 0; }
.about-fact dt[b-4cir39nh5z] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--pp-text-dim, #888);
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.about-fact dd[b-4cir39nh5z] {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pp-text, #333);
}
.favorite-hero[b-4cir39nh5z] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--user-accent-glow, rgba(230, 57, 70, 0.12)), var(--pp-surface, #fafafa));
    border: 2px solid var(--user-accent, #e63946);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}
.favorite-hero[b-4cir39nh5z]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, var(--user-accent-glow, rgba(230, 57, 70, 0.18)) 0%, transparent 60%);
    pointer-events: none;
}
.favorite-hero-sprite[b-4cir39nh5z] {
    width: 72px;
    height: 72px;
    object-fit: contain;
    image-rendering: pixelated;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}
.favorite-hero-info[b-4cir39nh5z] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.favorite-hero-label[b-4cir39nh5z] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pp-text-dim, #888);
    font-weight: 700;
}
.favorite-hero-name[b-4cir39nh5z] {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--user-accent, #e63946);
}

.favorite-preview[b-4cir39nh5z] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    background: var(--pp-surface-2, #f3f3f3);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}
.favorite-preview img[b-4cir39nh5z] {
    width: 40px;
    height: 40px;
    object-fit: contain;
    image-rendering: pixelated;
}

.about-form[b-4cir39nh5z] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.about-row[b-4cir39nh5z] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
@media (max-width: 480px) {
    .about-row[b-4cir39nh5z] { grid-template-columns: 1fr; }
}
.about-label[b-4cir39nh5z] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pp-text-dim, #666);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.about-input[b-4cir39nh5z] {
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--pp-input-bg, #fff);
    color: var(--pp-text, #333);
    font-family: inherit;
    text-transform: none;
    letter-spacing: normal;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.slug-input-wrap[b-4cir39nh5z] {
    display: flex;
    align-items: stretch;
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 10px;
    overflow: hidden;
    background: var(--pp-input-bg, #fff);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.slug-input-wrap:focus-within[b-4cir39nh5z] {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}
.slug-input-prefix[b-4cir39nh5z] {
    display: flex;
    align-items: center;
    padding: 0 0.6rem;
    background: var(--pp-input-prefix-bg, rgba(0, 0, 0, 0.04));
    color: var(--pp-text-dim, #666);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    border-right: 1px solid var(--pp-border, #ccc);
}
.slug-input[b-4cir39nh5z] {
    flex: 1;
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.slug-input:focus[b-4cir39nh5z] {
    border-color: transparent;
    box-shadow: none;
}
.about-input:focus[b-4cir39nh5z] {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    outline: none;
}
textarea.about-input[b-4cir39nh5z] { resize: vertical; min-height: 3.5rem; }
.char-hint[b-4cir39nh5z] {
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.75rem;
    color: var(--pp-text-muted, #999);
    font-weight: 500;
    text-align: right;
}
.about-dex-row[b-4cir39nh5z] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.about-dex-input[b-4cir39nh5z] { max-width: 120px; }

/* Pokémon search */
.poke-search-wrap[b-4cir39nh5z] { position: relative; }
.poke-search-dropdown[b-4cir39nh5z] {
    position: absolute; z-index: 10; top: 100%; left: 0; right: 0;
    list-style: none; margin: 0.15rem 0 0; padding: 0.25rem 0;
    background: var(--surface, #1c1c1c); border: 1px solid var(--border); border-radius: 8px;
    max-height: 240px; overflow-y: auto; box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.poke-search-dropdown li[b-4cir39nh5z] {
    display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.75rem; cursor: pointer;
}
.poke-search-dropdown li:hover[b-4cir39nh5z] { background: var(--surface-hover, rgba(255,255,255,0.06)); }
.poke-search-dropdown li img[b-4cir39nh5z] { width: 32px; height: 32px; image-rendering: pixelated; }
.poke-search-dropdown li span[b-4cir39nh5z] { font-size: 0.9rem; }

/* Type icon */
.type-icon[b-4cir39nh5z] { width: 18px; height: 18px; vertical-align: middle; margin-right: 0.2rem; }
.about-type-select[b-4cir39nh5z] { flex: 1; }

.about-actions[b-4cir39nh5z] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

/* Social links — edit */
.social-links-edit[b-4cir39nh5z] { margin-top: 0.5rem; }
.social-links-edit .about-label-text[b-4cir39nh5z] { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.social-link-row[b-4cir39nh5z] { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.35rem; }
.social-link-row i[b-4cir39nh5z] { font-size: 1.1rem; width: 1.4rem; text-align: center; color: var(--text-muted); }
.social-link-row .about-input[b-4cir39nh5z] { flex: 1; }
.btn-remove-link[b-4cir39nh5z] { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.25rem; }
.btn-remove-link:hover[b-4cir39nh5z] { color: var(--danger); }
.btn-add-link[b-4cir39nh5z] { background: none; border: 1px dashed var(--border); color: var(--text-muted); border-radius: 6px; padding: 0.3rem 0.75rem; cursor: pointer; font-size: 0.85rem; margin-top: 0.15rem; }
.btn-add-link:hover[b-4cir39nh5z] { border-color: var(--accent); color: var(--accent); }

/* Social links — view */
.social-links-view[b-4cir39nh5z] { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.social-link[b-4cir39nh5z] { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.7rem; border-radius: 6px; background: var(--surface-hover, rgba(255,255,255,0.06)); color: var(--accent); text-decoration: none; font-size: 0.85rem; transition: background 0.15s; }
.social-link:hover[b-4cir39nh5z] { background: var(--surface-active, rgba(255,255,255,0.12)); }
.social-link i[b-4cir39nh5z] { font-size: 1rem; }
/* /Components/Pages/SettingsPage.razor.rz.scp.css */
.leaderboard-settings[b-j2aob2vjcj] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.toggle-row[b-j2aob2vjcj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.toggle-row.toggle-sub[b-j2aob2vjcj] {
    padding-left: 1.5rem;
}

.profile-layout[b-j2aob2vjcj] {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card[b-j2aob2vjcj] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}

.btn-share-profile[b-j2aob2vjcj] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pp-surface-2, #f0f0f0);
    border: 2px solid var(--pp-border, #ddd);
    color: var(--pp-text-muted, #888);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.15s ease;
}

.btn-share-profile:hover[b-j2aob2vjcj] {
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    border-color: #e63946;
    color: #fff;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
    transform: translateY(-1px);
}

.avatar-wrap[b-j2aob2vjcj] { flex-shrink: 0; }

.avatar[b-j2aob2vjcj] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #e63946;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.25);
}

.avatar-letter[b-j2aob2vjcj] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.3);
}

.profile-info[b-j2aob2vjcj] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.profile-info h2[b-j2aob2vjcj] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.profile-email[b-j2aob2vjcj], .profile-since[b-j2aob2vjcj] {
    font-size: 0.85rem;
    color: var(--pp-text-dim, #666);
    font-weight: 500;
}

.pro-badge[b-j2aob2vjcj] {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, #ffc233, #f39c12);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(255, 194, 51, 0.4);
    letter-spacing: 0.03em;
}

.section[b-j2aob2vjcj] {
    padding: 1.5rem;
    background: var(--pp-card-bg, #fff);
    border: 2px solid var(--pp-border-3, #e0e0e0);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.section h3[b-j2aob2vjcj] {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge[b-j2aob2vjcj] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.35rem;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.35);
}

.empty-hint[b-j2aob2vjcj] { color: var(--pp-text-muted, #999); font-size: 0.9rem; margin: 0; font-weight: 500; }

.invite-list[b-j2aob2vjcj], .friend-list[b-j2aob2vjcj] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.invite-item[b-j2aob2vjcj], .friend-item[b-j2aob2vjcj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--pp-border-3, #f0f0f0);
}

.invite-item:last-child[b-j2aob2vjcj], .friend-item:last-child[b-j2aob2vjcj] { border-bottom: none; }

.invite-name[b-j2aob2vjcj], .friend-name[b-j2aob2vjcj] {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
}

.invite-actions[b-j2aob2vjcj], .friend-actions[b-j2aob2vjcj] {
    display: flex;
    gap: 0.4rem;
}

.friend-avatar[b-j2aob2vjcj] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pp-border);
}

.friend-profile-link[b-j2aob2vjcj] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
    min-width: 0;
    padding: 0.15rem 0.25rem;
    margin: -0.15rem -0.25rem;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
}

.friend-profile-link:hover[b-j2aob2vjcj] {
    background: var(--pp-border-3, #f4f4f4);
    color: var(--pp-accent, #e63946);
}

.friend-profile-link .friend-name[b-j2aob2vjcj] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar-letter-sm[b-j2aob2vjcj] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    flex-shrink: 0;
}

.invite-form[b-j2aob2vjcj] {
    display: flex;
    gap: 0.5rem;
}

.invite-input[b-j2aob2vjcj] {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--pp-input-bg, #fff);
    color: var(--pp-text, #333);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.invite-input:focus[b-j2aob2vjcj] {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    outline: none;
}

.invite-msg[b-j2aob2vjcj] {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.invite-msg.ok[b-j2aob2vjcj] { color: #2ecc71; }
.invite-msg.error[b-j2aob2vjcj] { color: #e63946; }

.friend-controls[b-j2aob2vjcj] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 0;
}

/* Buttons */
button[b-j2aob2vjcj], a.btn-view[b-j2aob2vjcj] {
    padding: 0.35rem 0.85rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.12s ease;
}

.btn-send[b-j2aob2vjcj] { background: linear-gradient(135deg, #e63946, #ff6b6b); color: #fff; }
.btn-send:hover[b-j2aob2vjcj] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35); }
.btn-send:disabled[b-j2aob2vjcj] { opacity: 0.5; cursor: default; transform: none; box-shadow: none; }
.btn-accept[b-j2aob2vjcj] { background: linear-gradient(135deg, #2ecc71, #27ae60); color: #fff; }
.btn-accept:hover[b-j2aob2vjcj] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(46, 204, 113, 0.35); }
.btn-reject[b-j2aob2vjcj] { background: #666; color: #fff; }
.btn-reject:hover[b-j2aob2vjcj] { background: #555; }
.btn-cancel[b-j2aob2vjcj] { background: var(--pp-surface-2, #ddd); color: var(--pp-text, #333); }
.btn-remove[b-j2aob2vjcj] { background: transparent; color: #e63946; border: 2px solid #e63946; }
.btn-remove:hover[b-j2aob2vjcj] { background: rgba(230, 57, 70, 0.08); }
.btn-view[b-j2aob2vjcj] { background: linear-gradient(135deg, #3d7be6, #58b4ff); color: #fff; }
.btn-view:hover[b-j2aob2vjcj] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(61, 123, 230, 0.35); }
.btn-compare[b-j2aob2vjcj] { background: linear-gradient(135deg, #e63946, #ff6b6b); color: #fff; display: inline-flex; align-items: center; gap: 0.3rem; }
.btn-compare:hover[b-j2aob2vjcj] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35); color: #fff; }
.btn-pending[b-j2aob2vjcj] { background: var(--pp-surface-2, #ccc); color: var(--pp-text-muted, #666); cursor: default; }
.btn-shared[b-j2aob2vjcj] { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; }
.btn-shared:hover[b-j2aob2vjcj] { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(124, 58, 237, 0.35); color: #fff; }
.btn-shared-start[b-j2aob2vjcj] { background: transparent; color: #7c3aed; border: 2px solid #7c3aed; }
.btn-shared-start:hover[b-j2aob2vjcj] { background: rgba(124, 58, 237, 0.08); }

.signout-section[b-j2aob2vjcj] { border-top: 1px solid var(--pp-border, #e0e0e0); padding-top: 1.5rem; margin-top: 1rem; }

.btn-signout[b-j2aob2vjcj] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #e63946;
    background: transparent;
    color: #e63946;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-signout:hover[b-j2aob2vjcj] {
    background: rgba(230, 57, 70, 0.08);
}

/* About section */
.section-header[b-j2aob2vjcj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.section-header h3[b-j2aob2vjcj] { margin: 0; }

.btn-edit[b-j2aob2vjcj] {
    padding: 0.3rem 0.7rem;
    background: transparent;
    color: var(--pp-text, #333);
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}
.btn-edit:hover[b-j2aob2vjcj] { border-color: #e63946; color: #e63946; }

.about-view[b-j2aob2vjcj] { display: flex; flex-direction: column; gap: 0.85rem; }
.about-bio[b-j2aob2vjcj] {
    margin: 0;
    white-space: pre-wrap;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--pp-text, #333);
}
.about-facts[b-j2aob2vjcj] {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.6rem 1rem;
}
.about-fact[b-j2aob2vjcj] { margin: 0; }
.about-fact dt[b-j2aob2vjcj] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--pp-text-dim, #888);
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.about-fact dd[b-j2aob2vjcj] {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pp-text, #333);
}
.favorite-hero[b-j2aob2vjcj] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--pp-surface-2, #f3f3f3), var(--pp-surface, #fafafa));
    border: 2px solid var(--pp-border, #e0e0e0);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}
.favorite-hero[b-j2aob2vjcj]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.favorite-hero-sprite[b-j2aob2vjcj] {
    width: 72px;
    height: 72px;
    object-fit: contain;
    image-rendering: pixelated;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}
.favorite-hero-info[b-j2aob2vjcj] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.favorite-hero-label[b-j2aob2vjcj] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pp-text-dim, #888);
    font-weight: 700;
}
.favorite-hero-name[b-j2aob2vjcj] {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pp-text, #333);
}

.favorite-preview[b-j2aob2vjcj] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    background: var(--pp-surface-2, #f3f3f3);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}
.favorite-preview img[b-j2aob2vjcj] {
    width: 40px;
    height: 40px;
    object-fit: contain;
    image-rendering: pixelated;
}

.about-form[b-j2aob2vjcj] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.about-row[b-j2aob2vjcj] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
@media (max-width: 480px) {
    .about-row[b-j2aob2vjcj] { grid-template-columns: 1fr; }
}
.about-label[b-j2aob2vjcj] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pp-text-dim, #666);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.about-input[b-j2aob2vjcj] {
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--pp-input-bg, #fff);
    color: var(--pp-text, #333);
    font-family: inherit;
    text-transform: none;
    letter-spacing: normal;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.about-input:focus[b-j2aob2vjcj] {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    outline: none;
}
textarea.about-input[b-j2aob2vjcj] { resize: vertical; min-height: 3.5rem; }
.char-hint[b-j2aob2vjcj] {
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.75rem;
    color: var(--pp-text-muted, #999);
    font-weight: 500;
    text-align: right;
}
.about-dex-row[b-j2aob2vjcj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.about-dex-input[b-j2aob2vjcj] { max-width: 120px; }

/* Pokémon search */
.poke-search-wrap[b-j2aob2vjcj] { position: relative; }
.poke-search-dropdown[b-j2aob2vjcj] {
    position: absolute; z-index: 10; top: 100%; left: 0; right: 0;
    list-style: none; margin: 0.15rem 0 0; padding: 0.25rem 0;
    background: var(--surface, #1c1c1c); border: 1px solid var(--border); border-radius: 8px;
    max-height: 240px; overflow-y: auto; box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.poke-search-dropdown li[b-j2aob2vjcj] {
    display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.75rem; cursor: pointer;
}
.poke-search-dropdown li:hover[b-j2aob2vjcj] { background: var(--surface-hover, rgba(255,255,255,0.06)); }
.poke-search-dropdown li img[b-j2aob2vjcj] { width: 32px; height: 32px; image-rendering: pixelated; }
.poke-search-dropdown li span[b-j2aob2vjcj] { font-size: 0.9rem; }

/* Type icon */
.type-icon[b-j2aob2vjcj] { width: 18px; height: 18px; vertical-align: middle; margin-right: 0.2rem; }
.about-type-select[b-j2aob2vjcj] { flex: 1; }

.about-actions[b-j2aob2vjcj] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

/* Social links — edit */
.social-links-edit[b-j2aob2vjcj] { margin-top: 0.5rem; }
.social-links-edit .about-label-text[b-j2aob2vjcj] { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.social-link-row[b-j2aob2vjcj] { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.35rem; }
.social-link-row i[b-j2aob2vjcj] { font-size: 1.1rem; width: 1.4rem; text-align: center; color: var(--text-muted); }
.social-link-row .about-input[b-j2aob2vjcj] { flex: 1; }
.btn-remove-link[b-j2aob2vjcj] { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.25rem; }
.btn-remove-link:hover[b-j2aob2vjcj] { color: var(--danger); }
.btn-add-link[b-j2aob2vjcj] { background: none; border: 1px dashed var(--border); color: var(--text-muted); border-radius: 6px; padding: 0.3rem 0.75rem; cursor: pointer; font-size: 0.85rem; margin-top: 0.15rem; }
.btn-add-link:hover[b-j2aob2vjcj] { border-color: var(--accent); color: var(--accent); }

/* Profile image uploads */
.profile-images-grid[b-j2aob2vjcj] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) {
    .profile-images-grid[b-j2aob2vjcj] { grid-template-columns: 1fr; }
}
.profile-image-slot[b-j2aob2vjcj] { display: flex; flex-direction: column; gap: 0.4rem; }
.about-label-text[b-j2aob2vjcj] {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pp-text-dim, #666);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.profile-image-preview[b-j2aob2vjcj] {
    border: 2px dashed var(--pp-border-3, #e0e0e0);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pp-surface-2, #f8f8f8);
}
.profile-image-preview img[b-j2aob2vjcj] { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar-preview[b-j2aob2vjcj] { aspect-ratio: 1 / 1; max-width: 160px; border-radius: 50%; }
.avatar-preview .avatar-letter[b-j2aob2vjcj] { width: 100%; height: 100%; font-size: 3.5rem; box-shadow: none; }
.banner-preview[b-j2aob2vjcj] { aspect-ratio: 4 / 1; }
.banner-placeholder-inline[b-j2aob2vjcj] { color: var(--pp-text-muted, #999); font-size: 0.85rem; font-weight: 600; }
.profile-image-actions[b-j2aob2vjcj] { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.btn-upload[b-j2aob2vjcj] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border: 2px solid #e63946;
    color: #e63946;
    background: transparent;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease;
}
.btn-upload:hover[b-j2aob2vjcj] { background: rgba(230, 57, 70, 0.1); }
.btn-remove-image[b-j2aob2vjcj] {
    padding: 0.4rem 0.85rem;
    background: transparent;
    color: var(--pp-text-muted, #666);
    border: 2px solid var(--pp-border, #ccc);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}
.btn-remove-image:hover[b-j2aob2vjcj] { color: #e63946; border-color: #e63946; }

/* Social links — view */
.social-links-view[b-j2aob2vjcj] { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.social-link[b-j2aob2vjcj] { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.7rem; border-radius: 6px; background: var(--surface-hover, rgba(255,255,255,0.06)); color: var(--accent); text-decoration: none; font-size: 0.85rem; transition: background 0.15s; }
.social-link:hover[b-j2aob2vjcj] { background: var(--surface-active, rgba(255,255,255,0.12)); }
.social-link i[b-j2aob2vjcj] { font-size: 1rem; }
/* /Components/Pages/SharedPokedexPage.razor.rz.scp.css */
.friend-header[b-prbuahb03t] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0 1.25rem;
}

.friend-header h2[b-prbuahb03t] {
    margin: 0 0 0.1rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.friend-avatar[b-prbuahb03t] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #7c3aed;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
}

.owned-count[b-prbuahb03t] { font-size: 0.85rem; color: var(--pp-text-dim, #666); font-weight: 600; }

.header-actions[b-prbuahb03t] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-link[b-prbuahb03t] {
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.12s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.compare-link:hover[b-prbuahb03t] {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.35);
    color: #fff;
}

.profile-link[b-prbuahb03t] {
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, #3d7be6, #58b4ff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.12s ease;
}
.profile-link:hover[b-prbuahb03t] {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(61, 123, 230, 0.35);
    color: #fff;
}

.btn-end-shared[b-prbuahb03t] {
    padding: 0.35rem 0.9rem;
    background: transparent;
    color: #e63946;
    border: 2px solid #e63946;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.12s ease;
}
.btn-end-shared:hover[b-prbuahb03t] {
    background: rgba(230, 57, 70, 0.08);
}

/* Cells owned only by friend are dimmed slightly */
.dex-cell.friend-only[b-prbuahb03t] {
    opacity: 0.7;
    border-style: dashed;
}

/* Small badge overlay showing friend's avatar on friend-only cells */
.friend-badge[b-prbuahb03t] {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.8);
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.friend-badge img[b-prbuahb03t] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* /Components/SetChip.razor.rz.scp.css */
/* Unified set-code chip (#505). Same look in every card-display context:
   set acronym only, white/black for reverse, black/white for normal. */

.set-chip[b-geotzrhoyg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: var(--pp-font-sans, 'Inter', system-ui, sans-serif);
    flex: 0 0 auto;
    /* Defend against parent-color bleed (e.g. <a> wrappers) — chip color is fixed
       by the variant rules below regardless of where it's rendered. */
    text-decoration: none;
}

.set-chip-normal[b-geotzrhoyg] {
    background: #111;
    color: #fff;
    border: 1.5px solid #fff;
    box-shadow: 0 0 0 1px #111;
}

.set-chip-reverse[b-geotzrhoyg] {
    background: #fff;
    color: #111;
    border: 1.5px solid #111;
    box-shadow: 0 0 0 1px #fff;
}

/* Sizes — sm is the default for in-grid cards; md fits in the post-add display;
   lg is for the snap celebration overlay where the chip is the focal point. */
.set-chip-sm[b-geotzrhoyg] { font-size: 0.66rem; padding: 2px 7px; }
.set-chip-md[b-geotzrhoyg] { font-size: 0.78rem; padding: 3px 9px; }
.set-chip-lg[b-geotzrhoyg] { font-size: 0.95rem; padding: 0.45rem 0.95rem; border-width: 3px; letter-spacing: 0.08em; }

.set-chip-pulse[b-geotzrhoyg] {
    animation: set-chip-pulse-b-geotzrhoyg 1.2s ease-in-out 0.6s 2;
}

@keyframes set-chip-pulse-b-geotzrhoyg {
    0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45); }
    50% { box-shadow: 0 4px 14px rgba(255, 214, 102, 0.85), 0 0 24px rgba(255, 214, 102, 0.6); }
}

@media (prefers-reduced-motion: reduce) {
    .set-chip-pulse[b-geotzrhoyg] { animation: none; }
}
