body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;

    pointer-events: none;
}

/* ==================== HEADER ==================== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 15px 40px;
    background-color: #259FF0;
    position: relative;
    flex-wrap: wrap;
    z-index: 1000;
}

.header-center {
    display: flex;
    align-items: end;
    justify-content: end;
    gap: 50px;
    flex: 1;
}


/* Logo */
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.logo img {
    height: 80px;
    width: 200px;
}

.login-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.auth_btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}


.auth_btns_style {
    padding: 8px 10px;
    font-size: 10px;
    font-weight: 300;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.auth_btns_style.login {
    background: linear-gradient(135deg, #fff, #dfdfdf);
    color: #000;
}

.auth_btns_style.login:hover {
    background: linear-gradient(135deg, #dfdfdf, #fff);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(23, 22, 22, 0.5);
}

.auth_btns_style.register {
    background: linear-gradient(135deg, #ff9900, #ff7300);
    color: #fff;
}

.auth_btns_style.register :hover {
    background: linear-gradient(135deg, #ff7300, #ff9900);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.5);
}

.auth_btns_style.account {
    background: linear-gradient(135deg, #ff9900, #ff7300);
    color: #fff;
}

.auth_btns_style.account :hover {
    background: linear-gradient(135deg, #ff7300, #ff9900);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.5);
}

.auth_btns_style.primary {
    background: linear-gradient(180deg, #17bfff, #3a86ff);
    border: none;
    color: #fff;
}

.auth_btns_style i {
    font-size: 18px;
}

.auth_btns_style .login-text {
    font-size: 16px;
    font-weight: 500;
}

.auth-buttons-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.auth-buttons-row .btn {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

/* Login Button */
.auth-buttons-row #btn-login {
    background: linear-gradient(135deg, #fff, #dfdfdf);
    color: #000;
}

.auth-buttons-row #btn-login:hover {
    background: linear-gradient(135deg, #dfdfdf, #fff);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(23, 22, 22, 0.5);
}

/* Register Button */
.auth-buttons-row #btn-register {
    background: linear-gradient(135deg, #ff9900, #ff7300);
    color: #fff;
}

.auth-buttons-row #btn-register:hover {
    background: linear-gradient(135deg, #ff7300, #ff9900);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.5);
}

/* Register Button */
#account {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #fff;
    background: linear-gradient(135deg, #ff9900, #ff7300);
}

#account i {
    font-size: 22px;
}

#account:hover {
    background: linear-gradient(135deg, #ff7300, #ff9900);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.5);
}


/* Navigation (Desktop) */
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, color 0.3s ease;
}

.nav-links a:hover {
    color: #004370;
    font-weight: bold;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    flex-direction: column;
}

.menu-toggle {
    display: none;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
    cursor: pointer;
    background-color: #004370;
    border-radius: 20px;
}


.menu-toggle.open i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1300px) {
    .header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 10px;
        background-color: #259FF0;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    }

    .nav-links.active {
        max-height: 900px;
        opacity: 1;
        padding: 15px 10px;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
        font-size: 18px;
    }

    .auth_btns_style {
        display: flex;
    }

    .auth_btns_style .login-text {
        display: inline;
    }

    .auth-buttons-row {
        display: none;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        height: 70px;
        width: 175px;
    }
}

@media (max-width: 490px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        height: 70px;
        width: 175px;
    }

    .auth_btns_style .login-text {
        display: none;
    }
}

@media (max-width: 350px) {

    .logo img {
        height: 60px;
        width: 150px;
    }
}

.menu-toggle.open i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}