/* v/user.css — nodist public profile */

.profile-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3vw 2vw;
    min-height: 80vh;
	width: 95vw;
}

/* ── Hero ── */
.profile-hero {
    display: flex;
    align-items: flex-start;
    gap: 3vw;
    width: 100%;
    max-width: 900px;
    padding: 2.5rem 2.5rem 2rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(80,160,255,0.25);
    border-radius: 4px;
    backdrop-filter: blur(12px);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0,127,255,0) 0%, rgba(0,127,255,0.5) 50%, rgba(0,200,255,0.3) 100%);
}

/* ── Avatar ── */
.profile-pfp-wrap {
    flex-shrink: 0;
    position: relative;
}

.profile-pfp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(80,160,255,0.4);
    object-fit: cover;
    box-shadow: 0 0 30px rgba(80,160,255,0.2), inset 0 2px 4px rgba(255,255,255,0.9);
    display: block;
}

.profile-pfp-default {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(80,160,255,0.4);
    background: rgba(220,238,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: rgba(0,127,255,0.4);
    box-shadow: 0 0 30px rgba(80,160,255,0.2);
}

/* ── Info block ── */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    padding-top: 0.3rem;
}

.profile-username {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: rgba(0,127,255,0.8);
    letter-spacing: 0.15em;
}

.profile-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #1a2a4a;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.profile-tier {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(80,160,255,0.25);
    color: rgba(0,127,255,0.7);
    background: rgba(220,238,255,0.5);
    width: fit-content;
}

.profile-tier-the_egg_man {
    color: rgba(0,200,255,0.9);
    border-color: rgba(0,200,255,0.4);
    background: rgba(200,245,255,0.5);
}

.profile-tier-egg {
    color: rgba(180,130,0,0.9);
    border-color: rgba(200,160,0,0.35);
    background: rgba(255,245,200,0.5);
}

.profile-bio {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(30,60,120,0.75);
    line-height: 1.5;
    max-width: 500px;
    margin-top: 0.3rem;
}

.profile-contact {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(0,127,255,0.6);
}

.profile-joined {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(30,60,120,0.3);
    margin-top: 0.5rem;
}

/* ── Quick stats row ── */
.profile-quickstats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(80,160,255,0.1);
}

.profile-qs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile-qs-val {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #1a2a4a;
    line-height: 1;
}

.profile-qs-lbl {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.45rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0,127,255,0.5);
    margin-top: 0.2rem;
}

/* ── Charts section ── */
.profile-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}

.profile-chart-card {
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(80,160,255,0.2);
    border-radius: 4px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.profile-chart-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,127,255,0.15), rgba(0,200,255,0.15));
}

.profile-chart-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(30,60,120,0.4);
    margin-bottom: 1rem;
}

.profile-chart-canvas-wrap {
    position: relative;
    width: 100%;
    height: 180px;
}

.profile-error {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: rgba(0,127,255,0.5);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 4rem;
    text-align: center;
}