/* ===== Global Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #d0d0d0;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

:root {
    --app-max-width: 100vw;
    --page-side-gutter: clamp(10px, 1.8vw, 18px);
    --app-shell-width: min(calc(100vw - (var(--page-side-gutter) * 2)), var(--app-max-width));
    --app-shell-offset: max(var(--page-side-gutter), calc((100vw - var(--app-shell-width)) / 2));
    --top-bar-height: 68px;
    --top-bar-offset: calc(var(--top-bar-height) + env(safe-area-inset-top, 0px));
}

/* ===== Top Bar ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px var(--page-side-gutter);
    min-height: var(--top-bar-height);
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.96) 0%, rgba(10, 16, 28, 0.88) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
}

.top-bar-section {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.top-bar-left {
    flex: 1;
}

.top-bar-right {
    justify-content: flex-end;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    user-select: none;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    background: rgba(45, 53, 70, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lang-flag {
    width: 22px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #1a1a1a;
}

.lang-text {
    color: #f2f4f8;
    font-size: 14px;
    font-weight: 600;
}

.lang-arrow {
    color: #a5afbe;
    font-size: 10px;
}

.dapp-top-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(45, 53, 70, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #eef2f8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dapp-top-pill-badge {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    color: #ffffff;
}

.dapp-top-pill-badge-eth {
    background: radial-gradient(circle at 30% 30%, #8597ff 0%, #5265d8 45%, #35438f 100%);
}

.dapp-top-pill-badge-usdt {
    background: radial-gradient(circle at 30% 30%, #65d7af 0%, #24b17e 45%, #12875d 100%);
}

.dapp-top-pill-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.dapp-top-pill-arrow {
    color: #b7c0cf;
    font-size: 10px;
}

.wallet-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    max-width: 220px;
    min-height: 46px;
    background: rgba(45, 53, 70, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 16px 0 12px;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.wallet-dropdown:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

.wallet-dropdown:not(.connected) {
    max-width: none;
    background: #f0c53e;
    border-color: #f0c53e;
    padding: 0 22px;
    box-shadow: 0 10px 22px rgba(240, 197, 62, 0.18);
}

.wallet-dropdown:not(.connected):hover {
    border-color: #f0b90b;
    background: #f3c32a;
}

.wallet-dropdown:not(.connected) .wallet-icon-small,
.wallet-dropdown:not(.connected) .dropdown-arrow {
    display: none;
}

.wallet-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wallet-icon-badge {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: visible;
}

.wallet-icon-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

#walletAddress {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #e7e7e7;
    font-size: 12px;
    font-family: monospace;
    font-weight: 600;
}

.wallet-dropdown:not(.connected) #walletAddress {
    color: #ffffff;
    font-family: inherit;
    font-weight: 700;
}

.dropdown-arrow {
    color: #9a9a9a;
    font-size: 10px;
    flex-shrink: 0;
}

.wallet-dropdown.connected .dropdown-arrow {
    display: none;
}

.wallet-dropdown.connected {
    border-color: rgba(255, 255, 255, 0.12);
    max-width: 220px;
    padding-right: 12px;
}

.wallet-dropdown.connected #walletAddress {
    color: #f5f5f5;
    font-weight: 700;
}

.wallet-dropdown.connected .dropdown-arrow {
    color: #b9b9b9;
}

/* Language Dropdown */
.lang-dropdown {
    position: fixed;
    top: calc(var(--top-bar-offset) + 6px);
    left: var(--app-shell-offset);
    z-index: 400;
    background: #111111;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    padding: 8px 0;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s;
    color: #d0d0d0;
    font-size: 14px;
}

.lang-option:hover {
    background: rgba(240, 185, 11, 0.1);
}

.lang-option.active {
    background: rgba(240, 185, 11, 0.15);
    color: #f0b90b;
    font-weight: 600;
}

.lang-flag-icon {
    width: 22px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #1a1a1a;
}

.lang-flag-img,
.lang-flag-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lang-flag-img-fallback,
.lang-flag-icon-img-fallback {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
}

/* ===== Page Container ===== */
.page-container {
    width: 100%;
    max-width: var(--app-shell-width);
    margin: 0 auto;
    padding-top: calc(var(--top-bar-offset) + 12px);
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    min-height: calc(100vh - var(--top-bar-offset));
}

.page {
    display: none;
}

.page.active {
    display: block !important;
}

.bottom-spacer {
    height: 30px;
}

/* ===== Section Title ===== */
.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f0b90b;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 14px 10px;
    letter-spacing: 0;
    line-height: 1.2;
}

.section-title::before {
    content: '';
    width: 2px;
    height: 16px;
    border-radius: 999px;
    background: #f0b90b;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.2);
    flex-shrink: 0;
}

.content-section-block {
    margin-top: 12px;
}

.content-section-block .section-title {
    padding-bottom: 10px;
}

/* ===== HOME PAGE ===== */

#page-home {
    --home-card-gutter: var(--page-side-gutter);
    --home-banner-image-position: 82% center;
    --home-banner-image-size: auto 112%;
}

/* Banner */
.banner-section {
    padding: 0;
}

.main-banner {
    margin: var(--home-card-gutter);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(1, 8, 22, 0.88) 0%, rgba(3, 18, 42, 0.72) 28%, rgba(4, 16, 39, 0.3) 55%, rgba(4, 13, 34, 0.1) 100%),
        linear-gradient(180deg, rgba(14, 33, 72, 0.18) 0%, rgba(3, 11, 27, 0.14) 48%, rgba(1, 7, 18, 0.22) 100%),
        url("/audit/banner-2.webp");
    background-position: left center, center, var(--home-banner-image-position);
    background-repeat: no-repeat;
    background-size: cover, cover, var(--home-banner-image-size);
    border: 1px solid rgba(34, 110, 172, 0.28);
    border-radius: 22px;
    padding: 22px 22px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
    min-height: 312px;
    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(142, 255, 236, 0.05),
        inset 0 -1px 0 rgba(9, 33, 44, 0.45);
}

.main-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(1, 7, 18, 0.78) 0%, rgba(1, 7, 18, 0.58) 22%, rgba(1, 7, 18, 0.16) 46%, rgba(1, 7, 18, 0) 64%),
        radial-gradient(circle at 66% 42%, rgba(76, 235, 255, 0.16), transparent 20%),
        radial-gradient(circle at 63% 74%, rgba(67, 182, 255, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.24) 100%);
    pointer-events: none;
}

.main-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        inset 10px 0 18px rgba(0, 0, 0, 0.06),
        inset -10px 0 18px rgba(0, 0, 0, 0.06),
        inset 0 -14px 24px rgba(0, 0, 0, 0.14);
}

.banner-glow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(58, 188, 255, 0.09), transparent 30%),
        linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.46) 88%),
        radial-gradient(circle at 74% 28%, rgba(90, 238, 255, 0.2), transparent 17%),
        radial-gradient(circle at 82% 58%, rgba(55, 140, 255, 0.11), transparent 16%),
        radial-gradient(circle at 18% 90%, rgba(0, 0, 0, 0.62), transparent 44%);
    pointer-events: none;
}

.banner-arc {
    position: absolute;
    border-radius: 50%;
    border: 12px solid rgba(255, 255, 255, 0.13);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(24deg);
    pointer-events: none;
    filter: blur(0.4px);
}

.banner-arc-one {
    width: 260px;
    height: 176px;
    right: -106px;
    bottom: -8px;
}

.banner-arc-two {
    width: 210px;
    height: 138px;
    right: -64px;
    bottom: 24px;
    border-width: 8px;
    border-color: rgba(255, 255, 255, 0.1);
    border-left-color: transparent;
    border-bottom-color: transparent;
    opacity: 0.72;
}

.banner-text,
.banner-visual {
    position: relative;
    z-index: 1;
}

.banner-text {
    width: min(55%, 236px);
    padding-top: 2px;
}

.banner-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.banner-brand-mark {
    width: 30px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-brand-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.banner-brand-text {
    color: #f0b90b;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1;
    text-transform: none;
    text-shadow: 0 0 18px rgba(240, 185, 11, 0.16);
}

.banner-text h2 {
    color: #f5f5f5;
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 700;
    line-height: 1.44;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.banner-text p {
    max-width: 196px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(12px, 3.7vw, 14px);
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.btn-join {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    min-height: 42px;
    padding: 0 20px;
    background: #f0b90b;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: clamp(15px, 4.3vw, 17px);
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, min-width 0.2s ease, padding 0.2s ease;
    box-shadow: 0 12px 24px rgba(240, 185, 11, 0.2);
}

.btn-join:hover {
    opacity: 0.92;
}

.btn-join:disabled {
    cursor: default;
    opacity: 1;
}

.btn-join-label {
    display: inline-flex;
    align-items: center;
}

.btn-join-spinner {
    width: 14px;
    height: 14px;
    display: none;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.34);
    border-top-color: #ffffff;
    animation: join-spin 0.8s linear infinite;
}

.btn-join.is-loading .btn-join-spinner {
    display: inline-flex;
}

@keyframes join-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.banner-visual {
    display: none;
}

.banner-phone {
    position: absolute;
    right: 0;
    top: 14px;
    width: 132px;
    height: 202px;
    border-radius: 28px;
    background: linear-gradient(160deg, #5a646e 0%, #252d38 20%, #0d1118 80%, #05080d 100%);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.48);
    transform: rotate(8deg);
}

.banner-phone::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(28, 33, 40, 0.96), rgba(9, 12, 17, 0.98));
}

.banner-phone-screen {
    position: absolute;
    inset: 10px 9px;
    border-radius: 20px;
    padding: 12px 11px;
    background: linear-gradient(180deg, #1b222b 0%, #0f141c 100%);
    overflow: hidden;
}

.banner-phone-topbar,
.banner-phone-search,
.banner-phone-row,
.banner-phone-list span {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.banner-phone-topbar {
    width: 28px;
    height: 4px;
    margin: 0 auto 16px;
}

.banner-phone-search {
    width: 62px;
    height: 8px;
    margin-bottom: 16px;
}

.banner-phone-row {
    width: 82px;
    height: 10px;
    margin-bottom: 10px;
}

.banner-phone-row-wide {
    width: 96px;
}

.banner-phone-row-short {
    width: 58px;
}

.banner-phone-list {
    margin-top: 18px;
}

.banner-phone-list span {
    width: 100%;
    height: 23px;
    border-radius: 11px;
    margin-bottom: 9px;
}

.banner-phone-screen::after {
    content: '';
    position: absolute;
    inset: auto -8px 16px auto;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.3), transparent 70%);
}

.banner-coin {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.26);
    font-weight: 700;
}

.banner-coin-btc {
    top: 34px;
    right: 70px;
    width: 62px;
    height: 62px;
    background: linear-gradient(180deg, #ffb54d 0%, #f18d16 100%);
    color: #ffffff;
    font-size: 32px;
}

.banner-coin-bnb {
    top: 96px;
    right: 22px;
    width: 46px;
    height: 46px;
    background: linear-gradient(180deg, #ffd64a 0%, #d9a400 100%);
}

.banner-coin-bnb::before,
.banner-coin-bnb::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    transform: rotate(45deg);
}

.banner-coin-bnb::before {
    width: 11px;
    height: 11px;
}

.banner-coin-bnb::after {
    width: 6px;
    height: 6px;
    box-shadow:
        -8px 0 0 rgba(255, 255, 255, 0.92),
        8px 0 0 rgba(255, 255, 255, 0.92),
        0 -8px 0 rgba(255, 255, 255, 0.92),
        0 8px 0 rgba(255, 255, 255, 0.92);
}

.banner-coin-eth {
    left: 6px;
    bottom: 30px;
    width: 58px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(180deg, #6987ff 0%, #4155cf 100%);
}

.banner-coin-eth::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #d2dbff;
    clip-path: polygon(50% 0%, 100% 52%, 50% 100%, 0% 52%);
}

.banner-chip {
    position: absolute;
    width: 24px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #4ee2c3 0%, #109275 100%);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.banner-chip-top {
    top: 20px;
    right: 116px;
}

.banner-chip-bottom {
    bottom: 80px;
    right: -8px;
    width: 96px;
    height: 6px;
    opacity: 0.22;
    transform: rotate(12deg);
}

/* System Notification */
.sys-notification {
    margin: 10px 14px;
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

#page-home .sys-notification,
#page-home .pool-data-card,
#page-home .home-faq-section .faq-list,
#page-home .audit-section,
#page-home .partner-section {
    width: calc(100% - (var(--home-card-gutter) * 2));
    margin-left: var(--home-card-gutter);
    margin-right: var(--home-card-gutter);
    box-sizing: border-box;
}

.notif-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    font-size: 18px;
    line-height: 1;
    color: #f0b90b;
    flex-shrink: 0;
}

.notif-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 18px;
}

.notif-scroll span {
    position: absolute;
    white-space: nowrap;
    color: #d0d0d0;
    font-size: 12px;
    left: 0;
    top: 0;
    animation: scrollText 24s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Pool Data Card */
.pool-data-card {
    margin: 12px 14px;
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
    padding: 10px 16px;
}

.pool-data-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.pool-data-row:not(:last-child) {
    border-bottom: 1px solid #1e1e1e;
}

.pool-data-row:first-child {
    padding-top: 14px;
}

.pool-data-row:last-child {
    padding-bottom: 14px;
}

.pool-data-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.pool-data-label {
    color: #888;
    font-size: 14px;
    line-height: 1.35;
    text-transform: none;
}

.pool-data-value {
    color: #f0b90b;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    text-align: right;
    white-space: nowrap;
}

/* Pool Info Card */
.pool-info-card {
    margin: 12px 14px;
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    padding: 14px;
}

.pool-info-title {
    color: #f0b90b;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pool-info-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.info-badge {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 4px;
    padding: 8px;
    color: #f0b90b;
    font-size: 11px;
}

.badge-icon {
    font-size: 12px;
    color: #f0b90b;
}

.pool-info-desc {
    color: #888;
    font-size: 12px;
    line-height: 1.5;
}

/* Project Features */
.project-features {
    margin: 12px 14px;
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    padding: 14px;
}

.features-title {
    color: #f0b90b;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #1e1e1e;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-desc {
    color: #888;
    font-size: 11px;
    line-height: 1.4;
}

/* VIP Mining Pool Table */
.vip-mining-section {
    margin-top: 12px;
}

.vip-activation-stack {
    display: grid;
    gap: 14px;
    margin: 0 14px;
}

.vip-token-card,
.vip-income-card {
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    padding: 16px;
}

.vip-token-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vip-token-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 84px;
    color: #bfc4cf;
    font-size: 14px;
    font-weight: 500;
}

.vip-token-balance {
    flex: 1;
    min-width: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vip-token-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vip-token-icon-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    line-height: 1;
}

.vip-token-action {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 98px;
    color: #d0d0d0;
    font-size: 13px;
    flex-shrink: 0;
    text-align: right;
}

.vip-token-chevron {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1;
}

.vip-income-card {
    display: grid;
    gap: 12px;
}

.vip-income-label {
    color: #8f96a3;
    font-size: 13px;
    line-height: 1.3;
}

.vip-income-main {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.vip-income-value {
    color: #f0b90b;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    word-break: break-word;
}

.vip-income-unit {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1;
}

.vip-income-rate {
    color: #f0b90b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.vip-income-desc {
    color: #d0d0d0;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.btn-deposit {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 13px 16px;
    background: #f0b90b;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    line-height: 1.35;
}

@media (max-width: 360px) {
    .vip-token-card {
        gap: 10px;
    }

    .vip-token-chip {
        min-width: 74px;
        gap: 10px;
        font-size: 13px;
    }

    .vip-token-balance {
        font-size: 16px;
    }

    .vip-token-action {
        min-width: 84px;
        font-size: 12px;
    }
}

/* User Benefits */
.user-benefits-section {
    margin-top: 12px;
}

.user-benefits-card {
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    padding: 10px 14px;
    overflow: hidden;
    margin: 0 14px;
}

.user-benefits-list {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.user-benefit-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #1f1f1f;
    min-height: 57px;
}

.user-benefit-item:last-child {
    border-bottom: none;
}

.user-benefit-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.user-benefit-avatar {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--avatar-start), var(--avatar-end));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 8px 18px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.user-benefit-avatar::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.28), transparent 28%),
        radial-gradient(circle at 70% 75%, rgba(0, 0, 0, 0.3), transparent 45%),
        linear-gradient(180deg, rgba(18, 22, 40, 0.25), rgba(8, 10, 20, 0.6));
}

.user-benefit-avatar-core {
    position: relative;
    z-index: 1;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(14, 20, 38, 0.9), rgba(7, 11, 24, 0.96));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 8px rgba(255, 255, 255, 0.06);
}

.user-benefit-avatar-bar {
    position: absolute;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 226, 132, 0.95);
    box-shadow: 0 0 6px rgba(255, 212, 84, 0.45);
    transform: translateX(-50%);
}

.user-benefit-avatar-bar-top {
    top: 4px;
}

.user-benefit-avatar-bar-mid {
    top: 7px;
    width: 6px;
}

.user-benefit-avatar-bar-bottom {
    top: 10px;
}

.user-benefit-avatar-orbit {
    position: absolute;
    z-index: 1;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.38);
    top: 6px;
    right: 5px;
}

.user-benefit-avatar-orbit-alt {
    width: 3px;
    height: 3px;
    top: auto;
    right: auto;
    left: 6px;
    bottom: 7px;
    background: rgba(255, 208, 89, 0.95);
    box-shadow: 0 0 6px rgba(255, 208, 89, 0.4);
}

.user-benefit-address {
    color: #6c84a3;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-benefit-amount {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 360px) {
    .user-benefit-item {
        gap: 10px;
    }

    .user-benefit-avatar {
        width: 28px;
        height: 28px;
    }

    .user-benefit-address,
    .user-benefit-amount {
        font-size: 13px;
    }
}

/* FAQ Section */
.faq-section {
    margin: 12px 14px;
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
}

.faq-list {
    padding: 0 14px 14px;
}

.faq-item {
    border-bottom: 1px solid #1e1e1e;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
    color: #d0d0d0;
    font-size: 13px;
    font-weight: 500;
}

.faq-arrow {
    color: #f0b90b;
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 14px;
    color: #888;
    font-size: 12px;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}

.home-faq-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 12px;
    margin-left: 0;
    margin-right: 0;
}

.home-faq-section .section-title {
    position: relative;
    padding: 14px 14px 10px;
    margin-bottom: 0;
    color: #f1f1f1;
    font-size: 15px;
    font-weight: 600;
    text-transform: lowercase;
}

.home-faq-section .section-title::before {
    content: '';
    position: static;
    width: 2px;
    height: 16px;
    border-radius: 999px;
    background: #f0b90b;
    transform: none;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.2);
}

.home-faq-section .faq-list {
    margin: 0 14px;
    padding: 0 18px;
    background: #131313;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    overflow: hidden;
}

.home-faq-section .faq-item {
    border-bottom: 1px solid #222222;
}

.home-faq-section .faq-item:last-child {
    border-bottom: none;
}

.home-faq-section .faq-question {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    color: #ededed;
    font-size: 14px;
    font-weight: 500;
}

.home-faq-section .faq-question-main {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.home-faq-section .faq-number {
    color: #8e8e8e;
    font-size: 13px;
    line-height: 1.6;
    flex-shrink: 0;
    min-width: 14px;
}

.home-faq-section .faq-question-text {
    color: #e8e8e8;
    line-height: 1.6;
}

.home-faq-section .faq-arrow {
    color: #bdbdbd;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.home-faq-section .faq-item.open .faq-arrow {
    color: #ffffff;
    transform: rotate(90deg);
}

.home-faq-section .faq-answer {
    padding: 0 0 18px 26px;
    color: #9a9a9a;
    font-size: 13px;
    line-height: 1.7;
}

/* Audit Section */
.audit-section {
    margin: 0 14px;
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    padding: 14px;
}

.audit-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 14px;
    row-gap: 12px;
}

.audit-logo-card {
    width: 94px;
    min-width: 94px;
    flex: 0 0 auto;
    height: 50px;
    padding: 6px 8px;
    background: transparent;
    border: none;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none;
}

.audit-logo-card-1 {
    border-radius: 7px;
}

.audit-logo-image {
    display: block;
    max-width: 88%;
    max-height: 70%;
    width: auto;
    height: auto;
    border-radius: 7px;
    object-fit: contain;
    object-position: center;
}

.audit-logo-image-1 {
    border-radius: 7px;
    clip-path: inset(0 round 7px);
    transform: translate(0, 0) scale(3.36);
    transform-origin: center;
}

.audit-logo-image-2 {
    transform: translate(0, 1px) scale(3.18);
    transform-origin: center;
}

.audit-logo-image-3 {
    transform: translate(2px, 0) scale(3.3);
    transform-origin: center;
}

@media (max-width: 420px) {
    .audit-logos {
        justify-content: center;
        column-gap: 12px;
        row-gap: 10px;
    }

    .audit-logo-card {
        width: 92px;
        min-width: 92px;
        height: 46px;
        padding: 6px 7px;
    }

    .audit-logo-image {
        max-width: 88%;
        max-height: 68%;
    }

    .audit-logo-image-1 {
        border-radius: 7px;
        clip-path: inset(0 round 7px);
        transform: translate(0, 0) scale(3.24);
    }

    .audit-logo-image-2 {
        transform: translate(0, 1px) scale(3.09);
    }

    .audit-logo-image-3 {
        transform: translate(2px, 0) scale(3.18);
    }
}

/* Partner Logos */
.partner-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f6f2e8;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 14px 10px;
    letter-spacing: 0;
    line-height: 1.2;
    text-shadow: none;
}

.partner-heading::before {
    content: '';
    width: 2px;
    height: 16px;
    border-radius: 999px;
    background: #f0b90b;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.2);
    flex-shrink: 0;
}

.partner-section {
    margin: 0 14px;
    background: #161616;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
    padding: 16px 14px;
    box-shadow: none;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 16px;
}

.partner-logo-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f2f4f7;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.partner-logo-media {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}

.partner-logo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-logo-name {
    min-width: 0;
    color: #f4f6f9;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-shadow: none;
}

@media (max-width: 420px) {
    .partner-heading {
        font-size: 15px;
        padding-bottom: 10px;
    }

    .partner-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 10px;
        row-gap: 14px;
    }

    .partner-logo-item {
        gap: 6px;
        font-size: 10px;
    }

    .partner-logo-media {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 320px) {
    .partner-logos {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ===== MINING POOL PAGE ===== */
.mining-summary-card {
    margin: 16px 10px 0;
    border-radius: 10px;
    background: #a8882b;
    padding: 18px 18px 16px;
    color: #000000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.mining-summary-total-value {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.2px;
}

.mining-summary-total-label {
    margin-top: 14px;
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.9);
}

.mining-summary-grid {
    margin-top: 22px;
    display: grid;
    gap: 24px;
}

.mining-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.mining-summary-key,
.mining-summary-value {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.95);
}

.mining-summary-value {
    text-align: right;
    font-weight: 500;
}

.mining-yield-card {
    margin: 0 8px;
    background: #0c0c0e;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.mining-yield-card {
    padding: 14px 12px 12px;
}

.mining-yield-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
}

.mining-yield-tab {
    position: relative;
    padding: 2px 4px 12px;
    background: transparent;
    border: none;
    color: #6e6e73;
    text-align: left;
    font-size: 12px;
    line-height: 1.35;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mining-yield-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.2s ease;
}

.mining-yield-tab.active {
    color: #e6e6e9;
}

.mining-yield-tab.active::after {
    background: #b48715;
}

.mining-yield-table {
    margin-top: 14px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-right: 4px;
}

.mining-yield-header,
.mining-yield-row {
    display: grid;
    grid-template-columns: minmax(122px, 1.38fr) minmax(72px, 0.76fr) minmax(86px, 0.86fr);
    column-gap: 8px;
    min-width: 0;
}

.mining-yield-header {
    color: #6e6e73;
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mining-yield-body {
    display: grid;
    gap: 6px;
}

.mining-yield-row {
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mining-yield-cell {
    min-width: 0;
    color: #74747a;
    font-size: 12px;
    line-height: 1.45;
    word-break: break-word;
}

.mining-yield-header .mining-yield-cell:nth-child(2) {
    text-align: left;
}

.mining-yield-header .mining-yield-cell:nth-child(3) {
    text-align: right;
}

.mining-yield-body .mining-yield-cell {
    font-size: 12px;
    color: #b5b8bf;
}

.mining-yield-body .mining-yield-cell:nth-child(2) {
    text-align: left;
    white-space: nowrap;
}

.mining-yield-body .mining-yield-cell:nth-child(3) {
    text-align: right;
    white-space: nowrap;
}

/* ===== SERVICE PAGE ===== */
.service-page-wrap {
    padding-top: 14px;
}

.service-hero-banner,
.service-overview-card,
.service-faq-card,
.service-partner-card,
.service-feature-card {
    margin-left: 14px;
    margin-right: 14px;
}

.service-hero-banner {
    position: relative;
}

.service-hero-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.service-hero-viewport::-webkit-scrollbar {
    display: none;
}

.service-hero-track {
    display: flex;
}

.service-hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex: 0 0 100%;
    min-height: 156px;
    padding: 16px 14px;
    overflow: hidden;
    scroll-snap-align: start;
    background:
        radial-gradient(circle at 76% 28%, rgba(255, 223, 96, 0.28), transparent 16%),
        radial-gradient(circle at 48% 22%, rgba(255, 214, 72, 0.22), transparent 10%),
        radial-gradient(circle at 58% 58%, rgba(48, 104, 255, 0.18), transparent 14%),
        linear-gradient(135deg, #12151d 0%, #0f1117 38%, #191d25 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    --service-hero-art-position: 86% center;
    --service-hero-art-size: auto 118%;
}

.service-hero-slide::before,
.service-hero-slide::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(240, 185, 11, 0.12);
    filter: blur(18px);
}

.service-hero-slide::before {
    width: 72px;
    height: 72px;
    top: 12px;
    right: 86px;
}

.service-hero-slide::after {
    width: 92px;
    height: 92px;
    right: 12px;
    bottom: -14px;
}

.service-hero-slide-primary {
    --service-hero-art-position: 88% center;
    --service-hero-art-size: auto 118%;
    background:
        linear-gradient(90deg, rgba(2, 8, 18, 0.92) 0%, rgba(3, 10, 22, 0.8) 34%, rgba(4, 13, 28, 0.45) 62%, rgba(4, 13, 28, 0.28) 100%),
        url('/audit/banner-1.webp') var(--service-hero-art-position) / var(--service-hero-art-size) no-repeat;
}

.service-hero-slide-primary::before,
.service-hero-slide-primary::after {
    display: none;
}

.service-hero-slide-secondary {
    --service-hero-art-position: 84% center;
    --service-hero-art-size: auto 114%;
    background:
        linear-gradient(90deg, rgba(2, 7, 20, 0.9) 0%, rgba(3, 10, 25, 0.78) 34%, rgba(3, 10, 25, 0.4) 62%, rgba(3, 10, 25, 0.18) 100%),
        url('/audit/banner-2.webp') var(--service-hero-art-position) / var(--service-hero-art-size) no-repeat;
}

.service-hero-slide-secondary::before,
.service-hero-slide-secondary::after {
    display: none;
}

.service-hero-slide-tertiary {
    background:
        radial-gradient(circle at 74% 28%, rgba(76, 226, 183, 0.22), transparent 14%),
        radial-gradient(circle at 58% 58%, rgba(255, 204, 91, 0.22), transparent 15%),
        radial-gradient(circle at 32% 24%, rgba(62, 108, 255, 0.2), transparent 12%),
        linear-gradient(135deg, #10151e 0%, #0d1018 36%, #181f2b 100%);
}

.service-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 48%;
}

.service-hero-slide-primary .service-hero-copy {
    max-width: 46%;
}

.service-hero-slide-secondary .service-hero-copy {
    max-width: 48%;
}

@media (max-width: 480px) {
    .service-hero-slide {
        min-height: 184px;
        padding: 14px 12px;
    }

    .service-hero-copy {
        max-width: 44%;
    }

    .service-hero-slide-primary .service-hero-copy,
    .service-hero-slide-secondary .service-hero-copy {
        max-width: 44%;
    }

    .service-hero-slide-primary {
        --service-hero-art-position: 100% center;
        --service-hero-art-size: auto 104%;
    }

    .service-hero-slide-secondary {
        --service-hero-art-position: 92% center;
        --service-hero-art-size: auto 104%;
    }
}

@media (min-width: 768px) {
    .service-hero-slide {
        --service-hero-art-position: 86% center;
        --service-hero-art-size: auto 118%;
    }
}

.service-hero-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
    color: #f0c341;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.service-hero-brand-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1;
}

.service-hero-brand-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-hero-brand-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-hero-brand-sub {
    max-width: 210px;
    font-size: 11px;
    line-height: 1.35;
    color: #e7edf9;
}

.service-hero-slide-secondary .service-hero-brand-sub {
    max-width: 280px;
    color: #f0c341;
    font-size: 11px;
    font-weight: 700;
}

.service-hero-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 8px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(240, 185, 11, 0.9), rgba(240, 185, 11, 0.62));
    color: #231800;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 240px;
    white-space: normal;
}

.service-hero-message {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.22;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.service-hero-pair {
    display: flex;
    align-items: baseline;
    gap: 1px;
    color: #f2f2f2;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.service-hero-pair-accent {
    color: #d4a730;
}

.service-hero-slash {
    color: #7f8493;
    margin: 0 1px;
}

.service-hero-dot {
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-radius: 50%;
    background: #2f67ff;
    box-shadow: 0 0 8px rgba(47, 103, 255, 0.5);
    align-self: center;
}

.service-hero-media {
    position: relative;
    z-index: 1;
    width: 38%;
    min-width: 112px;
    height: 104px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-hero-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.service-hero-dot-btn {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.service-hero-dot-btn.active {
    width: 18px;
    border-radius: 999px;
    background: #f0b90b;
}

.service-overview-card {
    margin-top: 18px;
    padding: 18px 16px 16px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(48, 48, 52, 0.96) 0%, rgba(33, 34, 38, 0.98) 50%, rgba(46, 46, 50, 0.96) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.service-overview-title {
    color: #f6f7fb;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: 0.01em;
}

.service-overview-title-separator {
    opacity: 0.9;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.service-overview-item {
    min-height: 120px;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(10, 11, 14, 0.94);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    color: #e9edf8;
    font-size: 18px;
    line-height: 1.45;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.service-overview-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    color: #d0a317;
    flex-shrink: 0;
}

.service-overview-item-text {
    display: inline-block;
    max-width: 126px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.service-overview-icon svg,
.service-feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-overview-copy {
    margin-top: 18px;
    color: #ececef;
    font-size: 15px;
    line-height: 1.55;
}

.service-overview-copy span {
    color: #d0a317;
}

.service-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 14px 12px;
    color: #f4f4f5;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.service-section-title::before {
    content: '';
    width: 2px;
    height: 16px;
    border-radius: 999px;
    background: #f0b90b;
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.25);
    flex-shrink: 0;
}

.service-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-feature-card {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0e1014 0%, #17191e 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.service-feature-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #c79a14;
}

.service-feature-icon-illustration {
    width: 54px;
    height: 54px;
    color: transparent;
}

.service-feature-icon-illustration svg {
    stroke: none;
    fill: initial;
}

.service-feature-body h4 {
    color: #eceff7;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.service-feature-body p {
    color: #7d818b;
    font-size: 12px;
    line-height: 1.65;
}

.service-faq-card,
.service-partner-card {
    border-radius: 12px;
    background: linear-gradient(135deg, #111215 0%, #18191d 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.service-faq-list {
    padding: 0 18px;
}

#page-service .service-faq-list .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

#page-service .service-faq-list .faq-question {
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    color: #bdbdc2;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
}

#page-service .service-faq-list .faq-arrow {
    color: #90929b;
    font-size: 18px;
}

#page-service .service-faq-list .faq-item.open .faq-arrow {
    transform: rotate(90deg);
}

#page-service .service-faq-list .faq-answer {
    padding-bottom: 16px;
    color: #7d818b;
    font-size: 12px;
    line-height: 1.65;
}

.service-partner-card {
    padding: 18px 16px;
}

.service-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
}

.service-partner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.service-partner-item span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#page-service .service-partner-item .partner-logo-media {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* ===== SHARE PAGE ===== */
.recommend-banner {
    margin: 14px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 14% 18%, rgba(122, 242, 255, 0.34), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(146, 168, 255, 0.26), transparent 19%),
        radial-gradient(circle at 82% 78%, rgba(20, 240, 196, 0.18), transparent 24%),
        radial-gradient(circle at 62% 52%, rgba(106, 81, 255, 0.16), transparent 28%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 28%),
        linear-gradient(150deg, #18344f 0%, #10273f 18%, #0b1d33 42%, #0a1730 68%, #071121 100%);
    border: 1px solid rgba(107, 214, 255, 0.34);
    border-radius: 18px;
    padding: 20px 18px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    box-shadow:
        0 16px 34px rgba(0, 30, 58, 0.34),
        0 0 0 1px rgba(117, 222, 255, 0.08),
        inset 0 1px 0 rgba(205, 245, 255, 0.18),
        inset 0 -16px 26px rgba(2, 9, 24, 0.26);
}

.recommend-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(90deg, rgba(72, 160, 214, 0.14) 1px, transparent 1px),
        linear-gradient(rgba(72, 160, 214, 0.12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(2, 10, 24, 0.16)),
        radial-gradient(circle at 70% 48%, rgba(76, 255, 235, 0.16), transparent 30%);
    background-size: auto, 22px 22px, 22px 22px, auto, auto;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    opacity: 0.72;
    pointer-events: none;
}

.recommend-banner::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 14px;
    border: 1px solid rgba(81, 194, 255, 0.18);
    box-shadow:
        inset 0 0 0 1px rgba(178, 239, 255, 0.12),
        inset 0 0 24px rgba(103, 231, 255, 0.06);
    pointer-events: none;
}

.recommend-content h3 {
    color: #f4fbff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.recommend-content h4 {
    color: #f4fbff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
}

.recommend-content p {
    color: rgba(211, 244, 255, 0.86);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.recommend-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.recommend-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: -2px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80, 236, 255, 0.16), transparent 72%);
    pointer-events: none;
}

.recommend-visual {
    width: 126px;
    height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.recommend-visual-image {
    width: 122px;
    height: 122px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.recommend-tabs-container {
    margin: 10px 14px 12px;
    background: linear-gradient(180deg, #131313 0%, #101010 100%);
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 16px 16px 22px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.recommend-tabs {
    display: flex;
    gap: 0;
    border-bottom: none;
    margin-bottom: 22px;
}

.rec-tab {
    flex: 1;
    padding: 10px 6px 16px;
    background: none;
    border: none;
    color: #8c8c8c;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.rec-tab.active {
    color: #f4f4f4;
    border-bottom-color: #e9a713;
}

.share-recommend-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.share-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    background: linear-gradient(180deg, #3b3b3b 0%, #343434 100%);
    border-radius: 14px;
    padding: 16px 16px;
}

.share-link-value {
    flex: 1;
    min-width: 0;
    color: #f0f0f0;
    font-size: 17px;
    line-height: 1.3;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    resize: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
    font-family: inherit;
    user-select: text;
    -webkit-user-select: text;
    -webkit-touch-callout: default;
}

.share-link-copy {
    min-width: 70px;
    height: 38px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff7dc;
}

.share-guide-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.share-step-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.share-step-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f0b90b;
    flex-shrink: 0;
    margin-top: 2px;
}

.share-step-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.share-step-content {
    flex: 1;
    min-width: 0;
}

.share-step-title-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 7px;
}

.share-step-number {
    color: #f2f2f2;
    font-size: 18px;
    line-height: 1.2;
}

.share-step-title {
    color: #f2f2f2;
    font-size: 18px;
    line-height: 1.2;
}

.share-step-desc {
    color: #7d7d7d;
    font-size: 15px;
    line-height: 1.5;
    max-width: 290px;
}

.btn-copy {
    padding: 6px 14px;
    background: #f0b90b;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

.no-data-placeholder {
    text-align: center;
    padding: 40px 20px;
}

.no-data-icon {
    font-size: 60px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.no-data-text {
    color: #888;
    font-size: 13px;
}

.share-record-empty {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.share-record-panel {
    border-radius: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.share-record-header {
    display: grid;
    grid-template-columns: 1.55fr 1.1fr 0.8fr 0.95fr;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    min-width: 620px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(240, 185, 11, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.share-record-header-cell {
    color: #f3f3f3;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.share-record-reward-cell,
.share-record-status-cell {
    text-align: right;
}

.share-record-empty.no-data-placeholder {
    min-height: 240px;
}

.share-record-list {
    display: flex;
    flex-direction: column;
}

.share-record-row {
    display: grid;
    grid-template-columns: 1.55fr 1.1fr 0.8fr 0.95fr;
    gap: 10px;
    align-items: center;
    min-height: 72px;
    min-width: 620px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.share-record-row:last-child {
    border-bottom: none;
}

.share-record-cell {
    min-width: 0;
}

.share-record-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-record-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.26) 0%, rgba(240, 185, 11, 0.08) 100%);
    border: 1px solid rgba(240, 185, 11, 0.28);
    color: #f0b90b;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.share-record-user-meta {
    min-width: 0;
}

.share-record-wallet {
    color: #f3f3f3;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.share-record-subtext,
.share-record-time {
    color: #878787;
    font-size: 11px;
    line-height: 1.4;
}

.share-record-reward {
    color: #f0b90b;
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.share-record-reward.is-empty {
    color: #8a8a8a;
}

.share-record-status {
    text-align: right;
}

.share-status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.share-status-chip.is-completed {
    background: rgba(38, 208, 124, 0.14);
    border: 1px solid rgba(38, 208, 124, 0.28);
    color: #65e2a2;
}

.share-status-chip.is-pending {
    background: rgba(240, 185, 11, 0.12);
    border: 1px solid rgba(240, 185, 11, 0.25);
    color: #f0b90b;
}

.share-status-chip.is-rejected {
    background: rgba(255, 92, 92, 0.12);
    border: 1px solid rgba(255, 92, 92, 0.24);
    color: #ff7d7d;
}


/* ===== ACCOUNT PAGE ===== */
.account-hero-section {
    margin: 14px 14px 10px;
}

.account-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 22px 18px 14px;
    background:
        radial-gradient(circle at top right, rgba(240, 185, 11, 0.18), transparent 34%),
        radial-gradient(circle at top left, rgba(0, 212, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #181d29 0%, #10141d 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.account-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.18;
    pointer-events: none;
}

.account-hero-badge,
.account-hero-main,
.account-hero-subline,
.account-summary-grid {
    position: relative;
    z-index: 1;
}

.account-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(240, 185, 11, 0.12);
    border: 1px solid rgba(240, 185, 11, 0.24);
    color: #f0b90b;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
}

.account-hero-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-hero-balance-block {
    min-width: 0;
}

.assets-label {
    color: #8f9db2;
    font-size: 13px;
    margin-bottom: 10px;
}

.account-hero-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    color: #f7f7f7;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
}

.account-hero-amount-value {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.account-hero-token {
    color: #f0b90b;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.account-progress-panel {
    display: flex;
    justify-content: center;
    padding: 0;
}

.account-progress-widget {
    position: relative;
    width: 126px;
    height: 82px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.account-progress-ring {
    position: relative;
    width: 122px;
    height: 122px;
    --account-progress-angle: 0deg;
    --account-progress-start-angle: 270deg;
    --account-progress-max-angle: 180deg;
}

.account-progress-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from var(--account-progress-start-angle),
        rgba(240, 185, 11, 0.98) 0deg,
        rgba(255, 245, 184, 0.96) var(--account-progress-angle),
        rgba(232, 227, 240, 0.22) var(--account-progress-angle),
        rgba(232, 227, 240, 0.22) var(--account-progress-max-angle),
        rgba(232, 227, 240, 0) var(--account-progress-max-angle),
        rgba(232, 227, 240, 0) 360deg
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px));
    opacity: 0.92;
}

.account-progress-track::after {
    content: none;
}

.account-progress-dot {
    display: none;
}

.account-progress-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 30px;
    transform: translateY(-6px);
}

.account-progress-percent {
    color: #e7ebf4;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.account-progress-text {
    margin-top: 6px;
    color: #d4d8e2;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.usdt-icon {
    color: #f0b90b;
    font-size: 26px;
}

.account-hero-subline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.avail-label {
    color: #8f9db2;
    font-size: 12px;
}

.avail-value {
    color: #eef3ff;
    font-size: 14px;
    font-family: monospace;
    text-align: right;
}

.usdt-small-icon {
    margin-right: 4px;
    color: #f0b90b;
    font-size: 14px;
}

.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.account-summary-card {
    min-height: 94px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(10, 14, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.account-summary-label {
    color: #7e8ba0;
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.account-summary-value {
    color: #f8f8f8;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    word-break: break-word;
}

.account-withdraw-section {
    margin: 0 14px 14px;
}

.account-withdraw-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 16px 14px 18px;
    background:
        radial-gradient(circle at top center, rgba(245, 198, 74, 0.16), transparent 42%),
        linear-gradient(135deg, rgba(14, 22, 38, 0.98) 0%, rgba(21, 28, 43, 0.96) 54%, rgba(28, 30, 38, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.account-withdraw-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        radial-gradient(circle at top center, rgba(240, 185, 11, 0.14), transparent 34%);
    pointer-events: none;
}

.account-withdraw-title,
.account-withdraw-input-row,
.account-withdraw-available,
.account-withdraw-confirm {
    position: relative;
    z-index: 1;
}

.account-withdraw-title {
    margin: 0 0 14px;
    text-align: center;
    color: #fff6d1;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.account-withdraw-input-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.account-withdraw-input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 21, 35, 0.72);
    color: #f8f8f8;
    font-size: 14px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.account-withdraw-input::placeholder {
    color: #8d97aa;
}

.account-withdraw-input:focus {
    border-color: rgba(240, 185, 11, 0.38);
    box-shadow: 0 0 0 2px rgba(240, 185, 11, 0.08);
}

.account-withdraw-all {
    min-width: 62px;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(180deg, #efd065 0%, #e0b93e 100%);
    color: #1b1b1b;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.account-withdraw-available {
    margin-top: 14px;
    color: #f8f8f8;
    font-size: 14px;
    font-weight: 600;
}

.account-withdraw-available span:first-child {
    margin-right: 4px;
}

.account-withdraw-confirm {
    width: 100%;
    height: 50px;
    margin-top: 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(180deg, #e7c14c 0%, #dbb33f 100%);
    color: #141414;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(219, 179, 63, 0.18);
}

.account-overview-modal-content {
    width: min(92vw, 460px);
    max-width: 460px;
    min-height: min(74vh, 620px);
    max-height: 78vh;
    display: flex;
    flex-direction: column;
}

.account-overview-modal-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.account-overview-tab {
    min-height: 42px;
    padding: 10px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #b7c1d2;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.account-overview-tab.active {
    border-color: rgba(240, 185, 11, 0.35);
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.22) 0%, rgba(240, 185, 11, 0.08) 100%);
    color: #f0b90b;
}

.account-overview-modal-panel {
    flex: 1;
    min-height: 0;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto;
}

.account-overview-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.account-overview-modal-header-cell {
    color: #f0b90b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.account-overview-modal-header-cell-right {
    text-align: right;
}

.account-overview-record-list {
    display: grid;
    gap: 10px;
}

.account-overview-record-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.account-overview-record-type {
    flex: 1;
    min-width: 0;
    color: #eef2f8;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

.account-overview-record-status {
    flex-shrink: 0;
    min-width: 88px;
    padding: 6px 10px;
    border-radius: 999px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.account-overview-record-status.is-waiting {
    background: rgba(240, 185, 11, 0.14);
    border: 1px solid rgba(240, 185, 11, 0.24);
    color: #f0b90b;
}

.account-overview-record-status.is-completed {
    background: rgba(42, 199, 105, 0.14);
    border: 1px solid rgba(42, 199, 105, 0.22);
    color: #61d48d;
}

.account-overview-record-status.is-failed {
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.22);
    color: #ff8f8f;
}

.account-overview-record-status.is-rejected-withdraw {
    background: rgba(126, 146, 179, 0.14);
    border: 1px solid rgba(126, 146, 179, 0.24);
    color: #c1cede;
}

.account-overview-modal-empty {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    color: #a3adbd;
    font-size: 13px;
    text-align: center;
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 300;
    display: flex;
    background: linear-gradient(180deg, rgba(22, 27, 39, 0.97) 0%, rgba(19, 24, 35, 0.99) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    height: 68px;
    padding: 0 max(12px, env(safe-area-inset-left, 0px)) env(safe-area-inset-bottom, 0px) max(12px, env(safe-area-inset-right, 0px));
    box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.28);
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 68px;
    padding: 8px 0 6px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.02);
}

.nav-icon {
    width: 23px;
    height: 23px;
    color: #7b7b7b;
    transition: color 0.2s ease;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-label {
    font-size: 11px;
    line-height: 1;
    color: #7b7b7b;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-item.active .nav-icon {
    color: #f0b90b;
    filter: drop-shadow(0 0 2px rgba(240, 185, 11, 0.18));
}

.nav-item.active .nav-label {
    color: #f0b90b;
    font-weight: 500;
}

/* ===== Chat Float Buttons ===== */
.chat-float[hidden] {
    display: none !important;
}

.chat-float {
    position: fixed;
    right: var(--page-side-gutter);
    z-index: 250;
    width: 40px;
    height: 40px;
    background: #f0b90b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(240, 185, 11, 0.3);
}

@media (max-width: 420px) {
    :root {
        --page-side-gutter: 6px;
    }

    #page-home {
        --home-card-gutter: 6px;
    }

    .top-bar {
        padding-left: 6px;
        padding-right: 6px;
    }

    .section-title {
        padding-left: 8px;
        padding-right: 8px;
    }

    .sys-notification,
    .pool-data-card {
        border-radius: 10px;
    }

    .main-banner {
        margin-left: 6px;
        margin-right: 6px;
        border-radius: 18px;
    }

    .top-bar-right {
        gap: 8px;
    }

    .dapp-top-pill-token {
        display: none;
    }
}

.chat-float span {
    font-size: 17px;
}

.support-float-icon {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3f2a00;
}

.support-float-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.chat-float-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff4d4f;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.chat-float-secondary {
    bottom: 78px;
}

.chat-float:not(.chat-float-secondary) {
    bottom: 124px;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 500;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 360px;
}

.modal-content-wide {
    max-width: 380px;
}

.messenger-modal-content {
    position: relative;
    padding-top: 28px;
}

.messenger-modal-content .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    float: none;
}

.messenger-modal-content h3 {
    margin-top: 0;
    text-align: center;
}

.close-btn {
    float: right;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: #fff;
}

.modal-content h3 {
    color: #f0b90b;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.withdraw-confirm-modal-content {
    max-width: 400px;
    position: relative;
    padding-top: 28px;
}

.withdraw-confirm-modal-content .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    float: none;
}

.withdraw-confirm-modal-text {
    margin: 0 0 20px;
    color: #dce6f2;
    text-align: center;
    line-height: 1.6;
}

.withdraw-confirm-modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.withdraw-confirm-modal-actions .btn-primary,
.withdraw-confirm-modal-actions .btn-secondary {
    min-width: 110px;
}

.modal-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: -6px 0 16px;
    color: #f3f3f3;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}

.modal-status[hidden] {
    display: none !important;
}

.modal-status-spinner {
    width: 14px;
    height: 14px;
    display: inline-flex;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(240, 185, 11, 0.3);
    border-top-color: #f0b90b;
    animation: join-spin 0.8s linear infinite;
}

.join-status-toast {
    position: fixed;
    left: 50%;
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%) translateY(14px);
    z-index: 650;
    min-width: 84px;
    max-width: min(78vw, 280px);
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.join-status-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #0d0d0d;
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.wallet-option:hover {
    border-color: #f0b90b;
}

.wallet-icon {
    font-size: 24px;
}

.wallet-option span:last-child {
    color: #d0d0d0;
    font-size: 14px;
    font-weight: 600;
}

.notification-popup-meta {
    margin-top: -8px;
    margin-bottom: 14px;
    color: #8c8c8c;
    font-size: 12px;
    text-align: center;
}

.notification-popup-body {
    max-height: min(50vh, 280px);
    overflow-y: auto;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ebebeb;
    font-size: 14px;
    line-height: 1.65;
    white-space: pre-wrap;
    word-break: break-word;
}

.notification-popup-actions {
    margin-top: 16px;
}

.btn-primary-action {
    display: block;
    width: 100%;
    padding: 12px 14px;
    background: #f0b90b;
    color: #101010;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.mailbox-list {
    display: grid;
    gap: 12px;
    max-height: min(58vh, 360px);
    overflow-y: auto;
}

.mailbox-empty-state {
    padding: 22px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    color: #9a9a9a;
    font-size: 14px;
    text-align: center;
}

.mailbox-item {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    gap: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mailbox-item.is-unread {
    border-color: rgba(240, 185, 11, 0.28);
    box-shadow: inset 0 0 0 1px rgba(240, 185, 11, 0.08);
}

.mailbox-item:hover {
    border-color: rgba(240, 185, 11, 0.22);
    background: rgba(255, 255, 255, 0.045);
    transform: translateY(-1px);
}

.mailbox-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.mailbox-item-title {
    color: #f0f0f0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.mailbox-item-status {
    flex-shrink: 0;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(45, 185, 105, 0.18);
    color: #42d985;
    border: 1px solid rgba(66, 217, 133, 0.35);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.mailbox-item.is-unread .mailbox-item-status {
    background: rgba(225, 70, 70, 0.18);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.36);
}

.mailbox-item-content {
    color: #cfcfcf;
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space: normal;
    word-break: break-word;
}

.mailbox-item-read-btn {
    padding: 8px 12px;
    background: rgba(240, 185, 11, 0.12);
    color: #f0b90b;
    border: 1px solid rgba(240, 185, 11, 0.28);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.mailbox-item-read-btn:disabled {
    opacity: 0.55;
    cursor: default;
}

.messenger-detail-modal-content {
    max-width: 400px;
}

.messenger-detail-meta {
    margin: -6px 0 14px;
    color: #8d8d8d;
    font-size: 12px;
    text-align: center;
}

.messenger-detail-card {
    border-radius: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.messenger-detail-title {
    color: #f6f6f6;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 12px;
}

.messenger-detail-body {
    color: #d5d5d5;
    font-size: 14px;
    line-height: 1.75;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ===== Admin Dashboard ===== */
body:has(.admin-layout) {
    background:
        radial-gradient(circle at top left, rgba(32, 78, 123, 0.28), transparent 34%),
        linear-gradient(180deg, #0b121a 0%, #101923 100%);
    color: #dbe6f2;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
    background: transparent;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 20px 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(18, 29, 40, 0.96) 0%, rgba(14, 23, 32, 0.98) 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.03);
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f0b90b 0%, #f7d35c 100%);
    color: #161616;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.admin-sidebar-brand h3 {
    margin: 0;
    color: #f6f8fb;
    font-size: 17px;
    font-weight: 800;
}

.admin-sidebar-brand p {
    margin: 4px 0 0;
    color: #7f8b98;
    font-size: 12px;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    min-height: 42px;
    margin-bottom: 6px;
    padding: 0 12px;
    border-radius: 12px;
    color: #aeb9c6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-sidebar-group {
    margin-bottom: 6px;
}

.admin-sidebar-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    margin-bottom: 6px;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #aeb9c6;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-sidebar-toggle:hover,
.admin-sidebar-group.open .admin-sidebar-toggle {
    background: rgba(255, 255, 255, 0.05);
    color: #eef4fb;
}

.admin-sidebar-chevron {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.admin-sidebar-group.open .admin-sidebar-chevron {
    transform: rotate(180deg);
}

.admin-sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 6px;
    transition: max-height 0.28s ease, opacity 0.22s ease;
}

.admin-sidebar-group.open .admin-sidebar-submenu {
    max-height: 260px;
    opacity: 1;
}

.admin-sidebar-submenu a {
    min-height: 38px;
    margin-bottom: 4px;
    padding-left: 28px;
    font-size: 13px;
}

.admin-sidebar a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #eef4fb;
    transform: translateX(1px);
}

.admin-sidebar a.active {
    background: linear-gradient(90deg, rgba(240, 185, 11, 0.18), rgba(240, 185, 11, 0.08));
    color: #f7d76f;
    border: 1px solid rgba(240, 185, 11, 0.18);
}

.admin-main {
    min-width: 0;
    padding: 20px 22px 24px;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.admin-toolbar-caption {
    color: #7f8b98;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-toolbar-title {
    margin-top: 4px;
    color: #f6f8fb;
    font-size: 24px;
    font-weight: 800;
}

.admin-toolbar-meta {
    margin-top: 8px;
    color: #96a2b0;
    font-size: 13px;
    line-height: 1.5;
}

.admin-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-content {
    min-width: 0;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-page-header h2 {
    margin: 0;
    color: #f6f8fb;
    font-size: 26px;
    font-weight: 800;
}

.admin-page-header p {
    margin: 8px 0 0;
    color: #8d9aa8;
    font-size: 14px;
    line-height: 1.6;
    max-width: 760px;
}

.admin-page-actions,
.admin-inline-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
}

.admin-pagination-summary {
    color: #96a2b0;
    font-size: 13px;
    line-height: 1.5;
}

.admin-pagination-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-pagination-actions button[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.admin-filter-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.admin-users-toolbar {
    justify-content: space-between;
}

.admin-users-toolbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-icon-toggle-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #dce6f2;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.admin-icon-toggle-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 185, 11, 0.26);
    background: rgba(240, 185, 11, 0.08);
}

.admin-icon-toggle-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.admin-icon-toggle-btn.collapsed {
    opacity: 0.72;
}

.admin-users-filter-grid {
    grid-template-columns: minmax(280px, 2.6fr) minmax(180px, 1fr) minmax(180px, 1fr) minmax(160px, 1fr);
    align-items: end;
}

.admin-withdrawals-filter-grid {
    grid-template-columns: minmax(320px, 2.3fr) minmax(220px, 1.3fr) minmax(180px, 1fr) minmax(160px, 1fr);
    align-items: end;
}

.admin-users-filter-item {
    min-width: 0;
}

.admin-users-filter-wallet {
    grid-column: 1;
    grid-row: 1;
}

.admin-users-filter-platform-balance {
    grid-column: 2;
    grid-row: 1;
}

.admin-users-filter-token-balance {
    grid-column: 3;
    grid-row: 1;
}

.admin-users-filter-status {
    grid-column: 4;
    grid-row: 1;
}

.admin-users-filter-register-ip {
    grid-column: 1;
    grid-row: 2;
}

.admin-users-filter-authorization {
    grid-column: 2;
    grid-row: 2;
}

.admin-users-filter-withdraw {
    grid-column: 3;
    grid-row: 2;
}

.admin-users-filter-distribution {
    grid-column: 4;
    grid-row: 2;
}

.admin-users-filter-remark {
    grid-column: 1;
    grid-row: 3;
}

.admin-users-filter-employee {
    grid-column: 2;
    grid-row: 3;
}

.admin-users-filter-chain {
    grid-column: 3;
    grid-row: 3;
}

.admin-users-filter-authorized-at {
    grid-column: 4;
    grid-row: 3;
}

.admin-users-filter-agent {
    grid-column: 1;
    grid-row: 4;
}

.admin-users-filter-actions {
    grid-column: 2 / 5;
    grid-row: 4;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-users-balance-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

@media (max-width: 1180px) {
    .admin-users-filter-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .admin-withdrawals-filter-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .admin-users-filter-wallet,
    .admin-users-filter-platform-balance,
    .admin-users-filter-token-balance,
    .admin-users-filter-status,
    .admin-users-filter-register-ip,
    .admin-users-filter-authorization,
    .admin-users-filter-withdraw,
    .admin-users-filter-distribution,
    .admin-users-filter-remark,
    .admin-users-filter-employee,
    .admin-users-filter-chain,
    .admin-users-filter-authorized-at,
    .admin-users-filter-agent,
    .admin-users-filter-actions {
        grid-column: auto;
        grid-row: auto;
    }

    .admin-users-filter-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .admin-users-filter-grid {
        grid-template-columns: 1fr;
    }

    .admin-withdrawals-filter-grid {
        grid-template-columns: 1fr;
    }

    .admin-users-balance-range {
        grid-template-columns: 1fr;
    }

    .admin-users-toolbar {
        align-items: flex-start;
    }
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.admin-stats-extended {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.025) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.stat-card-highlight {
    background:
        linear-gradient(135deg, rgba(240, 185, 11, 0.16) 0%, rgba(240, 185, 11, 0.06) 100%);
    border-color: rgba(240, 185, 11, 0.22);
}

.stat-card-warning {
    background:
        linear-gradient(135deg, rgba(255, 107, 107, 0.14) 0%, rgba(255, 193, 87, 0.06) 100%);
    border-color: rgba(255, 167, 38, 0.22);
}

.stat-card .label {
    color: #8a97a5;
    font-size: 13px;
    font-weight: 600;
}

.stat-card .value {
    margin-top: 10px;
    color: #f6f8fb;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.stat-card .meta {
    margin-top: 10px;
    color: #8d9aa8;
    font-size: 12px;
    line-height: 1.5;
}

.admin-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
    gap: 16px;
}

.admin-panel {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.025) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.admin-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.admin-panel-header h3 {
    margin: 0;
    color: #f6f8fb;
    font-size: 18px;
    font-weight: 700;
}

.admin-panel-header p {
    margin: 6px 0 0;
    color: #8d9aa8;
    font-size: 13px;
    line-height: 1.5;
}

.admin-kpi-list {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.admin-trend-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-trend-summary strong {
    color: #f7f9fc;
    font-size: 15px;
    font-weight: 700;
}

.admin-trend-summary span {
    color: #f0b90b;
    font-size: 15px;
    font-weight: 800;
}

.admin-trend-chart {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
    min-height: 220px;
}

.admin-trend-bar-item {
    display: grid;
    gap: 8px;
    align-items: end;
}

.admin-trend-bar-value {
    color: #8d9aa8;
    font-size: 11px;
    text-align: center;
    word-break: break-word;
}

.admin-trend-bar-track {
    position: relative;
    height: 150px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 8px;
}

.admin-trend-bar-fill {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(180deg, #5be7ff 0%, #1d8cff 100%);
    box-shadow: 0 8px 18px rgba(29, 140, 255, 0.28);
}

.admin-trend-bar-label {
    color: #a6b2c0;
    font-size: 11px;
    text-align: center;
}

.admin-alert-list {
    display: grid;
    gap: 12px;
}

.admin-alert-card {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.admin-alert-warning {
    border-color: rgba(240, 185, 11, 0.24);
    background: rgba(240, 185, 11, 0.08);
}

.admin-alert-info {
    border-color: rgba(84, 223, 255, 0.22);
    background: rgba(84, 223, 255, 0.07);
}

.admin-alert-success {
    border-color: rgba(69, 213, 124, 0.22);
    background: rgba(69, 213, 124, 0.07);
}

.admin-alert-danger {
    border-color: rgba(255, 124, 124, 0.22);
    background: rgba(255, 124, 124, 0.07);
}

.admin-alert-title {
    color: #f7f9fc;
    font-size: 14px;
    font-weight: 700;
}

.admin-alert-desc {
    margin-top: 6px;
    color: #9eabba;
    font-size: 13px;
    line-height: 1.55;
}

.admin-kpi-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-kpi-item span {
    color: #8a97a5;
    font-size: 13px;
}

.admin-kpi-item strong {
    color: #f6f8fb;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}

.admin-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

#withdrawalSummaryCards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.admin-summary-card {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

#withdrawalSummaryCards .admin-summary-card {
    min-height: 96px;
    padding: 12px 14px;
    border-radius: 14px;
}

.admin-summary-card span {
    display: block;
    color: #8d9aa8;
    font-size: 12px;
}

.admin-summary-card strong {
    display: block;
    margin-top: 8px;
    color: #f6f8fb;
    font-size: 24px;
    font-weight: 700;
}

.admin-summary-card small {
    display: block;
    margin-top: 8px;
    color: #7f8a96;
    font-size: 12px;
    line-height: 1.45;
}

#withdrawalSummaryCards .admin-summary-card strong {
    margin-top: 6px;
    font-size: 29px;
}

#withdrawalSummaryCards .admin-summary-card small {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.35;
}

#withdrawalSummaryCards .admin-summary-card span {
    font-size: 16px;
}

@media (max-width: 1400px) {
    #withdrawalSummaryCards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    #withdrawalSummaryCards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    #withdrawalSummaryCards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    #withdrawalSummaryCards {
        grid-template-columns: minmax(0, 1fr);
    }
}

.admin-tag-cloud {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-tag-button {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #dfe7f1;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.admin-tag-button:hover {
    transform: translateY(-1px);
}

.admin-tag-neutral {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.admin-tag-warning {
    background: rgba(240, 185, 11, 0.12);
    border-color: rgba(240, 185, 11, 0.22);
    color: #f0c84a;
}

.admin-tag-info {
    background: rgba(84, 223, 255, 0.1);
    border-color: rgba(84, 223, 255, 0.2);
    color: #8cecff;
}

.admin-tag-success {
    background: rgba(69, 213, 124, 0.1);
    border-color: rgba(69, 213, 124, 0.2);
    color: #72e29c;
}

.admin-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-review-title {
    margin-bottom: 10px;
    color: #f6f8fb;
    font-size: 14px;
    font-weight: 700;
}

.admin-review-list {
    display: grid;
    gap: 10px;
}

.admin-review-item {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: #dfe7f1;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.admin-review-item:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 185, 11, 0.22);
    background: rgba(255, 255, 255, 0.045);
}

.admin-review-item-main,
.admin-review-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-review-item-main strong {
    color: #f6f8fb;
    font-size: 13px;
}

.admin-review-item-main span,
.admin-review-item-meta span {
    color: #9eabba;
    font-size: 12px;
}

.admin-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.admin-quick-card {
    text-align: left;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.admin-quick-card:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 185, 11, 0.26);
    background: rgba(255, 255, 255, 0.045);
}

.admin-quick-card-title {
    display: block;
    color: #f6f8fb;
    font-size: 14px;
    font-weight: 700;
}

.admin-quick-card-desc {
    display: block;
    margin-top: 6px;
    color: #8d9aa8;
    font-size: 12px;
    line-height: 1.5;
}

.admin-table-shell {
    overflow: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.025);
}

.admin-rich-cell {
    display: grid;
    gap: 6px;
    min-width: 170px;
}

.admin-rich-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

.admin-rich-label {
    color: #8d9aa8;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 0;
}

.admin-rich-value {
    color: #eef4fb;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    white-space: nowrap;
}

.admin-rich-value-mono {
    font-family: monospace;
    font-size: 14px;
    white-space: nowrap;
}

.admin-user-address-action {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.admin-user-address-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    color: #9bb8ff;
    font-family: monospace;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.admin-user-address-trigger:hover {
    color: #b7cbff;
    text-decoration: underline;
}

.admin-user-address-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 10;
    min-width: 170px;
    padding: 6px 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    display: none;
}

.admin-user-address-action.is-open .admin-user-address-menu {
    display: block;
}

.admin-user-address-menu button {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    color: #2b2f36;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.admin-user-address-menu button:hover {
    background: #f2f4f8;
}

.admin-users-rich-table {
    min-width: 2200px;
}

.admin-users-rich-table th,
.admin-users-rich-table td {
    white-space: nowrap;
    vertical-align: top;
}

.admin-users-rich-table th {
    font-size: 16px;
}

.admin-users-col-center {
    text-align: center !important;
    vertical-align: middle !important;
}

.admin-users-col-center .admin-tag {
    margin-left: auto;
    margin-right: auto;
}

.admin-users-sticky-action {
    position: sticky;
    right: 0;
    z-index: 3;
    background: #101a24;
    box-shadow: -10px 0 18px rgba(5, 10, 18, 0.28);
}

.admin-users-rich-table thead .admin-users-sticky-action {
    z-index: 4;
    background: #18222d;
}

.admin-table-feedback-row td {
    padding: 0 !important;
    border-bottom: none !important;
    background: transparent !important;
}

.admin-table-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 68px;
    padding: 22px 16px;
    text-align: center;
    font-size: 13px;
    line-height: 1.55;
}

.admin-table-feedback-empty {
    color: #8d9aa8;
}

.admin-table-feedback-loading {
    color: #aeb9c6;
}

.admin-table-feedback-error {
    color: #ff9f9f;
}

.admin-table-feedback-spinner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(240, 185, 11, 0.26);
    border-top-color: #f0b90b;
    animation: join-spin 0.8s linear infinite;
    flex-shrink: 0;
}

.admin-toast-root {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1200;
    pointer-events: none;
}

.admin-toast {
    min-width: 220px;
    max-width: min(360px, calc(100vw - 32px));
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 21, 29, 0.96);
    color: #f6f8fb;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.admin-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.admin-toast-success {
    border-color: rgba(69, 213, 124, 0.28);
    background: rgba(19, 43, 31, 0.96);
    color: #9cf0bd;
}

.admin-toast-error {
    border-color: rgba(255, 124, 124, 0.26);
    background: rgba(53, 25, 29, 0.96);
    color: #ffb0b0;
}

.admin-toast-warning {
    border-color: rgba(240, 185, 11, 0.28);
    background: rgba(47, 36, 12, 0.96);
    color: #f7d76f;
}

.admin-toast-info {
    border-color: rgba(84, 223, 255, 0.24);
    background: rgba(16, 36, 44, 0.96);
    color: #9befff;
}

.admin-inline-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 22px;
    font-size: 13px;
    font-weight: 600;
    color: #8d9aa8;
}

.admin-inline-status-info {
    color: #9befff;
}

.admin-inline-status-success {
    color: #9cf0bd;
}

.admin-inline-status-warning {
    color: #f7d76f;
}

.admin-inline-status-error {
    color: #ffb0b0;
}

.admin-modal-overlay[hidden],
.admin-modal-panel[hidden] {
    display: none !important;
}

.admin-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 22px;
    background: rgba(6, 10, 16, 0.78);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-modal-panel {
    width: min(100%, 760px);
    max-height: calc(100vh - 44px);
    overflow: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(18, 28, 40, 0.98) 0%, rgba(14, 22, 32, 0.99) 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.admin-modal-panel-xl {
    width: min(1180px, 100%);
}

.admin-modal-panel-md {
    width: min(760px, 100%);
}

.admin-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-modal-header h3 {
    margin: 0;
    color: #f7f9fc;
    font-size: 22px;
    font-weight: 800;
}

.admin-modal-header p {
    margin: 8px 0 0;
    color: #8d9aa8;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

.admin-modal-close {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #dce6f2;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.admin-modal-body {
    padding: 20px 22px 22px;
}

.admin-detail-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.admin-detail-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.admin-detail-tab-btn {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: #b8c3cf;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-detail-tab-btn.active {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.2), rgba(240, 185, 11, 0.08));
    border-color: rgba(240, 185, 11, 0.26);
    color: #f7d76f;
}

.admin-detail-tab-pane[hidden] {
    display: none !important;
}

.admin-detail-stat {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.admin-detail-stat span {
    display: block;
    color: #8d9aa8;
    font-size: 12px;
    font-weight: 600;
}

.admin-detail-stat strong {
    display: block;
    margin-top: 8px;
    color: #f7f9fc;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.admin-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.admin-detail-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.admin-detail-card {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.admin-detail-card h4,
.admin-detail-section h4 {
    margin: 0 0 10px;
    color: #f7f9fc;
    font-size: 15px;
    font-weight: 700;
}

.admin-detail-card p {
    margin: 0 0 8px;
    color: #d6dfeb;
    font-size: 13px;
    line-height: 1.55;
    word-break: break-word;
}

.admin-detail-card p:last-child {
    margin-bottom: 0;
}

.admin-detail-kv-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.admin-detail-kv {
    min-height: 58px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.admin-detail-kv span {
    display: block;
    margin-bottom: 6px;
    color: #8d9aa8;
    font-size: 12px;
    font-weight: 600;
}

.admin-detail-kv strong {
    display: block;
    color: #eef4fb;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    word-break: break-word;
}

.admin-detail-section {
    margin-bottom: 16px;
}

.admin-detail-table-shell {
    overflow: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.admin-detail-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: #8d9aa8;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.admin-detail-empty-compact {
    min-height: 52px;
    padding: 14px 16px;
    border-style: solid;
    background: rgba(255, 255, 255, 0.015);
}

.admin-detail-empty-loading {
    color: #aeb9c6;
}

.admin-detail-empty-error {
    color: #ffb0b0;
    border-color: rgba(255, 124, 124, 0.18);
    background: rgba(255, 124, 124, 0.06);
}

.admin-approval-summary {
    margin-bottom: 14px;
}

.admin-sweep-modal {
    width: min(840px, 100%);
}

.admin-sweep-summary {
    margin-bottom: 14px;
}

.admin-sweep-grid {
    display: grid;
    gap: 12px;
}

.admin-sweep-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.admin-sweep-label {
    color: #dce6f2;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    text-align: right;
}

.admin-sweep-field {
    min-width: 0;
}

.admin-sweep-readonly,
.admin-sweep-field input {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 0;
    border: 1px solid rgba(198, 209, 222, 0.24);
    background: rgba(248, 250, 252, 0.9);
    color: #243447;
    font-size: 14px;
    box-sizing: border-box;
}

.admin-sweep-readonly[readonly] {
    color: #31465c;
    background: rgba(248, 250, 252, 0.84);
}

.admin-sweep-field input:focus {
    outline: none;
    border-color: rgba(77, 163, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.12);
}

.admin-sweep-amount-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.admin-sweep-fill-btn {
    min-width: 72px;
    min-height: 42px;
    border-radius: 0;
    background: linear-gradient(135deg, #5793f5 0%, #7fb2ff 100%);
    border-color: rgba(127, 178, 255, 0.5);
    color: #ffffff;
}

.admin-sweep-fill-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.admin-sweep-hint {
    margin: 8px 0 0 134px;
    color: #4da3ff;
    font-size: 13px;
    line-height: 1.6;
}

.admin-sweep-notice {
    margin: 16px 0 0 134px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(112, 168, 255, 0.25);
    background: rgba(82, 128, 255, 0.12);
    color: #dce9ff;
    font-size: 13px;
    line-height: 1.8;
}

.admin-sweep-notice strong {
    display: block;
    margin-bottom: 4px;
    color: #f4f8ff;
    font-size: 14px;
}

.admin-sweep-status {
    margin: 12px 0 0 134px;
    color: #999;
    font-size: 13px;
    line-height: 1.6;
}

.admin-sweep-actions {
    margin-top: 18px;
    padding-left: 134px;
}

@media (max-width: 768px) {
    .admin-sweep-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .admin-sweep-label {
        text-align: left;
    }

    .admin-sweep-hint,
    .admin-sweep-notice,
    .admin-sweep-status,
    .admin-sweep-actions {
        margin-left: 0;
        padding-left: 0;
    }

    .admin-sweep-amount-field {
        grid-template-columns: 1fr;
    }
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 13px 12px;
    background: #18222d;
    color: #9fb0c2;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table tbody td {
    padding: 12px;
    color: #d7e0ea;
    font-size: 13px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: top;
}

.data-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.admin-transfer-address-card {
    position: relative;
    min-height: 56px;
    padding-right: 110px;
}

.admin-transfer-address-line {
    line-height: 1.6;
}

.admin-transfer-address-value {
    font-family: monospace;
    font-size: 12px;
    color: #9bb8ff;
    word-break: break-all;
}

.admin-transfer-more-btn {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 88px;
    height: 30px;
    padding: 0 12px;
    border: 0;
    border-radius: 4px;
    background: #15171b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    transform: translateY(-2px);
}

.admin-transfer-address-card:hover .admin-transfer-more-btn,
.admin-transfer-address-card.is-open .admin-transfer-more-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.admin-transfer-action-menu {
    position: absolute;
    top: 36px;
    right: 0;
    z-index: 8;
    min-width: 168px;
    padding: 6px 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    display: none;
}

.admin-transfer-address-card.is-open .admin-transfer-action-menu {
    display: block;
}

.admin-transfer-action-menu button {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    color: #2b2f36;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.admin-transfer-action-menu button:hover {
    background: #f2f4f8;
}

.admin-withdrawals-table .withdrawal-index-col {
    width: 56px;
    min-width: 56px;
    max-width: 56px;
}

.admin-withdrawals-table .admin-rich-cell {
    min-width: 0;
}

.admin-withdrawals-table .admin-rich-row {
    align-items: flex-start;
    white-space: normal;
}

.admin-withdrawals-table .admin-rich-value,
.admin-withdrawals-table .admin-rich-value-mono {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
}

.admin-stakings-table .staking-index-col {
    width: 56px;
    min-width: 56px;
    max-width: 56px;
}

.admin-stakings-table .admin-rich-cell {
    min-width: 0;
}

.admin-stakings-table .admin-rich-row {
    align-items: flex-start;
    white-space: normal;
}

.admin-stakings-table .admin-rich-value,
.admin-stakings-table .admin-rich-value-mono {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
}

.admin-notifications-table .notification-index-col {
    width: 56px;
    min-width: 56px;
    max-width: 56px;
}

.admin-notifications-table td:nth-child(3) {
    min-width: 220px;
    white-space: normal;
    word-break: break-word;
}

.form-group {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    color: #93a0af;
    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 16, 22, 0.78);
    color: #eef4fb;
    font-size: 14px;
}

.form-group textarea {
    min-height: 96px;
    padding: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(240, 185, 11, 0.44);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12);
}

.admin-form-hint {
    margin: 0;
    color: #8d9aa8;
    font-size: 12px;
    line-height: 1.5;
}

.admin-user-edit-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.admin-user-edit-form-grid-span {
    grid-column: 1 / -1;
}

.admin-authorization-check-list {
    display: grid;
    gap: 16px;
}

.admin-authorization-check-modal {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #f4f5f7;
}

.admin-authorization-check-modal-body {
    padding: 0;
}

.admin-authorization-check-embed-only {
    min-height: 780px;
}

.admin-authorization-check-floating-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: rgba(18, 26, 40, 0.72);
    backdrop-filter: blur(6px);
}

.admin-authorization-check-header {
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.admin-authorization-check-header-kicker {
    display: inline-block;
    color: #9fb0c3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-authorization-check-header h3 {
    margin-top: 8px;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.admin-authorization-check-hero {
    display: grid;
    gap: 14px;
}

.admin-authorization-check-hero-main {
    padding: 18px 18px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-authorization-check-hero-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.admin-authorization-check-hero-address-wrap {
    flex: 1;
}

.admin-authorization-check-hero-address {
    color: #f5f7fb;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    word-break: break-all;
}

.admin-authorization-check-hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.admin-authorization-check-hero-links a {
    color: #9fb0c3;
    font-size: 12px;
    text-decoration: none;
}

.admin-authorization-check-hero-links a:hover {
    color: #dce6f2;
}

.admin-authorization-check-chain-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    color: #f5f7fb;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.admin-authorization-check-hero-tabs {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-authorization-check-hero-tabs span {
    position: relative;
    color: #9fb0c3;
    font-size: 13px;
    font-weight: 600;
}

.admin-authorization-check-hero-tabs span.is-active {
    color: #f5f7fb;
}

.admin-authorization-check-hero-tabs span.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 2px;
    border-radius: 999px;
    background: #f0b90b;
}

.admin-authorization-check-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    color: #cfd8e3;
    font-size: 13px;
}

.admin-authorization-check-hero-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-authorization-check-external {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.admin-authorization-check-external-warning {
    border-color: rgba(240, 185, 11, 0.26);
    background: rgba(240, 185, 11, 0.08);
}

.admin-authorization-check-external-error {
    border-color: rgba(255, 107, 107, 0.26);
    background: rgba(255, 107, 107, 0.08);
}

.admin-authorization-check-external-copy strong {
    display: block;
    color: #eef4fb;
    font-size: 14px;
    font-weight: 600;
}

.admin-authorization-check-external-copy p {
    margin: 6px 0 0;
    color: #9fb0c3;
    font-size: 12px;
    line-height: 1.6;
}

.admin-authorization-check-embed-wrap {
    display: block;
}

.admin-authorization-check-embed-frame-wrap {
    overflow: hidden;
    border-radius: 0;
    border: 0;
    background: #f4f5f7;
}

.admin-authorization-check-embed-frame {
    display: block;
    width: 100%;
    height: min(88vh, 900px);
    border: 0;
    background: #f4f5f7;
}

.admin-authorization-check-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 16, 28, 0.92);
}

.admin-authorization-check-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.admin-authorization-check-table thead th {
    padding: 14px 16px;
    color: #9fb0c3;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.admin-authorization-check-table tbody td {
    padding: 14px 16px;
    color: #e7edf6;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

.admin-authorization-check-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-authorization-check-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.admin-authorization-token-cell {
    display: grid;
    gap: 4px;
}

.admin-authorization-token-cell strong {
    color: #f5f7fb;
    font-size: 14px;
    font-weight: 600;
}

.admin-authorization-token-cell span {
    color: #9fb0c3;
    font-size: 12px;
}

.admin-authorization-note-cell {
    min-width: 220px;
    color: #9fb0c3;
    line-height: 1.6;
}

.admin-authorization-check-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.admin-authorization-check-title-row strong {
    color: #eef4fb;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 760px) {
    .admin-user-edit-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-authorization-check-header h3 {
        font-size: 28px;
    }

    .admin-authorization-check-embed-only {
        min-height: 620px;
    }

    .admin-authorization-check-embed-frame {
        height: min(82vh, 720px);
    }

    .admin-authorization-check-hero-toolbar {
        flex-direction: column;
    }

    .admin-authorization-check-external {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-authorization-check-hero-address {
        font-size: 18px;
    }

    .admin-user-edit-form-grid-span {
        grid-column: auto;
    }
}

.btn-primary,
.btn-secondary,
.btn-sm,
.btn-approve,
.btn-reject {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-sm:hover,
.btn-approve:hover,
.btn-reject:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #f0b90b 0%, #f7d35c 100%);
    color: #171717;
}

.btn-secondary,
.btn-sm {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #dce6f2;
}

.btn-sm,
.btn-approve,
.btn-reject {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 12px;
}

.btn-approve {
    background: rgba(69, 213, 124, 0.14);
    color: #4fe28a;
    border-color: rgba(69, 213, 124, 0.25);
}

.btn-reject {
    background: rgba(255, 124, 124, 0.14);
    color: #ff8c8c;
    border-color: rgba(255, 124, 124, 0.22);
}

.status-approved,
.status-pending,
.status-rejected {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.status-approved {
    background: rgba(69, 213, 124, 0.14);
    color: #4fe28a;
    border: 1px solid rgba(69, 213, 124, 0.24);
}

.status-pending {
    background: rgba(240, 185, 11, 0.14);
    color: #f0c44f;
    border: 1px solid rgba(240, 185, 11, 0.24);
}

.status-rejected {
    background: rgba(255, 124, 124, 0.14);
    color: #ff8c8c;
    border: 1px solid rgba(255, 124, 124, 0.22);
}

@media (max-width: 1180px) {
    .admin-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .admin-panel-grid {
        grid-template-columns: 1fr;
    }

    .admin-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .admin-toolbar,
    .admin-page-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-main {
        padding: 16px;
    }

    .admin-modal-overlay {
        padding: 14px;
    }

    .admin-detail-summary-grid,
    .admin-detail-meta-grid,
    .admin-detail-snapshot-grid,
    .admin-detail-kv-grid {
        grid-template-columns: 1fr;
    }

    .admin-summary-grid,
    .admin-review-grid {
        grid-template-columns: 1fr;
    }

    .admin-trend-chart {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .admin-toast-root {
        top: 14px;
        right: 14px;
        left: 14px;
    }

    .admin-toast {
        min-width: 0;
        max-width: 100%;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 2px;
}

/* ===== Responsive (small phones) ===== */
@media (max-width: 360px) {
    :root {
        --top-bar-height: 58px;
    }

    #page-home {
        --home-banner-image-position: 78% center;
        --home-banner-image-size: auto 118%;
    }

    .top-bar {
        gap: 8px;
        padding: 8px 10px;
        padding-top: calc(8px + env(safe-area-inset-top, 0px));
    }

    .dapp-top-pill {
        min-height: 40px;
        padding: 0 10px;
        gap: 6px;
    }

    .dapp-top-pill-text {
        font-size: 12px;
    }

    .wallet-dropdown {
        max-width: 132px;
        gap: 6px;
        min-height: 40px;
        padding: 0 12px 0 8px;
    }

    .wallet-dropdown:not(.connected) {
        max-width: none;
        padding: 0 14px;
    }

    .wallet-icon-badge {
        width: 20px;
        height: 20px;
    }

    #walletAddress {
        font-size: 11px;
    }

    .main-banner {
        min-height: 264px;
        padding: 18px 14px 16px;
    }

    .banner-text {
        width: min(51%, 178px);
    }

    .banner-brand {
        margin-bottom: 14px;
    }

    .banner-brand-mark {
        width: 24px;
        height: 36px;
    }

    .banner-brand-text {
        font-size: 17px;
    }

    .btn-join {
        min-height: 38px;
        padding: 0 16px;
    }

    .banner-visual {
        min-width: 124px;
    }

    .banner-phone {
        width: 110px;
        height: 172px;
        right: -2px;
        top: 24px;
    }

    .banner-coin-btc {
        width: 52px;
        height: 52px;
        right: 48px;
        top: 40px;
        font-size: 26px;
    }

    .banner-coin-bnb {
        right: 16px;
        top: 94px;
    }

    .banner-coin-eth {
        width: 50px;
        left: 2px;
        bottom: 28px;
    }

    .site-name {
        font-size: 13px;
    }

    .banner-title {
        font-size: 20px;
    }

    .pool-data-value {
        font-size: 12px;
    }

    .dual-pool-container {
        flex-direction: column;
    }

    .earn-steps {
        flex-direction: column;
        gap: 8px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }
}

/* ===== Responsive (tablets) ===== */
@media (min-width: 768px) {
    :root {
        --app-max-width: 100vw;
    }

    #page-home {
        --home-banner-image-position: 84% center;
        --home-banner-image-size: auto 114%;
    }

    .page-container {
        padding-top: calc(var(--top-bar-offset) + 14px);
    }

    .vip-activation-stack {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: stretch;
    }

    .service-hero-slide {
        min-height: 188px;
        padding: 20px 18px;
    }

    .service-feature-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .service-partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .recommend-banner {
        min-height: 220px;
        align-items: center;
        gap: 18px;
    }

    .recommend-visual {
        width: 152px;
        height: 152px;
    }

    .recommend-visual-image {
        width: 148px;
        height: 148px;
    }

    .share-guide-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 16px;
    }

    .share-step-card {
        gap: 12px;
        padding-right: 8px;
    }

    .share-step-desc {
        max-width: none;
    }

    .share-record-header,
    .share-record-row {
        min-width: 680px;
    }

    .modal-content {
        width: min(90vw, 460px);
        max-width: 460px;
    }

    .modal-content-wide {
        max-width: 620px;
    }

    .account-overview-modal-content {
        width: min(92vw, 720px);
        max-width: 720px;
    }

    .account-hero-card {
        padding: 24px 22px 22px;
    }

    .account-hero-main {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }

    .account-hero-balance-block {
        flex: 1;
    }

    .account-progress-panel {
        flex: 0 0 auto;
        justify-content: flex-end;
        padding-top: 4px;
    }

    .account-progress-widget {
        width: 142px;
        height: 142px;
    }

    .account-progress-ring {
        width: 138px;
        height: 138px;
    }

    .account-progress-percent {
        font-size: 17px;
    }

    .account-progress-text {
        font-size: 11px;
    }

    .account-summary-grid {
        gap: 14px;
    }

    .account-summary-card {
        min-height: 102px;
        padding: 16px;
    }

    .account-summary-label {
        font-size: 13px;
    }

    .account-summary-value {
        font-size: 18px;
    }

    .account-withdraw-card {
        padding: 24px 18px 20px;
    }
}

@media (min-width: 1024px) {
    :root {
        --app-max-width: 100vw;
        --page-side-gutter: clamp(12px, 1.8vw, 20px);
    }

    #page-home {
        --home-banner-image-position: 86% center;
        --home-banner-image-size: auto 116%;
    }

    .pool-data-card {
        padding: 20px 22px;
    }

    .partner-logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .service-feature-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .service-partner-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .main-banner {
        min-height: 360px;
        padding: 24px 26px 24px;
    }

    .banner-text {
        width: min(34%, 340px);
    }

    .banner-text h2 {
        font-size: clamp(28px, 3vw, 38px);
        line-height: 1.25;
    }

    .banner-text p {
        max-width: 260px;
        font-size: 16px;
    }

    .vip-activation-stack {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .recommend-banner {
        min-height: 252px;
        padding: 24px 22px 22px;
    }

    .recommend-tabs-container {
        padding: 20px 20px 24px;
    }

    .share-record-header,
    .share-record-row {
        min-width: 760px;
    }

    .account-summary-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .modal-content-wide {
        max-width: 720px;
    }

    .account-overview-modal-content {
        width: min(90vw, 860px);
        max-width: 860px;
        min-height: min(78vh, 720px);
    }

    .btn-join {
        min-height: 48px;
        padding: 0 24px;
    }
}

@media (min-width: 1440px) {
    :root {
        --app-max-width: 100vw;
        --page-side-gutter: clamp(14px, 1.6vw, 24px);
    }

    #page-home {
        --home-banner-image-position: 88% center;
        --home-banner-image-size: auto 118%;
    }

    .main-banner {
        min-height: 408px;
        padding: 28px 30px 28px;
    }

    .banner-text {
        width: min(32%, 380px);
    }

    .banner-text h2 {
        font-size: clamp(32px, 2.8vw, 44px);
    }

    .banner-text p {
        max-width: 280px;
        font-size: 17px;
    }
}
