/* Navbar Styles */
.new-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.new-navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    padding: 0.8rem 0;
}

.new-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-logo {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    background: linear-gradient(135deg, #14F195 0%, #9945FF 50%, #14F195 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
    transition: all 0.3s ease;
}

.new-logo:hover {
    transform: scale(1.05);
}

.new-nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.new-nav-menu li a {
    font-family: 'Bangers', cursive;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 1.3rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    letter-spacing: 0.05em;
}

.new-nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #14F195, #9945FF);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.new-nav-menu li a:hover {
    color: #14F195;
}

.new-nav-menu li a:hover::before {
    width: 100%;
}

.music-toggle {
    background: transparent;
    border: 2px solid #14F195;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-left: 1rem;
}

.music-toggle:hover {
    background: rgba(20, 241, 149, 0.1);
    transform: scale(1.1);
}

.music-toggle.playing {
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(20, 241, 149, 0);
    }
}

.new-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.new-mobile-toggle span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #14F195, #9945FF);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.new-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.new-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.new-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 968px) {
    .new-mobile-toggle {
        display: flex;
    }

    .new-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.9);
        border-left: 2px solid rgba(20, 241, 149, 0.3);
        align-items: center;
    }

    .new-nav-menu.active {
        right: 0;
    }
    
    .new-nav-menu::before {
        content: '✕';
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2.5rem;
        color: #14F195;
        cursor: pointer;
        font-family: Arial, sans-serif;
        font-weight: 300;
        line-height: 1;
        transition: transform 0.3s ease;
    }
    
    .new-nav-menu.active::before {
        transform: rotate(90deg);
    }

    .new-nav-menu li a {
        font-size: 2rem;
    }
    
    .music-toggle {
        position: relative;
        bottom: auto;
        right: auto;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-left: 0;
        margin-top: 1rem;
    }
}
