/* ==================== ANGULAR NAVIGATION STYLES ==================== */

/* Контейнер для кнопки і badge - ПОРЯД */
.angular-nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

#angularStartBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #DD0031;
    color: white;
    border: 3px solid #131010;
    padding: 18px 35px;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rubik', sans-serif;
    box-shadow: 0 4px 15px rgba(221, 0, 49, 0.3);
}

#angularStartBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(221, 0, 49, 0.4);
    background: #c7002c;
}

#angularStartBtn:active {
    transform: translateY(-1px);
}

#angularStartBtn span:first-child {
    font-size: 1.4rem;
}

#angularLevelBadge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(221, 0, 49, 0.1);
    border: 2px solid #DD0031;
    border-radius: 30px;
}

#angularLevelBadge .badge-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

#angularBadgeLevel {
    font-size: 1rem;
    font-weight: 700;
    color: #DD0031;
}

#angularLevelBadge .badge-change {
    font-size: 0.85rem;
    color: #DD0031;
    text-decoration: underline;
    margin-left: 5px;
    transition: color 0.3s;
}

#angularLevelBadge .badge-change:hover {
    color: #a30024;
}

@media (max-width: 768px) {
    .angular-nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #angularStartBtn {
        padding: 14px 25px;
        font-size: 1rem;
    }
}