:root {
    --bg: #070709;
    --bgSoft: #141518;
    --text: #fff;
    --textSoft: #6c7693;
}

/* NAVBAR START */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
}

.links {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--textSoft);
    text-decoration: none;
}

.links > a {
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.links > a:hover {
    background: var(--bgSoft);
    color: var(--text);
}

.searchButton {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bgSoft);
    color: var(--textSoft);
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.searchButton:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.searchButton svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.logo {
    font-weight: bold;
    font-size: 24px;
}

.logo a {
    color: var(--text);
}

a {
    color: var(--textSoft);
    text-decoration: none;
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
        margin-bottom: 24px;
    }

    .links {
        font-size: 14px;
        gap: 4px;
    }

    .links > a {
        padding: 6px 10px;
    }

    .searchButton span {
        display: none;
    }

    .searchButton {
        padding: 8px;
    }
}