/* ==================== PYTHON NAVIGATION STYLES ==================== */

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

#pythonStartBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3776AB;
    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(55, 118, 171, 0.3);
}

#pythonStartBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(55, 118, 171, 0.4);
    background: #2c5f8a;
}

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

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

#pythonLevelBadge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(55, 118, 171, 0.1);
    border: 2px solid #3776AB;
    border-radius: 30px;
}

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

#pythonBadgeLevel {
    font-size: 1rem;
    font-weight: 700;
    color: #3776AB;
}

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

#pythonLevelBadge .badge-change:hover {
    color: #FFD43B;
}

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