/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.3));
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(138, 43, 226, 0.1);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #8a2be2;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -4px);
}

.mobile-menu {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:hover {
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.05);
    padding-left: 50px;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 12px 20px;
    }
    
    .logo img {
        height: 65px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .mobile-menu {
        top: 72px;
    }
    
    .mobile-menu a {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .mobile-menu a:hover {
        padding-left: 30px;
    }
}
