.naa{
    min-height:100vh;
    background:linear-gradient(135deg,#0f172a,#1e293b,#312e81);
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

/* NAVBAR */
.navbar{
    width:100%;
    padding:18px 8%;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.1);
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    animation:slideDown 1s ease;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    cursor:pointer;
}

.logo-circle{
    width:45px;
    height:45px;
    border-radius:50%;
    background:linear-gradient(135deg,#00f5ff,#8b5cf6,#ff4ecd);
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:22px;
    font-weight:bold;
    box-shadow:0 0 20px rgba(0,245,255,0.6);
    animation:rotateLogo 5s linear infinite;
}

.logo-text{
    color:white;
    font-size:28px;
    font-weight:bold;
    letter-spacing:1px;
}

/* MENU */
.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links li a{
    text-decoration:none;
    color:#000;
    font-size:18px;
    position:relative;
    transition:0.3s;
    padding:6px 0;
}

/* Hover Underline Animation */
.nav-links li a::after{
    content:"";
    position:absolute;
    width:0%;
    height:3px;
    left:0;
    bottom:-5px;
    background:linear-gradient(90deg,#00f5ff,#ff4ecd);
    border-radius:20px;
    transition:0.4s;
}

.nav-links li a:hover::after{
    width:100%;
}

.nav-links li a:hover{
    color:#00f5ff;
    transform:translateY(-2px);
}

/* BUTTON */
.nav-btn{
    padding:10px 22px;
    border:none;
    border-radius:30px;
    background:linear-gradient(135deg,#00f5ff,#8b5cf6,#ff4ecd);
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.4s;
    box-shadow:0 0 15px rgba(255,255,255,0.2);
}

.nav-btn:hover{
    transform:scale(1.08);
    box-shadow:0 0 25px rgba(0,245,255,0.7);
}

/* Animations */
@keyframes rotateLogo{
    100%{
        transform:rotate(360deg);
    }
}

@keyframes slideDown{
    from{
        transform:translateY(-100%);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* Responsive */
@media(max-width:768px){
    .navbar{
        flex-direction:column;
        gap:18px;
        padding:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .logo-text{
        font-size:24px;
    }
}