.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    z-index: 9999;
    box-sizing: border-box;
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        #00e5ff 0%,
        #00ff99 50%,
        #ffb300 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: #111827;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.25s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #06b6d4;
}

/* MOBILE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 14px;
        gap: 12px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        justify-content: center;
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.7rem;
    }
}