/* ============================================
   HUB1 - Меню с кнопками (используется везде)
   Адаптивное: кнопки перестраиваются, но не уменьшаются
   ============================================ */

:root {
    --hub1-bg: #f2f2f2;
    --hub1-padding: 15px 20px;
    --hub1-z-index: 1001;
    --hub1-button-padding: 8px 16px;
    --hub1-button-font-size: 14px;
    --hub1-button-gap: 10px;
}

/* Основной контейнер Hub1 */
.hub1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--hub1-bg);
    backdrop-filter: blur(10px);
    padding: var(--hub1-padding);
    z-index: var(--hub1-z-index);
    min-height: auto;
    transition: height 0.3s ease;
    will-change: height;
    box-sizing: border-box;
}

/* Контент Hub1 */
.hub1-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--hub1-button-gap);
    position: relative;
    box-sizing: border-box;
}

/* Контейнер для кнопок */
.hub1-actions {
    display: flex;
    gap: var(--hub1-button-gap);
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    min-height: auto;
    box-sizing: border-box;
}

/* Левая группа кнопок */
.hub1-actions-left {
    display: flex;
    gap: var(--hub1-button-gap);
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

/* Правая группа кнопок */
.hub1-actions-right {
    display: flex;
    gap: var(--hub1-button-gap);
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Универсальная кнопка Hub1 */
.hub1-button {
    display: inline-block;
    padding: var(--hub1-button-padding);
    background: rgba(245, 245, 245, 0.85);
    border: 2px solid #393639;
    border-radius: 12px;
    color: #393639;
    text-decoration: none;
    font-family: 'Days One', sans-serif;
    font-size: var(--hub1-button-font-size);
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 
        0 2px 0px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    box-sizing: border-box;
    flex-shrink: 0;
    /* Размер кнопки НЕ меняется при адаптации */
}

.hub1-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.15);
    background: rgba(245, 245, 245, 0.6);
}

.hub1-button:active {
    transform: translateY(0px);
}

/* Статус индикатор (для джойстика и т.д.) */
.hub1-status {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--hub1-button-font-size);
    font-weight: 600;
    color: #393639;
    background: rgba(245, 245, 245, 0.85);
    padding: var(--hub1-button-padding);
    border-radius: 12px;
    border: 2px solid #000;
    box-shadow: 
        0 2px 0px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

.hub1-status.connected {
    background: #2fb95d;
    color: #FFFFFF;
}

.hub1-status.disconnected {
    background: #ff7664;
    color: #FFFFFF;
}

/* Иконки игроков (для multiplayer) */
.hub1-player-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--hub1-button-padding);
    border-radius: 12px;
    font-family: 'Days One', sans-serif;
    font-size: var(--hub1-button-font-size);
    font-weight: 700;
    color: #FFFFFF;
    border: 2px solid;
    box-shadow: 
        0 2px 0px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    cursor: default;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    min-width: auto;
    text-align: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.hub1-player-icon:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.15);
}

.hub1-player-icon.waiting {
    background: #ff7664;
    border-color: #ff7664;
}

.hub1-player-icon.ready {
    background: #00C159;
    border-color: #00C159;
}

/* Номер вопроса по центру (для игровых страниц) */
.hub1-question-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #393639;
    opacity: 0.8;
    white-space: nowrap;
    display: none;
    z-index: 1;
}

/* Таймер справа (для игровых страниц) */
.hub1-timer {
    font-family: 'Days One', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #393639;
    min-width: 40px;
    text-align: center;
    padding: 4px 12px;
    background: rgba(245, 245, 245, 0.85);
    border: 2px solid #393639;
    border-radius: 8px;
    box-shadow: 
        0 2px 0px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
    flex-shrink: 0;
    box-sizing: border-box;
}

.hub1-timer.urgent {
    color: #ff7664;
    background: rgba(255, 118, 100, 0.15);
    border-color: #ff7664;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Меню персонажей */
.hub1-character-menu {
    position: relative;
    display: inline-block;
    z-index: 1002;
    overflow: visible;
}

.hub1-character-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    white-space: nowrap;
    width: auto;
    min-width: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    max-height: 0;
    overflow: hidden;
}

.hub1-character-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    overflow: visible;
    display: flex;
}

.hub1-character-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease, transform 0.3s ease, opacity 0.3s ease;
    background: transparent;
    position: relative;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(-20px);
}

.hub1-character-menu-dropdown.active .hub1-character-option {
    opacity: 1;
    transform: translateY(0);
}

.hub1-character-option:hover {
    transform: translateY(0) scale(1.1);
}

/* Адаптивность - Desktop (≥1024px) */
@media (min-width: 1024px) {
    .hub1 {
        padding: 15px 40px;
    }
    
    .hub1-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .hub1-actions {
        justify-content: space-between;
    }
    
    .hub1-actions-left {
        flex: 0 1 auto;
    }
    
    .hub1-actions-right {
        flex: 0 1 auto;
    }
}

/* Адаптивность - Tablet (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .hub1 {
        padding: 15px 30px;
    }
    
    .hub1-actions {
        flex-wrap: nowrap; /* Не переносим на новую строку */
        gap: 8px;
        justify-content: space-between; /* Кнопки остаются по краям, постепенно сближаются */
    }
    
    .hub1-actions-left {
        flex: 0 1 auto; /* Не растягивается */
        min-width: 0;
    }
    
    .hub1-actions-right {
        flex: 0 1 auto; /* Не растягивается, остается справа */
        min-width: 0;
        justify-content: flex-start; /* Кнопки внутри группы слева */
    }
}

/* Адаптивность - Mobile (≤768px) */
@media (max-width: 768px) {
    .hub1 {
        padding: 12px 15px;
    }
    
    .hub1-actions {
        flex-wrap: nowrap; /* Не переносим, кнопки остаются в одну строку */
        gap: 6px;
        justify-content: space-between; /* Кнопки остаются по краям, постепенно сближаются */
    }
    
    .hub1-actions-left {
        flex: 0 1 auto; /* Не растягивается */
        min-width: 0;
    }
    
    .hub1-actions-right {
        flex: 0 1 auto; /* Не растягивается, остается справа */
        min-width: 0;
        justify-content: flex-start; /* Кнопки внутри группы слева */
    }
    
    /* Кнопки уменьшаются на мобильных устройствах */
    .hub1-button {
        font-size: 12px;
        padding: 6px 12px;
        min-width: auto;
    }
    
    .hub1-status {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hub1-player-icon {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hub1-question-number {
        font-size: 12px;
    }
    
    .hub1-timer {
        font-size: 18px;
        padding: 3px 10px;
    }
}

/* Адаптивность - Small Mobile (≤480px) */
@media (max-width: 480px) {
    .hub1 {
        padding: 10px 12px;
    }
    
    .hub1-actions {
        flex-wrap: nowrap; /* Пока не переносим, пробуем уместить в одну строку */
        gap: 5px;
        justify-content: space-between; /* Кнопки все еще по краям */
    }
    
    .hub1-actions-left {
        flex: 0 1 auto; /* Не растягивается */
        min-width: 0;
    }
    
    .hub1-actions-right {
        flex: 0 1 auto; /* Не растягивается, остается справа */
        min-width: 0;
        justify-content: flex-start;
    }
    
    /* Кнопки остаются уменьшенными (как на 768px) */
    .hub1-button {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hub1-status {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hub1-player-icon {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hub1-question-number {
        font-size: 11px;
    }
    
    .hub1-timer {
        font-size: 16px;
        padding: 2px 8px;
    }
}

/* Адаптивность - Очень маленькие экраны (≤360px) - перенос на новую строку */
@media (max-width: 360px) {
    .hub1 {
        padding: 10px 10px;
    }
    
    .hub1-actions {
        flex-wrap: wrap; /* Только на очень маленьких экранах переносим на новую строку */
        gap: 5px;
        justify-content: flex-start; /* Все кнопки слева после переноса */
    }
    
    .hub1-actions-left {
        width: 100%;
        flex: 1 1 100%;
    }
    
    .hub1-actions-right {
        width: 100%;
        flex: 1 1 100%;
        justify-content: flex-start;
    }
}

