/* Стили для выпадающего меню в header */
.game-header__menu-wrapper {
    position: relative;
    display: inline-block;
}

.header-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.header-menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-dropdown-item {
    display: flex;
    align-items: center;
    padding: 15px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
}

.header-dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.header-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.header-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00ff88;
}

.header-dropdown-icon {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1); /* Делаем иконки белыми */
    transition: filter 0.2s ease;
}

.header-dropdown-item:hover .header-dropdown-icon {
    filter: brightness(0) saturate(100%) invert(61%) sepia(78%) saturate(4547%) hue-rotate(130deg) brightness(101%) contrast(101%); /* Зеленый цвет при hover */
}

/* Специальные стили для элемента выхода */
.header-dropdown-item.logout-item:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

.header-dropdown-item.logout-item:hover .header-dropdown-icon {
    filter: brightness(0) saturate(100%) invert(29%) sepia(89%) saturate(6421%) hue-rotate(353deg) brightness(102%) contrast(106%); /* Красный цвет при hover */
}

.header-dropdown-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Разделитель в меню */
.header-dropdown-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* Скрытие кнопки настроек на компьютере */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Показ кнопки настроек только на мобильных */
@media (max-width: 768px) {
    .mobile-only {
        display: inline-block !important;
    }
}

/* Иконка для кнопки меню */
.iconFont-menu::before {
    content: "☰";
}

/* Иконка для кнопки выхода */
.iconFont-logout::before {
    content: "🚪";
}

/* Стили для кнопки выхода в header */
#logout-header-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: all 0.2s ease;
}

#logout-header-button:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: scale(1.05);
}

#logout-header-button .game-header__button--inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    transition: color 0.2s ease;
}

#logout-header-button:hover .game-header__button--inner {
    color: #ff4444;
}

/* Анимация для кнопки меню */
.header-menu-button.active .iconFont-menu::before {
    content: "✕";
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-dropdown-menu {
        right: -10px;
        min-width: 160px;
    }
    
    .header-dropdown-item {
        padding: 10px 14px;
    }
    
    .header-dropdown-item span {
        font-size: 13px;
    }
    
    .header-dropdown-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
}

/* Скрытие меню при клике вне его */
.header-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: transparent;
    display: none;
}

.header-menu-overlay.active {
    display: block;
}
/* Cache version: 55972997 - Updated: 2025-08-23 21:16:37 */