/* ============= ОБНОВЛЕННАЯ НАВИГАЦИЯ: ULTRA LIQUID GLASS ============= */

.bottom-nav {
    position: fixed;
    bottom: 3px; /* Приподнял над краем, как в iOS (floating style) */
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
    
    /* Эффект глубокого стекла */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    
    /* Сглаженные углы и супер-тонкая граница */
    border-radius: 30px;
    border: 0.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.2);
    
    z-index: 1000;
    height: 70px;
    animation: navEntry 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.45); /* Приглушенный черный */
    width: 22%;
    height: 54px;
    border-radius: 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
}

/* Активная кнопка с мягким свечением */
.nav-btn.active {
    color: #007AFF;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.05),
        inset 0 0 12px rgba(0, 122, 255, 0.05); /* Легкий оттенок активного цвета внутри */
}

/* Эффект нажатия (Haptic) */
.nav-btn:active {
    transform: scale(0.92);
    background: rgba(255, 255, 255, 0.4);
}

/* Иконки */
.nav-icon {
    font-size: 1.6em;
    margin-bottom: 2px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-btn.active .nav-icon {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 122, 255, 0.3));
}

/* Текст */
.nav-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Индикатор — теперь это «плавающая капля» снизу */
.nav-progress {
    position: absolute;
    bottom: 6px;
    width: 20px;
    height: 3px;
    background: #007AFF;
    border-radius: 10px;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-btn.active .nav-progress {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
}

/* ТЕМНАЯ ТЕМА — Deep Dark Glass */
@media (prefers-color-scheme: dark) {
    .bottom-nav {
        background: rgba(20, 20, 20, 0.6);
        border: 0.5px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }
    
    .nav-btn {
        color: rgba(255, 255, 255, 0.4);
    }
    
    .nav-btn.active {
        color: #0A84FF;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}