/* ==================== JS NAVIGATION STYLES ==================== */

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

#jsStartBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #F7DF1E;
    color: #131010;
    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(247, 223, 30, 0.3);
}

#jsStartBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 223, 30, 0.4);
    background: #e6cf1a;
}

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

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

#jsLevelBadge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(247, 223, 30, 0.15);
    border: 2px solid #F7DF1E;
    border-radius: 30px;
}

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

#jsBadgeLevel {
    font-size: 1rem;
    font-weight: 700;
    color: #131010;
}

#jsLevelBadge .badge-change {
    font-size: 0.85rem;
    color: #131010;
    text-decoration: underline;
    margin-left: 5px;
    transition: color 0.3s;
    background: #F7DF1E;
    padding: 3px 8px;
    border-radius: 4px;
}

#jsLevelBadge .badge-change:hover {
    background: #e6cf1a;
}

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