.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(8, 12, 25, 0.78);
    border-bottom: 1px solid rgba(106, 47, 207, 0.35);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

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

.nav-logo {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.25em;
    color: #e6e6e6;
    text-decoration: none;
    position: relative;
}

.nav-logo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6a2fcf, #f5c84c);
    opacity: 0.6;
}

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

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(230, 230, 230, 0.75);
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6a2fcf, #f5c84c);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}