body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #151823;
    color: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(32px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin: auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-section img {
    width: 50px;
    height: 50px;
}

.logo-section h1 {
    font-size: 20px;
    letter-spacing: 1px;
    color: white;
    font-weight: 600;
    margin: 20px 0;
}