.user-stats-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #ffffff36;
    background: #0000003b;
    border-radius: 1rem;
}

.archetype-badge {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.7;
}
.archetype-desc {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted-500)
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-bar {
    background: #ddd;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.stat-bar div {
    background: var(--fuchsia);
    height: 100%;
    transition: width 0.5s;
}

.stat-footer {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}