/* ============================
   GLOBAL
   ============================ */

body {
    margin: 0;
    padding: 0;
    background: #05010a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}


/* ============================
   NAVBAR
   ============================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    backdrop-filter: blur(8px);
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #cccccc;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}
