@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Geist Mono', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.navbar {
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 2rem;
    width: 100%;
    z-index: 1000;
}

.navbar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.navbar__logo img {
    height: 80px;
    width: auto;
}

.navbar__items__content {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.navbar__items {
    display: flex;
    gap: 2rem;
}

.navbar__item a {
    color: #fff;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.navbar__item a:hover {
    color: #A101FF;
}

.login__btn {
    background: transparent;
    color: #A101FF;
    border: 1px solid #A101FF;
    padding: 0.5rem 2.2rem;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.login__btn:hover {
    background: rgba(212, 0, 212, 0.1);
    box-shadow: 0 0 15px rgba(212, 0, 212, 0.3);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 968px) {
    .navbar__items {
        display: none;
    }
}

@media (max-width: 640px) {
    .navbar__logo img {
        height: 80px;
    }
}