img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
.header {
    padding: 16px 0;
    display: flex;
    justify-content: center;
    width: 100vw;
    position: relative;
    z-index: 999999;
}

.header-inner {
    background: #000;
    color: white;
    width: 90%;
    max-width: 1300px;
    border-radius: 40px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 1);
    position: relative;
}

.logo img {
    width: 130px;
    height: auto;
    object-fit: contain;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.btn-white, .btn-green {
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.btn-white {
    background: white;
    color: black;
}

.btn-white:hover {
    box-shadow: 0 0 10px 2px white;
}

.btn-green {
    background: #006b3c;
    color: white;
}

.btn-green:hover {
    box-shadow: 0 0 10px 2px green;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* Mobile nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    border-radius: 10px 10px 20px 20px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 9999;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
}
.color-black {
    color: black!important;
}
.nav-mobile a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav,
    .auth-buttons {
        display: none;
    }

    .burger {
        display: flex;
    }
}
