.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: #FADC44;
    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: #FADC44;
    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: #FADC44;
    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: flex-start;
    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-label {
    text-align: center;
    color: #A3A3A3;
    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: #A3A3A3;
    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;
    }
}
