.profile__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.profile__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border-active);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-raised);
    flex-shrink: 0;
}

.profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile__avatar-initial {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
}

.profile__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.profile__handle {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--x-blue);
}

.profile__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.profile__hint {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Stats */
.profile__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.profile__stat {
    text-align: center;
    padding: 1rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.profile__stat-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.profile__stat-label {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Sections */
.profile__section {
    margin-bottom: 1.5rem;
}

.profile__section-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

/* Accounts list */
.profile__accounts {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.profile__account {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    transition: all 0.2s var(--ease);
}

.profile__account:hover {
    border-color: rgba(29, 155, 240, 0.2);
    background: rgba(29, 155, 240, 0.03);
}

.profile__account-handle {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--x-blue-dim);
}

.profile__account-name {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Actions */
.profile__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile__btn {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.2s var(--ease);
}

.profile__btn--connect {
    background: rgba(29, 155, 240, 0.1);
    border-color: rgba(29, 155, 240, 0.3);
    color: var(--x-blue);
}

.profile__btn--connect:hover {
    background: rgba(29, 155, 240, 0.2);
}

.profile__btn--disconnect {
    background: var(--surface);
    color: var(--text-secondary);
}

.profile__btn--danger {
    background: var(--surface);
    color: var(--error);
    border-color: rgba(239, 68, 68, 0.2);
}

.profile__btn--danger:hover {
    background: rgba(239, 68, 68, 0.05);
}
