/* Premium Identity & Profile Card - Hyper-Minimalist Executive Edition (Theme Aware) */

.profile-card {
    background: var(--color-bg-secondary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin: 1.5rem 0 2rem 0;
    border: 1px solid var(--color-border);
    box-shadow:
        0 15px 35px var(--color-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.profile-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
}

.profile-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.04em;
    width: 100%;
    text-align: center;
}

.profile-email {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.75rem;
    width: 100%;
    text-align: center;
}

.pro-badge-premium {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.25rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    font-size: 0.85rem;
    font-weight: 950;
    text-transform: uppercase;
    border-radius: 12px;
    letter-spacing: 0.15em;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
}

/* Action Buttons - Expert Pill Style */
.profile-actions-row {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.5rem;
}

.profile-actions-row .btn-settings {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.75rem;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 850;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--color-shadow);
    background: var(--color-bg-primary);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.grant-pro-dev {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    background: transparent;
    border: 1px dashed var(--color-border);
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1.5rem;
    align-self: center;
}