/* ==================== VUE.JS NAVIGATION STYLES ==================== */

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

#vueStartBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #42b883;
    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(66, 184, 131, 0.3);
}

#vueStartBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(66, 184, 131, 0.4);
    background: #3aa876;
}

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

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

#vueLevelBadge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(66, 184, 131, 0.1);
    border: 2px solid #42b883;
    border-radius: 30px;
}

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

#vueBadgeLevel {
    font-size: 1rem;
    font-weight: 700;
    color: #42b883;
}

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

#vueLevelBadge .badge-change:hover {
    color: #35495e;
}

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