/* ===== СТИЛИ ПРОФИЛЯ ПОЛЬЗОВАТЕЛЯ ===== */

/* Кнопка профиля */
.btn-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding: 8px 12px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
    overflow: visible;
    background: rgba(255, 255, 255, 0.05);
    min-width: 180px;
    max-width: 220px;
    width: 180px;
}

/* Ник пользователя в профиле */
.btn-profile span {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* Обводка снизу синим цветом */
.btn-profile::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4A90E2 0%, #4A90E2 100%);
    border-radius: 0 0 8px 8px;
    transition: all 0.3s ease;
}

.btn-profile::before {
    display: none;
}

/* Эффекты при наведении убраны */

/* Голова скина */
.skin-head {
    width: 32px;
    height: 32px;
    background: #8B4513;
    position: relative;
    overflow: hidden;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    flex-shrink: 0;
}

/* Стили для скина Стива (по умолчанию) */
.skin-head.steve {
    background: 
        /* Лицо */
        linear-gradient(90deg, #FFDBAC 0%, #FFDBAC 100%),
        /* Волосы */
        linear-gradient(90deg, #8B4513 0%, #8B4513 100%);
    background-size: 100% 60%, 100% 40%;
    background-position: 0 100%, 0 0;
    background-repeat: no-repeat;
    border: 1px solid #000;
}

/* Детали лица Стива */
.skin-head.steve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Глаза */
        radial-gradient(circle at 30% 35%, #000 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 35%, #000 1.5px, transparent 1.5px),
        /* Нос */
        radial-gradient(circle at 50% 55%, #FFDBAC 0.8px, transparent 0.8px),
        /* Рот */
        linear-gradient(90deg, transparent 0%, #8B4513 45%, #8B4513 55%, transparent 100%);
    background-size: 100% 100%;
    background-position: 0 0;
}

/* Стили модального окна вынесены в отдельный файл: assets/css/profile-dropdown.css */

/* Адаптивность для мобильных устройств удалена */
