.nav-page-body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden auto;
    background: #0A0A0A url("/static/images/nav_bg_h5.png") no-repeat center / cover;
}

.nav-page {
    position: relative;
    z-index: 1;
    width: 375px;
    max-width: 100%;
    padding: calc(12px + env(safe-area-inset-top, 0px)) 28px 12px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    display: flex;
    box-sizing: border-box;
}

.nav-page-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-brand {
    width: 319px;
    max-width: 100%;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    display: flex;
}

.nav-brand-lockup {
    justify-content: flex-start;
    align-items: center;
    display: inline-flex;
}

.nav-brand-logo {
    width: 133px;
    height: auto;
    display: block;
}

.nav-brand-tagline {
    text-align: center;
    color: #8A8A8A;
    font-size: 14px;
    font-family: PingFang SC, sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.nav-brand-highlight {
    text-align: center;
    color: #FF4B02;
    font-size: 18px;
    font-family: PingFang SC, sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

.nav-entries {
    width: 319px;
    max-width: 100%;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
    display: flex;
}

.nav-entry {
    width: 100%;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.10);
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    display: flex;
    text-decoration: none;
    box-sizing: border-box;
}

.nav-entry-name {
    text-align: center;
    color: #F5F5F5;
    font-size: 14px;
    font-family: PingFang SC, sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.nav-entry-url {
    text-align: center;
    color: #FF4B02;
    font-size: 14px;
    font-family: PingFang SC, sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.nav-banner {
    width: 319px;
    max-width: 100%;
    height: 64px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
    text-decoration: none;
}

.nav-banner-bg {
    width: 100%;
    height: 64px;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.nav-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.nav-banner-text {
    left: 0;
    right: 0;
    top: 21px;
    position: absolute;
    z-index: 1;
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: PingFang SC, sans-serif;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
}

.nav-contact {
    text-align: center;
    color: #FF4B02;
    font-size: 12px;
    font-family: PingFang SC, sans-serif;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    text-decoration: none;
    width: 319px;
    max-width: 100%;
}

.nav-icons {
    width: 319px;
    max-width: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    display: flex;
    flex-wrap: nowrap;
}

.nav-icon-item {
    width: 61px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    display: inline-flex;
    text-decoration: none;
}

.nav-icon-circle {
    padding: 7px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    display: inline-flex;
}

.nav-icon-svg,
.nav-icon-img {
    width: 16px;
    height: 16px;
    display: block;
}

.nav-icon-img--app {
    width: 18px;
    height: 18px;
}

.nav-icon-label {
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-family: PingFang SC, sans-serif;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

.nav-footer {
    width: 319px;
    max-width: 100%;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    display: flex;
}

.nav-footer-note,
.nav-footer-copy {
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-family: PingFang SC, sans-serif;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

.nav-footer-copy {
    width: 100%;
    height: 18px;
}

@media (min-width: 768px) {
    .nav-page-body {
        align-items: center;
        padding: 48px 16px;
        box-sizing: border-box;
        min-height: 100vh;
        background-image: url("/static/images/nav_bg.png");
    }

    .nav-page {
        padding: 12px 28px;
        margin: 0 auto;
    }
}

.nav-page-body { margin:0; background:#242424 url('/static/images/site/nav-background.png') center/cover no-repeat fixed; }
.nav-brand-logo { width:180px; height:auto; }
.nav-brand { gap:12px; }
.nav-entry { position:relative; align-items:flex-start; height:64px; border:0; background:rgba(255,255,255,.05); }
.nav-entry-name,.nav-entry-url { text-align:left; max-width:215px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.nav-entry-cta { position:absolute; right:16px; top:20px; color:#ff4b02; border:1px solid #ff4b02; border-radius:20px; padding:3px 8px; font-size:10px; line-height:16px; }
.nav-entry:has(.nav-entry-cta) .nav-entry-name,.nav-entry:has(.nav-entry-cta) .nav-entry-url { max-width:210px; padding-right:45px; }
.nav-entry--permanent { align-items:center; border:1px solid rgba(255,255,255,.1); background:rgba(255,75,2,.06); }
.nav-entry--permanent .nav-entry-url,.nav-entry--permanent .nav-entry-name { text-align:center; max-width:100%; }
.nav-entry:hover { background:rgba(255,75,2,.1); }
.nav-page :is(a,button):focus-visible { outline:2px solid #ff4b02; outline-offset:3px; }
@media(min-width:768px) { .nav-page-body { background-image:url('/static/images/site/nav-background.png'); } }
