body {
    margin: 0;
    font-family: Arial;
    background: #0f172a;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: #020617;
}

a { color: #38bdf8; text-decoration: none; }


h1, h2 {
    text-shadow: 0 0 10px rgba(56,189,248,0.5);
}

.navbar.glass {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    padding: 15px 30px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    z-index: 100;
}

.navbar a {
    margin-left: 20px;
}