.global-header-wrap{
    width:100%;
    padding:0 24px;
}

.header{
max-width:1480px;
margin:0 auto;
height:76px;
display:flex;
align-items:center;
justify-content:space-between;
border-bottom:1px solid rgba(255,255,255,.08);
background:rgba(5,9,18,.72);
backdrop-filter:blur(14px);
position:relative;
z-index:10;
}
.logo{
    font-size:34px;
    font-weight:900;
    letter-spacing:-1.6px;
    color:#fff;
    display:flex;
    align-items:center;
    line-height:1;
    text-decoration:none;
}

.logo-main{
    color:#fff;
}

.logo-dot{
    color:#8b5cf6;
    margin:0 2px;
}

.logo-sub{
    background:linear-gradient(90deg,#3ca5ff,#b86bff);
    -webkit-background-clip:text;
    color:transparent;
}

.nav{
display:flex;
gap:38px;
font-size:16px;
font-weight:800;
align-items:center;
}

.nav a{
color:#eef3ff;
transition:.2s;
}

.nav a:hover{
color:#8b5cf6;
}

.icons{
display:flex;
align-items:center;
justify-content:flex-end;
}

.circle,.login{
width:46px;
height:46px;
border-radius:50%;
background:#101827;
border:1px solid rgba(255,255,255,.1);
display:flex;
align-items:center;
justify-content:center;
}

.login{
width:auto;
padding:0 20px;
border-radius:50px;
border-color:#8b5cf6;
font-weight:800;
}

.header .login,
.header .login:link,
.header .login:visited,
.header .login:hover,
.header .login:active{
    color:#fff !important;
}

@media(max-width:768px){

    .global-header-wrap{
        padding:0 10px;
    }

    .header{
        height:auto;
        min-height:72px;
        flex-wrap:wrap;
        padding:10px 0 12px;
        gap:10px;
        justify-content:center;
    }

    .logo{
        width:auto;
        font-size:24px;
        margin-right:auto;
    }

    .icons{
        width:auto;
        margin-left:auto;
    }

    .login{
        height:34px;
        padding:0 12px;
        font-size:12px;
    }

    .nav{
        order:3;
        width:100%;
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:8px 14px;
        font-size:13px;
        line-height:1.4;
    }

    .nav a{
        white-space:nowrap;
    }
}