/* ==================== CSS NAVIGATION STYLES ==================== */

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

#cssStartBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1572B6;
    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(21, 114, 182, 0.3);
}

#cssStartBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 114, 182, 0.4);
    background: #125a91;
}

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

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

#cssLevelBadge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(21, 114, 182, 0.1);
    border: 2px solid #1572B6;
    border-radius: 30px;
}

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

#cssBadgeLevel {
    font-size: 1rem;
    font-weight: 700;
    color: #1572B6;
}

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

#cssLevelBadge .badge-change:hover {
    color: #0d4f7a;
}

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