

.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 800px;
    max-width: 95%;
    background: rgba(15, 10, 10, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 10px 40px rgba(0,0,0,0.4),
        inset 0 0 20px rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 8px 30px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(15, 10, 10, 0.5);
    backdrop-filter: blur(16px);
}

.logo {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}
.ver {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
    transform: translateY(-1px);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-ghost {
    background: rgba(0,0,0,0.2);
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn-solid {
    background: var(--primary);
    color: var(--text-on-primary, #fff);
    box-shadow: 0 5px 15px var(--primary-glow);
}
.btn-solid:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

@media (max-width: 900px) {
    .navbar {
        min-width: unset;
        width: 90%;
        padding: 10px 15px;
        border-radius: 12px;
        top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links { gap: 15px; }
    .nav-links a { font-size: 0.8rem; }
    .logo { display: none; }
}