/**
 * Profile Screen - Экран профиля
 */

.profile-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 30px 20px;
    text-align: center;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-surface);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border: 3px solid var(--accent);
}

.profile-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-status {
    font-size: 14px;
    opacity: 0.9;
}

/* === Profile Card === */
.profile-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin-bottom: 16px;
}

.profile-card-title {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.profile-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-item:last-child {
    border-bottom: none;
}

.profile-item-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.profile-item-value {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.profile-item-value.accent {
    color: var(--accent);
}

.profile-item-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.profile-item-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* === Profile Stats === */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.stat-item {
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    padding: 16px;
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
}

/* === Profile Actions === */
.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-surface);
    border: none;
    border-radius: var(--border-radius);
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-primary);
    font-size: 14px;
}

.profile-action-btn:hover {
    background: var(--primary-light);
}

.profile-action-btn .icon {
    font-size: 20px;
    width: 28px;
    text-align: center;
}

/* === Profile Section === */
.profile-section {
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin: 16px;
}

.profile-section h3 {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.profile-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-stat:last-child {
    border-bottom: none;
}

.profile-stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.profile-stat-value {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
}

.profile-btn {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
    text-align: left;
}

.profile-btn:first-child {
    margin-top: 0;
}

.profile-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.profile-btn.danger {
    color: var(--error);
    border-color: rgba(244, 67, 54, 0.3);
}

.profile-btn.danger:hover {
    background: rgba(244, 67, 54, 0.1);
}

.profile-zodiac {
    font-size: 14px;
    color: var(--accent);
    margin-top: 8px;
}
