[v-cloak] { display: none !important; }

html.uni-app-ready [v-cloak] {
    display: block !important;
}

/* PC-only markup must never show on mobile (pc.css reveals it on html.device-pc) */
.pc-only {
    display: none !important;
}

.pc-site-header {
    display: none !important;
}

.uni-app-root {
    min-height: 100vh;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #262b4b;
    font-family: "PingFang SC", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #dde1e9;
}

#app {
    min-height: 100vh;
}

.uni-page {
    min-height: 100vh;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: calc(100vw * 100 / 750);
    box-sizing: border-box;
}

/* pages.css merges multiple .container rules; the User-page bundle uses top:-60rpx
   to overlap a header that our tab pages do not render — reset unless a header exists above. */
.uni-page > .container {
    top: 0;
    height: auto;
}

.uni-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    background: #1c1c1e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: calc(8 * 100vw / 750) 0 calc(16 * 100vw / 750);
    padding-bottom: calc(16 * 100vw / 750 + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
}

.uni-tabbar-item {
    flex: 1;
    text-align: center;
    color: #8e8e93;
    font-size: calc(20 * 100vw / 750);
    font-weight: 500;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.uni-tabbar-item.active {
    color: #d4b896;
}

.uni-tabbar-item img {
    width: calc(48 * 100vw / 750);
    height: calc(48 * 100vw / 750);
    display: block;
    margin: 0 auto calc(4 * 100vw / 750);
    object-fit: contain;
}

.uni-tabbar-item.mid img {
    width: calc(56 * 100vw / 750);
    height: calc(56 * 100vw / 750);
}

#uni-toast {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    max-width: 80vw;
    text-align: center;
}

#uni-toast.show {
    opacity: 1;
}

.form_input {
    width: 100%;
    border: 0;
    outline: none;
    color: #fff;
    background: transparent;
}

.form_input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.email_register_row {
    display: flex;
    align-items: center;
    gap: calc(12 * 100vw / 750);
}

.email_register_row .form_input {
    flex: 1;
}

.code_btn {
    flex-shrink: 0;
    padding: 0 calc(20 * 100vw / 750);
    height: calc(73 * 100vw / 750);
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 100%, 0.17);
    border-radius: calc(4 * 100vw / 750);
    color: #fff;
    font-size: calc(24 * 100vw / 750);
}

.modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-card {
    width: min(100%, 420px);
    background: #353963;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
}

.modal-card input {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 0;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.modal-actions button {
    flex: 1;
    height: 40px;
    border: 0;
    border-radius: 4px;
}

.record-card,
.fund-card {
    background: #353963;
    border-radius: calc(10 * 100vw / 750);
    padding: calc(20 * 100vw / 750);
    margin-bottom: calc(16 * 100vw / 750);
    color: #fff;
    font-size: calc(26 * 100vw / 750);
}

.index-page > .container {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    position: relative;
    top: 0;
}

.index-page .content {
    padding: 0 calc(26 * 100vw / 750) calc(20 * 100vw / 750);
}

.index-page .income_tr {
    cursor: pointer;
}

.index-page .tab {
    cursor: pointer;
}

.index-page .modal-mask {
    align-items: center;
    justify-content: center;
}

.index-page .modal_box {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 76vw;
    max-width: 420px;
}

.fund-page .fund-announcement-mask {
    z-index: 2100;
    align-items: center;
    justify-content: center;
}

.fund-page .fund-announcement-mask .modal_box {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 76vw;
    max-width: 420px;
}

.fund-page .modal-close-btn {
    border: 0;
    background: transparent;
    color: #828a94;
    font-size: calc(40 * 100vw / 750);
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.index-page .modal-close-btn {
    border: 0;
    background: transparent;
    color: #828a94;
    font-size: calc(40 * 100vw / 750);
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.index-page .close_box {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.banner_box {
    overflow: hidden;
}

.uni-home-swiper,
.uni-home-swiper.u-swiper-wrap {
    width: 100%;
    height: 100%;
}

.uni-swiper-track {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.uni-swiper-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.uni-swiper-slide .u-swiper-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page .notice_box .notice_list {
    width: calc(100% - calc(58 * 100vw / 750));
    position: absolute;
    top: 0;
    left: calc(28 * 100vw / 750);
    right: calc(30 * 100vw / 750);
}

.index-page .notice_box .notice_item {
    height: calc(107 * 100vw / 750);
    display: flex;
    align-items: center;
}

.index-page .income_tr_td:first-child {
    justify-content: flex-start;
    padding-left: calc(16 * 100vw / 750);
    box-sizing: border-box;
}

.index-page .tabs_box .title_item {
    position: relative;
    cursor: pointer;
}

.gold-embed-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 0;
    background: #121214;
}

html.device-pc .gold-embed-header {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

html.device-pc .gold-embed-page {
    padding-bottom: 0 !important;
}

.gold-embed-header {
    flex-shrink: 0;
    height: calc(88 * 100vw / 750);
    display: flex;
    align-items: center;
    padding: 0 calc(24 * 100vw / 750);
    background: linear-gradient(0deg, #17182b, #062e65);
    box-sizing: border-box;
}

.gold-back-btn {
    border: 0;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: calc(8 * 100vw / 750) calc(16 * 100vw / 750) calc(8 * 100vw / 750) 0;
    cursor: pointer;
}

.gold-back-btn svg {
    display: block;
}

.gold-embed-frame {
    flex: 1;
    width: 100%;
    border: 0;
    min-height: 100vh;
    min-height: 100dvh;
    background: #000000;
}

.record-embed-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: calc(100vw * 100 / 750);
    background: #252847;
}

.record-embed-frame {
    flex: 1;
    width: 100%;
    border: 0;
    min-height: calc(100vh - calc(100 * 100vw / 750));
    background: #252847;
}

.sub-page > .sub-page-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

html:not(.device-pc) .uni-page.sub-page {
    padding-top: 0;
}

.sub-page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: calc(88 * 100vw / 750);
    padding: env(safe-area-inset-top, 0) calc(24 * 100vw / 750) 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background: linear-gradient(0deg, #17182b, #062e65);
}

.sub-back {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: calc(44 * 100vw / 750);
    line-height: 1;
    padding: calc(8 * 100vw / 750) calc(16 * 100vw / 750) calc(8 * 100vw / 750) 0;
    cursor: pointer;
}

.sub-page-title {
    flex: 1;
    min-width: 0;
    margin-left: calc(4 * 100vw / 750);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: calc(32 * 100vw / 750);
    font-family: PingFang SC, sans-serif;
    font-weight: 600;
    color: #fff;
}

.fund-page .container {
    width: 100%;
    height: auto;
    padding: 0 calc(26 * 100vw / 750);
    position: relative;
    top: calc(-56 * 100vw / 750);
    box-sizing: border-box;
}

.fund-page .buy_btn,
.fund-page .TransferOut_btn,
.fund-page .detail_btn {
    cursor: pointer;
    user-select: none;
}

.fund-page .bottom_info1 {
    color: #fff;
}

.fund-buy-modal {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 76vw;
    max-width: 420px;
}

.fund-buy-modal .modal-title {
    font-size: calc(28 * 100vw / 750);
    margin-bottom: calc(16 * 100vw / 750);
}

.fund-buy-modal .modal-actions {
    display: flex;
    gap: calc(16 * 100vw / 750);
    margin-top: calc(24 * 100vw / 750);
}

.fund-buy-modal .modal-btn-cancel,
.fund-buy-modal .modal-btn-confirm {
    flex: 1;
    height: calc(72 * 100vw / 750);
    border: 0;
    border-radius: calc(8 * 100vw / 750);
    font-size: calc(26 * 100vw / 750);
}

.fund-buy-modal .modal-btn-cancel {
    background: #565c7f;
    color: #fff;
}

.fund-buy-modal .modal-btn-confirm {
    background: linear-gradient(180deg, #25a8ed, #2c7bd9);
    color: #fff;
}

.assets-page.uni-page {
    background: #1c1c1e;
    padding-bottom: calc(100vw * 100 / 750);
}

.assets-profile {
    display: flex;
    align-items: center;
    gap: calc(20 * 100vw / 750);
    padding: calc(28 * 100vw / 750) calc(28 * 100vw / 750) calc(24 * 100vw / 750);
    padding-top: calc(env(safe-area-inset-top, 0px) + calc(28 * 100vw / 750));
    background: #1c1c1e;
    cursor: pointer;
    border: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.assets-profile-avatar {
    flex-shrink: 0;
    width: calc(96 * 100vw / 750);
    height: calc(96 * 100vw / 750);
    border-radius: 50%;
    overflow: hidden;
    background: #3a3a3c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assets-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.assets-profile-placeholder {
    font-size: calc(40 * 100vw / 750);
    line-height: 1;
    opacity: 0.85;
}

.assets-profile-meta {
    flex: 1;
    min-width: 0;
}

.assets-profile-name {
    font-size: calc(36 * 100vw / 750);
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.assets-profile-score {
    margin-top: calc(8 * 100vw / 750);
    font-size: calc(24 * 100vw / 750);
    color: #8e8e93;
}

.assets-profile-chevron {
    flex-shrink: 0;
    color: #8e8e93;
}

.assets-body {
    padding: 0 calc(28 * 100vw / 750) calc(24 * 100vw / 750);
}

.assets-balance-card {
    margin-bottom: calc(28 * 100vw / 750);
    padding: calc(32 * 100vw / 750) calc(28 * 100vw / 750);
    border-radius: calc(20 * 100vw / 750);
    background: linear-gradient(135deg, #f8e4c8 0%, #e8c89a 45%, #d4a86a 100%);
    box-shadow: 0 calc(8 * 100vw / 750) calc(24 * 100vw / 750) rgba(0, 0, 0, 0.18);
}

.assets-balance-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(12 * 100vw / 750);
    margin-bottom: calc(20 * 100vw / 750);
}

.assets-balance-label {
    font-size: calc(26 * 100vw / 750);
    color: rgba(28, 28, 30, 0.72);
    font-weight: 500;
}

.assets-balance-eye {
    border: 0;
    background: transparent;
    color: rgba(28, 28, 30, 0.65);
    padding: calc(4 * 100vw / 750);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.assets-balance-value {
    font-size: calc(56 * 100vw / 750);
    font-weight: 700;
    color: #1c1c1e;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.assets-menu {
    display: flex;
    flex-direction: column;
    gap: calc(4 * 100vw / 750);
}

.assets-menu-item {
    display: flex;
    align-items: center;
    gap: calc(20 * 100vw / 750);
    width: 100%;
    padding: calc(26 * 100vw / 750) calc(8 * 100vw / 750);
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    border-radius: calc(12 * 100vw / 750);
}

.assets-menu-item:active {
    background: rgba(255, 255, 255, 0.04);
}

.assets-menu-icon {
    flex-shrink: 0;
    width: calc(44 * 100vw / 750);
    height: calc(44 * 100vw / 750);
    display: flex;
    align-items: center;
    justify-content: center;
}

.assets-menu-icon img {
    width: calc(40 * 100vw / 750);
    height: calc(40 * 100vw / 750);
    object-fit: contain;
    filter: sepia(1) saturate(4) hue-rotate(5deg) brightness(1.1);
}

.assets-menu-text {
    flex: 1;
    min-width: 0;
    font-size: calc(28 * 100vw / 750);
    color: #f2f2f7;
    font-weight: 400;
}

.assets-menu-chevron {
    flex-shrink: 0;
    color: #636366;
}

.assets-menu--settings {
    margin-top: calc(4 * 100vw / 750);
}

.assets-menu-icon--svg {
    color: #d4a574;
}

.assets-menu-icon--svg svg {
    display: block;
}

.assets-menu-suffix {
    flex-shrink: 0;
    font-size: calc(26 * 100vw / 750);
    color: #8e8e93;
    margin-right: calc(4 * 100vw / 750);
}

.assets-exit {
    display: block;
    width: 100%;
    margin-top: calc(36 * 100vw / 750);
    padding: calc(24 * 100vw / 750);
    border: 0;
    border-radius: calc(14 * 100vw / 750);
    background: linear-gradient(90deg, #f8e4c8 0%, #e8c89a 45%, #d4a86a 100%);
    color: #1c1c1e;
    font-size: calc(30 * 100vw / 750);
    font-weight: 600;
    text-transform: lowercase;
    cursor: pointer;
}

.bank-bind-page.sub-page,
.security-settings-page.sub-page {
    min-height: 100vh;
    background: #0d0d0f;
}

.bank-bind-page .sub-page-header,
.security-settings-page .sub-page-header {
    background: #0d0d0f;
}

.bank-bind-body,
.security-settings-body {
    padding: calc(24 * var(--shell-vw, 100vw) / 750);
}

.bank-bind-card {
    background: #1c1c1e;
    border-radius: calc(16 * var(--shell-vw, 100vw) / 750);
    padding: calc(28 * var(--shell-vw, 100vw) / 750);
}

.bank-bind-field {
    margin-bottom: calc(20 * var(--shell-vw, 100vw) / 750);
}

.bank-bind-field label {
    display: block;
    margin-bottom: calc(8 * var(--shell-vw, 100vw) / 750);
    font-size: calc(26 * var(--shell-vw, 100vw) / 750);
    color: #8e8e93;
}

.bank-bind-field input {
    width: 100%;
    height: calc(72 * var(--shell-vw, 100vw) / 750);
    padding: 0 calc(20 * var(--shell-vw, 100vw) / 750);
    border: 0;
    border-radius: calc(8 * var(--shell-vw, 100vw) / 750);
    background: #2a2d4a;
    color: #fff;
    font-size: calc(28 * var(--shell-vw, 100vw) / 750);
    box-sizing: border-box;
}

.bank-bind-save {
    width: 100%;
    margin-top: calc(12 * var(--shell-vw, 100vw) / 750);
    padding: calc(22 * var(--shell-vw, 100vw) / 750);
    border: 0;
    border-radius: calc(12 * var(--shell-vw, 100vw) / 750);
    background: linear-gradient(180deg, #25a8ed, #2c7bd9);
    color: #fff;
    font-size: calc(28 * var(--shell-vw, 100vw) / 750);
    cursor: pointer;
    box-sizing: border-box;
}

.security-settings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: calc(104 * var(--shell-vw, 100vw) / 750);
    padding: 0 calc(8 * var(--shell-vw, 100vw) / 750);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: #f2f2f7;
    font-size: calc(28 * var(--shell-vw, 100vw) / 750);
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
}

.security-settings-row .assets-menu-chevron {
    flex-shrink: 0;
    width: calc(36 * var(--shell-vw, 100vw) / 750);
    height: calc(36 * var(--shell-vw, 100vw) / 750);
}

.assets-auth-actions {
    display: flex;
    gap: calc(16 * 100vw / 750);
    margin-top: calc(36 * 100vw / 750);
}

.assets-auth-btn {
    flex: 1;
    padding: calc(22 * 100vw / 750);
    border: 0;
    border-radius: calc(12 * 100vw / 750);
    background: linear-gradient(180deg, #25a8ed, #2c7bd9);
    color: #fff;
    font-size: calc(28 * 100vw / 750);
    cursor: pointer;
}

.assets-auth-btn--outline {
    background: rgba(255, 255, 255, 0.08);
    color: #f2f2f7;
}

.wallet-address-page.sub-page {
    min-height: 100vh;
    background: #0d0d0f;
}

.wallet-address-page .sub-page-header {
    background: #0d0d0f;
}

.wallet-address-header {
    justify-content: flex-start;
}

.wallet-address-filter {
    margin-left: auto;
    padding: calc(8 * var(--shell-vw, 100vw) / 750) calc(20 * var(--shell-vw, 100vw) / 750);
    border-radius: calc(999 * var(--shell-vw, 100vw) / 750);
    background: rgba(255, 255, 255, 0.08);
    color: #f2f2f7;
    font-size: calc(24 * var(--shell-vw, 100vw) / 750);
    flex-shrink: 0;
    white-space: nowrap;
}

.wallet-address-body {
    padding: calc(20 * var(--shell-vw, 100vw) / 750) calc(24 * var(--shell-vw, 100vw) / 750) calc(40 * var(--shell-vw, 100vw) / 750);
}

.wallet-address-card {
    display: flex;
    align-items: center;
    gap: calc(20 * var(--shell-vw, 100vw) / 750);
    width: 100%;
    padding: calc(24 * var(--shell-vw, 100vw) / 750);
    border: 0;
    border-radius: calc(16 * var(--shell-vw, 100vw) / 750);
    background: #1c1c1e;
    cursor: pointer;
    text-align: left;
}

.wallet-address-icon-wrap {
    flex-shrink: 0;
    width: calc(88 * var(--shell-vw, 100vw) / 750);
    height: calc(88 * var(--shell-vw, 100vw) / 750);
    border-radius: calc(12 * var(--shell-vw, 100vw) / 750);
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-address-icon {
    font-size: calc(40 * var(--shell-vw, 100vw) / 750);
    font-weight: 700;
    color: #fbbf24;
}

.wallet-address-meta {
    flex: 1;
    min-width: 0;
}

.wallet-address-name {
    font-size: calc(30 * var(--shell-vw, 100vw) / 750);
    font-weight: 600;
    color: #fff;
    margin-bottom: calc(8 * var(--shell-vw, 100vw) / 750);
}

.wallet-address-value {
    font-size: calc(24 * var(--shell-vw, 100vw) / 750);
    color: #ef4444;
    word-break: break-all;
    line-height: 1.4;
}

.wallet-address-network {
    margin-top: calc(6 * var(--shell-vw, 100vw) / 750);
    font-size: calc(22 * var(--shell-vw, 100vw) / 750);
    color: #8e8e93;
}

.wallet-address-empty {
    padding: calc(80 * var(--shell-vw, 100vw) / 750) calc(24 * var(--shell-vw, 100vw) / 750);
    text-align: center;
    color: #8e8e93;
    font-size: calc(28 * var(--shell-vw, 100vw) / 750);
}

.wallet-address-empty p {
    margin: 0;
}

.wallet-address-add-btn,
.wallet-address-edit-btn {
    display: block;
    width: 100%;
    margin-top: calc(24 * var(--shell-vw, 100vw) / 750);
    padding: calc(22 * var(--shell-vw, 100vw) / 750);
    border: 0;
    border-radius: calc(12 * var(--shell-vw, 100vw) / 750);
    background: linear-gradient(180deg, #25a8ed, #2c7bd9);
    color: #fff;
    font-size: calc(28 * var(--shell-vw, 100vw) / 750);
    cursor: pointer;
    box-sizing: border-box;
}

.wallet-address-modal .wallet-form-field {
    margin-bottom: calc(20 * var(--shell-vw, 100vw) / 750);
}

.wallet-address-modal label {
    display: block;
    margin-bottom: calc(8 * var(--shell-vw, 100vw) / 750);
    font-size: calc(26 * var(--shell-vw, 100vw) / 750);
    color: #d2d4e8;
}

.wallet-form-input,
.wallet-form-select {
    width: 100%;
    height: calc(72 * var(--shell-vw, 100vw) / 750);
    padding: 0 calc(20 * var(--shell-vw, 100vw) / 750);
    border: 0;
    border-radius: calc(8 * var(--shell-vw, 100vw) / 750);
    background: #2a2d4a;
    color: #fff;
    font-size: calc(28 * var(--shell-vw, 100vw) / 750);
    box-sizing: border-box;
}

.withdrawal-usdt-info .withdrawal-usdt-address strong {
    color: #ef4444;
    word-break: break-all;
}

.withdrawal-wallet-link {
    display: inline-block;
    margin-top: calc(12 * 100vw / 750);
    border: 0;
    background: transparent;
    color: #25a8ed;
    font-size: calc(26 * 100vw / 750);
    cursor: pointer;
    text-decoration: underline;
}

.personal-info-page.sub-page {
    min-height: 100vh;
    background: #0d0d0f;
}

.personal-info-page .sub-page-header {
    background: #0d0d0f;
}

.personal-info-title {
    text-transform: lowercase;
    font-weight: 500;
}

.personal-info-body {
    padding-top: calc(8 * 100vw / 750);
}

.personal-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: calc(104 * 100vw / 750);
    padding: 0 calc(28 * 100vw / 750);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.personal-info-label {
    font-size: calc(28 * 100vw / 750);
    color: #f2f2f7;
    text-transform: lowercase;
}

.personal-info-value {
    display: inline-flex;
    align-items: center;
    gap: calc(12 * 100vw / 750);
    min-width: 0;
}

.personal-info-text {
    font-size: calc(28 * 100vw / 750);
    color: #8e8e93;
    max-width: calc(360 * 100vw / 750);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.personal-info-chevron {
    flex-shrink: 0;
    color: #636366;
}

.personal-info-avatar {
    width: calc(64 * 100vw / 750);
    height: calc(64 * 100vw / 750);
    border-radius: 50%;
    overflow: hidden;
    background: #3a3a3c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.personal-info-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personal-info-avatar-placeholder {
    font-size: calc(28 * 100vw / 750);
}

.personal-info-file {
    display: none;
}

.personal-info-input {
    width: 100%;
    height: calc(72 * 100vw / 750);
    margin-bottom: calc(20 * 100vw / 750);
    padding: 0 calc(20 * 100vw / 750);
    border: 0;
    border-radius: calc(8 * 100vw / 750);
    background: #2a2d4a;
    color: #fff;
    font-size: calc(28 * 100vw / 750);
    box-sizing: border-box;
}

.personal-info-page.sub-page {
    min-height: 100vh;
    background: #0d0d0f;
}

.personal-info-page .sub-page-header {
    background: #0d0d0f;
}

.personal-info-page .sub-page-title {
    text-transform: lowercase;
    font-weight: 500;
}

.personal-info-body {
    padding-top: calc(8 * 100vw / 750);
}

.personal-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: calc(104 * 100vw / 750);
    padding: 0 calc(28 * 100vw / 750);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
}

.personal-info-label {
    font-size: calc(28 * 100vw / 750);
    color: #f2f2f7;
    text-transform: lowercase;
}

.personal-info-value {
    display: inline-flex;
    align-items: center;
    gap: calc(12 * 100vw / 750);
    min-width: 0;
}

.personal-info-text {
    font-size: calc(28 * 100vw / 750);
    color: #8e8e93;
    max-width: calc(360 * 100vw / 750);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.personal-info-avatar {
    width: calc(64 * 100vw / 750);
    height: calc(64 * 100vw / 750);
    border-radius: 50%;
    overflow: hidden;
    background: #3a3a3c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.personal-info-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personal-info-avatar-placeholder {
    font-size: calc(28 * 100vw / 750);
}

.personal-info-chevron {
    flex-shrink: 0;
    color: #636366;
}

.personal-info-file-input {
    display: none;
}

.personal-info-input {
    width: 100%;
    height: calc(72 * 100vw / 750);
    margin-bottom: calc(20 * 100vw / 750);
    padding: 0 calc(20 * 100vw / 750);
    border: 0;
    border-radius: calc(8 * 100vw / 750);
    background: #2a2d4a;
    color: #fff;
    font-size: calc(28 * 100vw / 750);
    box-sizing: border-box;
}

.spot-page .container {
    width: 100%;
    padding: calc(24 * 100vw / 750) calc(26 * 100vw / 750) calc(120 * 100vw / 750);
    box-sizing: border-box;
}

.spot-page-title {
    font-size: calc(32 * 100vw / 750);
    font-weight: 600;
    color: #fff;
    margin-bottom: calc(24 * 100vw / 750);
}

.spot-page-line {
    width: calc(60 * 100vw / 750);
    height: calc(4 * 100vw / 750);
    margin-top: calc(10 * 100vw / 750);
    background: linear-gradient(180deg, #25a8ed, #2c7bd9);
    border-radius: calc(2 * 100vw / 750);
}

.spot-empty {
    padding: calc(40 * 100vw / 750) calc(20 * 100vw / 750);
    text-align: center;
    color: #999bb1;
    font-size: calc(26 * 100vw / 750);
}

.about-us-page .container {
    width: 100%;
    padding: calc(24 * 100vw / 750) calc(26 * 100vw / 750) calc(40 * 100vw / 750);
    box-sizing: border-box;
}

.about-us-page .about-us-panel {
    width: 100%;
}

.about-us-page .about-image {
    width: 100%;
    display: block;
    border-radius: calc(10 * 100vw / 750);
}

.about-us-page .about-content {
    background: #353963;
    border-radius: calc(10 * 100vw / 750);
    padding: calc(28 * 100vw / 750) calc(24 * 100vw / 750);
    color: #d2d4e8;
    font-size: calc(28 * 100vw / 750);
    line-height: 1.7;
    word-break: break-word;
}

.fund-custody-page.sub-page {
    min-height: 100vh;
    background: #262b4b;
}

.fund-custody-page .container {
    width: 100%;
    padding: calc(24 * 100vw / 750) calc(26 * 100vw / 750) calc(40 * 100vw / 750);
    box-sizing: border-box;
}

.fund-custody-card {
    background: #353963;
    border-radius: calc(12 * 100vw / 750);
    padding: calc(30 * 100vw / 750) calc(28 * 100vw / 750);
    display: flex;
    align-items: center;
    gap: calc(40 * 100vw / 750);
}

.fund-custody-pic {
    width: calc(154 * 100vw / 750);
    height: calc(154 * 100vw / 750);
    object-fit: cover;
    border-radius: calc(8 * 100vw / 750);
    flex-shrink: 0;
}

.fund-custody-name {
    margin: 0 0 calc(12 * 100vw / 750);
    font-size: calc(32 * 100vw / 750);
    font-weight: 600;
    color: #fff;
}

.fund-custody-row {
    font-size: calc(26 * 100vw / 750);
    color: #c1c4e2;
    line-height: 1.6;
}

.fund-custody-row strong {
    color: #fff;
    font-weight: 500;
}

.fund-custody-meta {
    display: flex;
    justify-content: space-between;
    gap: calc(16 * 100vw / 750);
    flex-wrap: wrap;
    margin-top: calc(20 * 100vw / 750);
    padding: calc(20 * 100vw / 750) calc(28 * 100vw / 750);
    background: #353963;
    border-radius: calc(12 * 100vw / 750);
    font-size: calc(24 * 100vw / 750);
    color: #fff;
}

.fund-custody-meta em {
    font-style: normal;
    color: #7377a8;
}

.fund-custody-buy {
    display: block;
    width: 100%;
    height: calc(73 * 100vw / 750);
    margin: calc(30 * 100vw / 750) auto 0;
    border: calc(1 * 100vw / 750) solid #298de1;
    border-radius: calc(4 * 100vw / 750);
    background: linear-gradient(180deg, #25a8ed, #2c7bd9);
    color: #fff;
    font-size: calc(26 * 100vw / 750);
    font-weight: 500;
    cursor: pointer;
}

.fund-custody-intro {
    margin-top: calc(30 * 100vw / 750);
    padding: calc(20 * 100vw / 750);
    border: 2px solid #353963;
    border-radius: calc(10 * 100vw / 750);
    color: #fff;
    font-size: calc(24 * 100vw / 750);
    line-height: 1.6;
    word-break: break-word;
}

.fund-custody-empty {
    padding: calc(40 * 100vw / 750) 0;
    text-align: center;
    color: #999bb1;
    font-size: calc(26 * 100vw / 750);
}

.fund-custody-page .fund-buy-modal {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 76vw;
    max-width: 420px;
}

.about-us-page .about-content p {
    margin: 0 0 calc(16 * 100vw / 750);
}

.about-us-page .about-empty {
    padding: calc(40 * 100vw / 750) calc(20 * 100vw / 750);
    text-align: center;
    color: #999bb1;
    font-size: calc(26 * 100vw / 750);
}

.myteam-page.sub-page {
    min-height: 100vh;
    background: #262b4b;
}

.myteam-page.sub-page > .sub-page-header {
    position: relative;
}

.placeholder-page.sub-page {
    min-height: 100vh;
    background: #262b4b;
}

.placeholder-page.sub-page > .sub-page-header {
    position: relative;
}

.myteam-page.uni-page {
    overflow-x: hidden;
}

.myteam-page .container {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    margin-top: 0;
    padding: calc(24 * 100vw / 750) calc(26 * 100vw / 750) calc(120 * 100vw / 750);
    padding-top: calc(24 * 100vw / 750);
    box-sizing: border-box;
    overflow: visible;
}

.myteam-page .commission_box {
    margin-top: 0;
}

.myteam-page .commission_box .commission_info {
    padding-top: calc(36 * 100vw / 750);
}

.myteam-page .commission_vline {
    width: calc(2 * 100vw / 750);
    height: calc(156 * 100vw / 750);
    background: #7377a4;
    flex-shrink: 0;
}

.myteam-page .detail_btn,
.myteam-page .transfer_btn,
.myteam-page .copy_btn,
.myteam-page .team_title span:last-child {
    cursor: pointer;
    border: 0;
}

.myteam-page .copy_input {
    border: 0;
    background: transparent;
    outline: none;
}

/* Auth page toolbar (login / register) */
.auth-page-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) calc(12px + env(safe-area-inset-right, 0px)) 10px calc(12px + env(safe-area-inset-left, 0px));
    pointer-events: none;
}

.auth-page-toolbar > * {
    pointer-events: auto;
}

.auth-toolbar-kefu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #2a3f6e;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 8px 20px rgba(42, 80, 153, 0.12);
    cursor: pointer;
}

.auth-toolbar-kefu-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.auth-toolbar-kefu-text {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

html.device-pc .auth-page-toolbar {
    position: absolute;
    top: 16px;
    right: 24px;
    left: auto;
    padding: 0;
    width: auto;
}

html.device-pc .auth-page.auth-page {
    position: relative;
}

html.device-pc .auth-toolbar-kefu-text {
    max-width: none;
}

html.device-mobile .auth-page .container {
    padding-top: calc(72px + env(safe-area-inset-top, 0px)) !important;
}

/* Language switcher (top-right) */
.uni-lang-switcher {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    right: calc(12px + env(safe-area-inset-right, 0px));
    z-index: 10002;
}

.uni-lang-switcher--inline {
    position: static;
    top: auto;
    right: auto;
}

.uni-lang-flag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 1.35rem;
    line-height: 1;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(42, 80, 153, 0.12);
    cursor: pointer;
}

.language-overlay {
    position: fixed;
    inset: 0;
    z-index: 10003;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: calc(env(safe-area-inset-top, 0px) + 56px) 14px 14px;
    background: rgba(21, 24, 33, 0.42);
}

.language-sheet {
    width: min(100%, 420px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 26px 60px rgba(17, 34, 68, 0.22);
}

.language-option {
    width: 100%;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    color: #353740;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #eef1f7;
    cursor: pointer;
}

.language-option:last-child {
    border-bottom: 0;
}

.language-option.active {
    background: #f5f8ff;
}

.language-flag {
    font-size: 1.75rem;
    line-height: 1;
}

.language-name {
    font-size: 1rem;
    font-weight: 600;
}

.language-option.active::after {
    content: '✓';
    color: #2e7dc8;
    font-size: 1rem;
    font-weight: 800;
}

.language-fade-enter-active,
.language-fade-leave-active {
    transition: opacity 0.2s ease;
}

.language-fade-enter-from,
.language-fade-leave-to {
    opacity: 0;
}
