*{
    box-sizing:border-box;
}

html{
    height:100%;
    overflow-y:scroll;
    scrollbar-gutter:stable;
}

body{
    min-height:100vh;
    margin:0;
    display:flex;
    flex-direction:column;
    padding-top:62px;
    overflow-x:hidden;
}

main{
    flex:1 0 auto;
}

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#2F3040;
    box-shadow:0 8px 18px rgba(0,0,0,0.18) !important;
    border:none !important;
    opacity:1 !important;
    filter:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    font-family:"Segoe UI", Tahoma, Arial, sans-serif;
}

.site-header::before,
.site-header::after{
    display:none !important;
    content:none !important;
}

.header-frame{
    width:100%;
    max-width:1400px;
    min-height:62px;
    margin:0 auto;
    padding:0 24px;
    display:grid;
    grid-template-columns:220px minmax(0,1fr) auto;
    align-items:center;
    gap:18px;
}

.header-left{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    min-width:0;
}

.site-logo-box{
    display:inline-flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    min-width:auto;
    min-height:32px;
    padding:0;
    border-radius:0;
    text-decoration:none;
    background:transparent;
    color:#ffffff;
    font-size:21px;
    font-weight:900;
    letter-spacing:.2px;
    box-shadow:none;
    border:none;
    transition:.2s ease;
}

.site-logo-box:hover{
    color:#ffffff;
    background:transparent;
}

.header-center{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    min-width:0;
    flex-wrap:nowrap;
    white-space:nowrap;
}

.header-center a{
    color:#e4ebf5;
    text-decoration:none;
    font-size:15px;
    font-weight:800;
    letter-spacing:.2px;
    transition:.2s ease;
}

.header-center a:hover{
    color:#ffd22d;
}

.header-divider{
    color:#7e91a7;
    font-weight:700;
}

.header-right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
    flex-wrap:nowrap;
    white-space:nowrap;
}

.header-social{
    display:flex;
    align-items:center;
    gap:8px;
    margin-right:10px;
    flex:0 0 auto;
}

.header-social-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    text-decoration:none;
    line-height:1;
    flex:0 0 16px;
}

.social-icon{
    display:block;
    width:24px !important;
    height:24px !important;
    object-fit:contain;
}

.header-link-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 14px;
    border-radius:999px;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    color:#e4ebf5;
    background:#202b38;
    transition:.2s ease;
}

.header-link-btn:hover{
    color:#ffd22d;
    background:#273445;
}

.header-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 16px;
    border-radius:999px;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    color:#1b1b1b !important;
    background:#e7cf7a !important;
    transition:.2s ease;
}

.header-cta:hover{
    background:#f0da8f !important;
    color:#000 !important;
}

.site-logo-icon{
    width:64px;
    height:64px;
    display:block;
    object-fit:contain;
    flex:0 0 32px;
}

.site-logo-text{
    color:#ffffff;
    display:inline-block;
    line-height:1;
    font-size:17px;
}

@media screen and (max-width:1180px){
    body{
        padding-top:114px;
    }

    .header-frame{
        min-height:auto;
        grid-template-columns:1fr;
        padding:12px 20px 14px 20px;
        gap:12px;
    }

    .header-left,
    .header-center,
    .header-right{
        justify-content:center;
    }

    .header-center{
        flex-wrap:wrap;
        white-space:normal;
    }

    .header-right{
        flex-wrap:wrap;
    }

    .header-social{
        margin-right:0;
    }
}

@media screen and (max-width:640px){
    body{
        padding-top:134px;
    }

    .site-logo-box{
        width:100%;
        min-width:auto;
        font-size:20px;
    }

    .header-center a{
        font-size:14px;
    }

    .header-link-btn,
    .header-cta{
        font-size:12px;
        min-height:36px;
        padding:0 12px;
    }
}
