
:root {
    /* 主色调 */
    --color-deep-brown: #3b2c1a;
    --color-light-gold: #FCD535;
    --color-dark-gold: #daa90c;
    --color-dark-green: #1d3c32;
    --color-ebony: #EAECEF;
    --color-black: #091416;

    /* 辅助色 */
    --color-cream: #f5f3ef;
    --color-light-gray: #bfbfbf;

    /* 点缀色 */
    --color-bronze: #d4a257;
    --color-green: #44c224;

    /* 字体 */
    --font-serif: 'Noto Serif SC', serif;
    --font-sans: 'Noto Sans SC', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--color-cream);
    background: var(--color-ebony);
    overflow-x: hidden;
}

.text-green {
    color: #3c6e0f;
}

.text-primary {
    background: #EAECEF;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}

.navbar {
    background: #181A20;



    backdrop-filter: blur(10px);
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: #181A20;

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-light-gold) !important;
    text-decoration: none;
    font-family: var(--font-sans);
}

.logo-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-line {
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-light-gold) 0%, var(--color-bronze) 100%);
    border-radius: 2px;
    transform: skewY(-2deg);
}

.logo-line:nth-child(1) {
    width: 20px;
    margin-left: 2px;
}

.logo-line:nth-child(2) {
    width: 22px;
    margin-left: 1px;
}

.logo-line:nth-child(3) {
    width: 24px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.main-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #EAECEF;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.main-nav-item i {
    font-size: 1.1rem;
}

.main-nav-item.active {
    color: var(--color-light-gold);
}

.main-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--color-light-gold);
    border-radius: 2px;
}

.main-nav-item.active::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 12px;
    background: rgba(180, 148, 86, 0.1);
    border-radius: 50%;
    filter: blur(4px);
}

.main-nav-item:hover {
    background: rgba(180, 148, 86, 0.05);
    color: var(--color-light-gold);
}

.sub-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #202630;
    flex-wrap: wrap;
}

.sub-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.sub-nav-item i {
    font-size: 1rem;
}

.sub-nav-item.active {
    color: var(--color-dark-gold);
}

.sub-nav-item:not(.active):hover {
    background: rgba(180, 148, 86, 0.1);
    color: var(--color-light-gold);
}

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #202630;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(180, 148, 86, 0.2);
    padding: 0.75rem 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    padding: 0 0.5rem;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #929AA5;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    flex: 1;
    max-width: 80px;
}

.bottom-nav-item i {
    font-size: 1.2rem;
}

.bottom-nav-item.active {
    color: var(--color-dark-gold);
}

.bottom-nav-item.active i {
    color: var(--color-dark-gold);
}

.bottom-nav-item:not(.active):hover {
    color: var(--color-light-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    background: rgba(180, 148, 86, 0.1);
    color: var(--color-light-gold);
}

.btn-connect {
    background: #F0B90B;
    border: none;
    color: black;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    /* border-radius: 20px; */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 162, 87, 0.3);
    font-size: 0.9rem;
}

.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 162, 87, 0.5);
    background:#FCD535;
}

.btn-connect:active {
    transform: translateY(0);
}

.navbar-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    justify-content: space-between;
    gap: 2rem;
    margin: 16px 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
    flex-shrink: 0;
}

.footer {
    background: var(--color-ebony);
    border-top: 1px solid rgba(180, 148, 86, 0.2);
    padding: 60px 0 30px;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-light-gold);
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--color-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-link:hover {
    color: var(--color-bronze);
}

.footer-bottom {
    border-top: 1px solid rgba(180, 148, 86, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--color-light-gray);
}

@media (max-width: 768px) {


    .navbar-container {
        padding: 0 1rem;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .navbar-brand {
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .navbar-content {
        flex: 1;
        justify-content: flex-end;
        gap: 0.5rem;
        min-width: 0;
    }

    .main-nav {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .main-nav-item {
        font-size: 0.6rem;
        padding: 0.3rem 0.2rem;
    }

    .main-nav-item i {
        font-size: 1rem;
    }

    .nav-actions {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .nav-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .btn-connect {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        white-space: nowrap;
    }

    .sub-nav {
        display: none !important;
    }

    .bottom-nav:not(.nav-hidden) {
        display: block !important;
    }

    .bottom-nav.nav-hidden {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .sub-nav:not(.nav-hidden) {
        display: flex !important;
    }

    .sub-nav.nav-hidden {
        display: none !important;
    }

    .bottom-nav {
        display: none !important;
    }
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E6FFE6;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-light-gold) 0%, transparent 100%);
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

/* 用户下拉菜单 */
.user-menu-wrapper {
    position: relative;
    display: inline-block;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--color-black);
    border: 1px solid var(--color-light-gold);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow: hidden;
    animation: dropdownSlideDown 0.3s ease;
    display: none;
}

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

@keyframes dropdownSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-cream);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-dropdown-item:hover {
    background: rgba(180, 148, 86, 0.1);
    color: var(--color-light-gold);
}

.user-dropdown-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.user-dropdown-divider {
    height: 1px;
    background: rgba(180, 148, 86, 0.2);
    margin: 0.25rem 0;
}

.user-info-item {
    background: rgba(180, 148, 86, 0.05);
    cursor: default;
}

.user-info-item:hover {
    background: rgba(180, 148, 86, 0.05);
    color: var(--color-cream);
}

.user-info-item .username-text {
    font-weight: 600;
    color: var(--color-light-gold);
}

@media (max-width: 768px) {
    .user-dropdown {
        min-width: 180px;
        right: -10px;
    }
}


/* ==================== 页面基础样式 ==================== */
.page-content {
    padding: 180px 2rem 4rem;
    min-height: 100vh;
    background: var(--color-black);
}

.page-content .container {
    max-width: 1400px;
}

.page-content .row {
    margin-bottom: 2rem;
}

.page-content .row:last-child {
    margin-bottom: 0;
}

.page-content .mb-4 {
    margin-bottom: 1.5rem !important;
}

/* ==================== Dashboard卡片样式 ==================== */
.dashboard-card {
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(180, 148, 86, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: solid 1px #333B47;
    background: var(--color-black);
}

.dashboard-card.full-width {
    grid-column: 1 / -1;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E6FFE6;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-light-gold) 0%, transparent 100%);
}

/* ==================== BTC 实时数据卡片 ==================== */
.btc-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btc-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f7931a 0%, #ffa500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.btc-info {
    flex: 1;
}

.btc-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0.25rem;
}

.btc-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2d2d;
}

.btc-change {
    font-size: 0.9rem;
    color: #10b981;
    margin-top: 0.25rem;
}

.btc-chart {
    width: 60px;
    height: 30px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.chart-bar {
    width: 4px;
    background: #10b981;
    border-radius: 2px;
}

/* ==================== 总收入卡片 ==================== */
.revenue-card {
    text-align: center;
}

.donut-chart {
    width: 200px;
    height: 200px;
    margin: 1rem auto;
    position: relative;
}

.donut-chart svg {
    transform: rotate(-90deg);
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-center .dollar {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-light-gold);
}

.donut-center .label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.bonus-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.bonus-card {
    flex: 1;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.bonus-dot {
    width: 8px;
    height: 8px;
    background: var(--color-light-gold);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
}

.bonus-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.bonus-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2d2d;
}

/* ==================== Announcement 卡片 ==================== */
.announcement-card {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-deep-brown) 50%, var(--color-ebony) 100%);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
    max-height: 200px;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    max-height: 200px;
    background: radial-gradient(circle, rgba(212, 162, 87, 0.2) 0%, transparent 70%);
}

.announcement-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.announcement-logo {
    width: 24px;
    height: 24px;
    background: var(--color-light-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-ebony);
    font-weight: bold;
}

.announcement-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.announcement-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* ==================== Wallet 卡片 ==================== */
.wallet-balance {
    background: linear-gradient(135deg, #edf8e1 0%, #44c224 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--color-ebony);
    margin-bottom: 1.5rem;
}

.balance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.balance-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.balance-value {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem;
    border-bottom: 1px solid rgba(180, 148, 86, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.wallet-item:hover {
    background: rgba(180, 148, 86, 0.05);
    transform: translateX(5px);
    border-bottom-color: rgba(180, 148, 86, 0.2);
}

.wallet-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.wallet-item-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-item-right {
    text-align: right;
}

.wallet-amount {
    font-weight: 600;
    color: #2d2d2d;
}

.wallet-fiat {
    font-size: 0.85rem;
    color: #666;
}

.wallet-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: white;
}

.wallet-icon.usdt {
    background: linear-gradient(135deg, #26a17b 0%, #2fb67e 100%);
}

.wallet-icon.green-point {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.wallet-icon.passive-income {
    background: #F0B90B;
}

.wallet-icon.nft {
    background: #F0B90B;
}

/* Responsive wallet list */
@media (max-width: 768px) {
    .wallet-item-card {
        padding: 14px 16px;
    }
    
    .wallet-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .wallet-info .wallet-name {
        font-size: 0.95rem;
    }
    
    .wallet-info .wallet-sub {
        font-size: 0.8rem;
    }
    
    .wallet-amount {
        font-size: 0.95rem;
    }
}

/* ==================== 邀请卡片 ==================== */
.invite-card {
    border: solid 1px #333B47;
    background: #0D1612;
    color: var(--color-cream);
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.invite-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-serif);
    color: var(--color-light-gold);
}

.invite-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    color: var(--color-cream);
}

.qr-code {
    width: 210px;
    height: 210px;
    background: white;
    border-radius: 12px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d2d2d;
    font-size: 0.8rem;
}

.qr-code-input {
    padding-top: 10px;
    width: 210px;
    border-radius: 12px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d2d2d;
    font-size: 0.8rem;
}

/* ==================== 沉香树浇水收益区块 ==================== */
.tree-section {
    padding: 2rem;
    margin-bottom: 2rem;
}

.tree-card {
    background: rgba(245, 243, 239, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(180, 148, 86, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(180, 148, 86, 0.2);
}

.tree-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-light-gold) 0%, var(--color-bronze) 100%);
}

.tree-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tree-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-light-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tree-subtitle {
    color: #666;
    font-size: 0.95rem;
}

.tree-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.tree-animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(29, 60, 50, 0.1) 0%, rgba(59, 44, 26, 0.1) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.tree-animation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(180, 148, 86, 0.1) 0%, transparent 70%);
}

#treeAnimation {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}

.tree-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tree-stat-item {
    background: white;
    border: 1px solid rgba(180, 148, 86, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tree-stat-item:hover {
    border-color: var(--color-light-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 162, 87, 0.2);
}

.tree-stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.tree-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-light-gold);
    font-family: var(--font-serif);
}

.tree-action {
    text-align: center;
    margin-top: 2rem;
}

.btn-water {
    background: #F0B90B;
    border: none;
    color: var(--color-ebony);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 162, 87, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
}

.btn-water:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 162, 87, 0.6);
    background: linear-gradient(135deg, var(--color-bronze) 0%, var(--color-light-gold) 100%);
}

.btn-water:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.water-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.water-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
    display: block;
}

.water-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    display: block;
}
.history-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    border-radius: 10px;
    background: #e0e0e0;
}
.history-table tr {
    border-radius: 12px;
    transition: all 0.25s ease;
}
.history-table td {
    vertical-align: middle;
    padding: 5px 5px;
}
/* ==================== Table 样式 ==================== */
/* ==================== Wallet List Container ==================== */
.wallet-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.wallet-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(13, 22, 18, 0.8) 0%, rgba(26, 20, 10, 0.6) 100%);
    border: 1px solid rgba(212, 162, 87, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wallet-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 213, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.wallet-item-card:hover::before {
    left: 100%;
}

.wallet-item-card:hover {
    border-color: rgba(252, 213, 53, 0.4);
    background: linear-gradient(135deg, rgba(13, 22, 18, 0.95) 0%, rgba(26, 20, 10, 0.8) 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(252, 213, 53, 0.15);
}

.wallet-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.wallet-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
    transition: all 0.3s ease;
}

.wallet-item-card:hover .wallet-icon {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.wallet-icon.usdt img {
    border-radius: 8px;
}

.wallet-icon.available-gp {
    background: linear-gradient(135deg, #F0B90B 0%, #FCD535 100%);
}

.wallet-icon.shop-gp {
    background: linear-gradient(135deg, #F0B90B 0%, #FCD535 100%);
}

.wallet-icon.smart-credit {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
}

.wallet-icon.nft {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
}

.wallet-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wallet-info .wallet-name {
    font-weight: 600;
    color: #EAECEF;
    font-size: 1rem;
    line-height: 1.3;
}

.wallet-info .wallet-sub {
    font-size: 0.85rem;
    color: rgba(234, 236, 239, 0.6);
    line-height: 1.2;
}

.wallet-item-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wallet-amount {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.05rem;
    white-space: nowrap;
    text-align: right;
}

.wallet-arrow {
    color: rgba(252, 213, 53, 0.5);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.wallet-item-card:hover .wallet-arrow {
    color: #FCD535;
    transform: translateX(4px);
}

/* Legacy wallet-table styles for backward compatibility */
.wallet-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    border-radius: 10px;
    background: #e0e0e0;
}

.wallet-table tr {
    background: linear-gradient(180deg, rgb(219 255 212 / 33%), rgb(195 255 194 / 2%) 102.14%);
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.wallet-table tr:hover {
    background: rgba(180, 148, 86, 0.08);
    transform: translateY(-2px);
}

.wallet-table td {
    vertical-align: middle;
    padding: 5px 5px;
}

.wallet-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-right {
    text-align: right;
    white-space: nowrap;
    font-weight: 600;
    color: #2d2d2d;
    font-size: 1rem;
}

.wallet-arrow {
    text-align: right;
    color: #999;
    width: 20px;
}

table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.table {
    border-collapse: separate;
    border-spacing: 0 10px;
    width: 100%;
}

.wallet-table .table tr {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 120, 0.1);
}

.table td {
    padding: 12px 16px;
    color: #e6ffe6;
    border: none;
}

.table tr td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.table tr td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.wallet-table .table tr:hover {
    background: linear-gradient(135deg, rgba(139, 255, 60, 0.2), rgba(108, 124, 47, 0.3));
    box-shadow: 0 0 15px rgba(122, 255, 0, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Settings Card 样式 ==================== */
.settings-card {
    /* background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%); */
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* max-width: 600px; */
    margin: auto;
}

.list-item {
    display: block;
    padding: 14px 20px;
    margin-bottom: 8px;
    border-radius: 12px;
    background: #282d37;
    text-decoration: none;
    transition: all 0.2s ease;
}

.list-item:hover {
    background: linear-gradient(180deg, #777f79 0%, #5d5d5d 100%);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.bg-gradient-yellow {
    background: linear-gradient(135deg, #facc15, #eab308);
}

.text-12 {
    font-size: 12px;
    font-weight: 700;
}

/* ==================== Team Card 样式 ==================== */
.team-card {
    background: linear-gradient(180deg, #f7fbff, #eaf1ff);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    width: 500px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.toggle-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #FCD535;
    color: #fff;
    text-align: center;
    line-height: 28px;
    position: absolute;
    left: -45px;
    top: 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

.node-children {
    margin-left: 40px;
    border-left: 3px solid #b184ff;
}

/* ==================== Tree Node 样式 ==================== */
.tree-node {
    border: solid 1px #333B47;
    background: black;
    border-radius: 16px;
    padding: 20px;
    margin: 15px 0;
    width: 300px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-family: Arial, sans-serif;
    overflow: visible;
}

#tree-wrapper {
    padding: 10px;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}

#tree {
    padding-left: 10px;
    padding-right: 10px;
}

.tree-line {
    border-left: 3px solid #9aff84;
    margin-left: 25px;
    padding-left: 25px;
}

.node-title {
    font-size: 0.7rem;
    font-weight: 600;
}

.node-team {
    color: #777;
    margin-bottom: 10px;
    font-size: 14px;
}

.badge-level {
    position: absolute;
    right: 15px;
    top: 15px;
    background: #cbffc2;
    color: #3b2922;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {
    .page-content {
        padding: 100px 0.1rem 0.1rem;
    }
    
    .page-content .row {
        margin-bottom: 1.5rem;
    }
    
    .page-content .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .dashboard-card {
        margin-bottom: 1.5rem;
    }
    
    .bonus-cards {
        gap: 0.5rem;
    }
    
    .bonus-card {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .bonus-title {
        font-size: 0.65rem;
    }
    
    .bonus-value {
        font-size: 0.75rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .btc-card {
        gap: 1rem;
    }
    
    .btc-logo {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .btc-value {
        font-size: 1.2rem;
    }
    
    .donut-chart {
        width: 180px;
        height: 180px;
    }
    
    .wallet-balance {
        padding: 1.5rem;
    }
    
    .balance-value {
        font-size: 24px;
    }
    
    .balance-label {
        font-size: 14px;
    }
    
    .announcement-title {
        font-size: 2rem;
    }
    
    .announcement-subtitle {
        font-size: 1.3rem;
    }
    
    .invite-card {
        min-height: 280px;
    }
    
    .tree-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .tree-card {
        padding: 1.5rem;
    }
    
    .tree-title {
        font-size: 1.5rem;
    }
    
    .tree-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tree-animation-container {
        min-height: 200px;
    }
    
    .tree-stat-value {
        font-size: 1.5rem;
    }
    
    .btn-water {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tree-node {
        padding: 20px;
    }
    
    .node-title {
        font-size: 0.7rem;
    }
    
    .toggle-btn {
        left: -12px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }
    
    .tree-line {
        margin-left: 20px;
        padding-left: 18px;
    }
    
    .badge-level {
        font-size: 11px;
        padding: 4px 10px;
        background: #cbffc2;
        color: #3b2922;
        right: 10px;
        top: 10px;
    }
}

/* ==================== Invite Card 额外状态 ==================== */
.invite-card {
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.invite-card.not-logged-in {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

.invite-card.not-logged-in .qr-code,
.invite-card.not-logged-in .qr-code-input,
.invite-card.not-logged-in .invite-title,
.invite-card.not-logged-in .invite-subtitle {
    filter: blur(5px);
    opacity: 0.5;
    pointer-events: none;
}

.invite-card.not-logged-in .login-prompt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    text-align: center;
    white-space: nowrap;
}

/* ==================== Package/Product Card 样式 ==================== */
.card {
    background: #3d3838;
    border-radius: 20px;
    border: 2px solid #FCD535;
    padding: 10px;
    margin-bottom: 25px;
    color: white;
}

.card-header {
    display: flex;
    align-items: center;
}

.logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 15px;
}

.title {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0;
}

.symbol {
    font-size: 14px;
    opacity: .7;
}

.metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 20px 0;
}

.metric .label {
    font-size: 0.8rem;
    color: #ddd;
}

.metric .value {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FCD535;
}

.highlight {
    color: #FCD535;
}

.desc {
    opacity: .9;
    margin: 15px 0 20px;
}

.info-box {
    margin-left: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 15px;
}

.button-box {
    margin-left: 20px;
    padding: 15px;
    border-radius: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 15px;
}

/* ==================== Purchase Buttons ==================== */
.purchase {
    padding: 0.7rem !important;
    color: black;
    border: 1px solid #FCD535 !important;
    background: #FCD535 !important;
    font-weight: 700 !important;
    line-height: 20px;
    letter-spacing: 0;
}

.purchased {
    padding: 0.5rem !important;
    color: black;
    border: 1px solid #FCD535 !important;
    background: #FCD535 !important;
    font-weight: 700 !important;
    line-height: 20px;
    letter-spacing: 0;
}

/* ==================== Modal 样式 ==================== */
.modal-content {
    background-color: #091416;
    border: solid 1px #333B47;
}

.modal-header {
    border-bottom: solid 1px #333B47;
}

.modal-footer {
    border-top: solid 1px #333B47;
}

.swal-neon {
    border: 2px solid #00eaff !important;
    box-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
    border-radius: 12px !important;
}

/* ==================== Navigation 样式 ==================== */
.bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bottom-nav-item.active {
    font-weight: 700;
}

/* ==================== Water Drop Animation ==================== */
@keyframes drop {
    to {
        top: 80%;
        opacity: 0;
    }
}

/* ==================== Change Password 特有样式 ==================== */
.button_submit {
    padding: 14px !important;
    color: #fff;
    border: 1px solid #2ddd2e !important;
    background: linear-gradient(270deg, #2ddd2e, #83c42e) !important;
    font-weight: 700 !important;
    line-height: 20px;
    letter-spacing: 0;
}

.password-label {
    font-weight: 500;
    color: #ffffff;
}

.input-wrapper {
    position: relative;
}

.password-input {
    border: 1px solid #d9bffb;
    border-radius: 12px;
    padding: 12px 45px 12px 16px;
    font-size: 16px;
    color: #333;
}

.password-input::placeholder {
    color: #091416;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.password-toggle:hover {
    color: #000;
}

.text-small {
    font-size: 0.7rem;
    background: grey;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-tabs {
    border-bottom-color: #FCD535;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-color: #FCD535;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: #FCD535;
}

/* ==================== Hero Section 样式 ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 200px 0 80px;
    background: 
        radial-gradient(ellipse at center, rgba(29, 60, 50, 0.4) 0%, transparent 70%),
        linear-gradient(180deg, rgba(42, 42, 40, 0.8) 0%, rgba(59, 44, 26, 0.9) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(180, 148, 86, 0.03) 2px, rgba(180, 148, 86, 0.03) 4px);
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-light-gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: #F0B90B;
    color: var(--color-ebony);
    box-shadow: 0 4px 20px rgba(212, 162, 87, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 162, 87, 0.6);
    background: linear-gradient(135deg, var(--color-bronze) 0%, var(--color-light-gold) 100%);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid var(--color-light-gold);
    color: var(--color-light-gold);
}

.btn-hero-outline:hover {
    background: var(--color-light-gold);
    color: var(--color-ebony);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(180, 148, 86, 0.4);
}

/* ==================== Features Section 样式 ==================== */
.features-section {
    padding: 100px 0;
    background: var(--color-ebony);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-light-gold);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

.feature-card {
    background: rgba(42, 42, 40, 0.8);
    border: 1px solid rgba(180, 148, 86, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 162, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-bronze);
    box-shadow: 0 10px 40px rgba(212, 162, 87, 0.3);
}

.feature-icon {
    font-size: 4rem;
    color: var(--color-bronze);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-light-gold);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-light-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-feature {
    background: transparent;
    border: 2px solid var(--color-light-gold);
    color: var(--color-light-gold);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-feature:hover {
    background: var(--color-light-gold);
    color: var(--color-ebony);
    transform: scale(1.05);
}

/* ==================== NFT Section 样式 ==================== */
.nft-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-ebony) 0%, var(--color-deep-brown) 100%);
}

.nft-card {
    background: rgba(42, 42, 40, 0.9);
    border: 1px solid rgba(180, 148, 86, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.nft-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-bronze);
    box-shadow: 0 15px 50px rgba(212, 162, 87, 0.4);
}

.nft-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-deep-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-light-gold);
}

.nft-body {
    padding: 1.5rem;
}

.nft-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-light-gold);
    margin-bottom: 0.5rem;
}

.nft-price {
    font-size: 1.3rem;
    color: var(--color-bronze);
    font-weight: 700;
}

/* ==================== Animations ==================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease-out;
}

/* ==================== Hero Section 响应式 ==================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}


/* ==================== Wallet Page 样式 ==================== */
.dashboard-card {
    border-radius: 24px;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: solid 1px #333B47;
   /* background: linear-gradient(135deg, #0D1612 0%, #0a1a0f 100%);*/
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-card:hover::before {
    opacity: 1;
}


.wallet-balance {
    background: #202630;
    border-radius: 16px;
    padding: 1rem 1rem;
    color: var(--color-ebony);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* .wallet-balance::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: #202630;
    border-radius: 50%;
} */

.wallet-balance:hover {
}

.wallet-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.wallet-header img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.wallet-header:hover img {
    transform: scale(1.1) rotate(5deg);
}

.wallet-header .text-gradient {
    background: linear-gradient(135deg, #26a17b 0%, #2fb67e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.balance-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.balance-value .text-muted {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.table tr:hover {
    border-left: 2px solid rgba(99, 204, 71, 0.5);
}

.btn-gradient {
    background: linear-gradient(135deg, #b7fdb5 0%, #d2fa8b 100%);
    color: #1a1a1a;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(183, 253, 181, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(183, 253, 181, 0.4);
    background: linear-gradient(135deg, #c8fec6 0%, #dfffa0 100%);
}

.btn-gradient:active {
    transform: translateY(-1px);
}

.btn-gradient-light {
    background: linear-gradient(135deg, rgba(183, 253, 181, 0.8) 0%, rgba(210, 250, 139, 0.8) 100%);
    color: #1a1a1a;
    border: 1px solid rgba(183, 253, 181, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(183, 253, 181, 0.2);
}

.btn-gradient-light:hover {
    background: linear-gradient(135deg, rgba(183, 253, 181, 1) 0%, rgba(210, 250, 139, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(183, 253, 181, 0.3);
    border-color: rgba(183, 253, 181, 0.8);
}

.btn-outline-gradient {
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(183, 253, 181, 0.1) 0%, rgba(210, 250, 139, 0.1) 100%);
    color: #b7fdb5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    position: relative;
    background-clip: padding-box;
}

.btn-outline-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #b7fdb5, #d2fa8b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-outline-gradient:hover::before {
    opacity: 1;
}

.btn-outline-gradient:hover {
    background: linear-gradient(135deg, rgba(183, 253, 181, 0.2) 0%, rgba(210, 250, 139, 0.2) 100%);
    color: #d2fa8b;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(183, 253, 181, 0.2);
}

.wallet-record {
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.wallet-tabs {
    border-bottom: 1px solid rgba(0, 255, 120, 0.1);
}

.wallet-tabs .nav-link {
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    border-radius: 12px 12px 0 0;
    margin-right: 8px;
    padding: 12px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
}

.wallet-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #63cc47, #44c224);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wallet-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 255, 120, 0.05);
}

.wallet-tabs .nav-link.active {
    background: rgba(99, 204, 71, 0.15);
    color: #63cc47;
    font-weight: 700;
}

.wallet-tabs .nav-link.active::after {
    transform: scaleX(1);
}

.table-wallet th {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    border-bottom: 1px solid  #FCD535;
    padding: 16px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background: rgba(0, 255, 120, 0.05);
}

.table-wallet td {
    border: none;
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 16px;
    font-size: 0.95rem;
}

.no-record {
    text-align: center;
    padding: 60px 40px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.no-record::before {
    content: '📋';
    display: block;
    font-size: 3rem;
    opacity: 0.3;
}

.table>:not(caption)>*>* {
    padding: .5rem .5rem;
    color: white;
    background-color: #0d1612;
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}

.pagination {
    gap: 0.5rem;
}

.pagination .page-link {
    background: rgba(0, 255, 120, 0.1);
    border: 1px solid rgba(0, 255, 120, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination .page-link:hover {
    background: rgba(0, 255, 120, 0.2);
    border-color: rgba(0, 255, 120, 0.4);
    color: #63cc47;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: #f0b90b;
    border-color: #f0b90b;
    color: #0D1612;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(99, 204, 71, 0.3);
}

.pagination .page-item.disabled .page-link {
    background: rgba(0, 255, 120, 0.05);
    border-color: rgba(0, 255, 120, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}
.dashboard-card h5 {
    color: #E6FFE6;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.dashboard-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #63cc47, transparent);
    border-radius: 2px;
}

#topUpModal .modal-content {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

#topUpModal .modal-header {
    padding: 1.5rem;
}

#topUpModal .modal-body {
    padding: 2rem;
}

#topUpModal .modal-footer {
    padding: 1rem 1.5rem;
}

#topUpModal .qr-code {
    transition: transform 0.3s ease;
}

#topUpModal .qr-code:hover {
    transform: scale(1.02);
}

#topUpModal .input-group .form-control:focus {
    background: rgba(0, 255, 120, 0.15);
    border-color: rgba(0, 255, 120, 0.4);
    color: #63cc47;
    box-shadow: 0 0 0 0.2rem rgba(99, 204, 71, 0.25);
}

#topUpModal .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.7;
}

#topUpModal .btn-close-white:hover {
    opacity: 1;
}

#copyAddressBtn {
    min-width: 80px;
    transition: all 0.3s ease;
}

#copyAddressBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 253, 181, 0.4);
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

/* ==================== Wallet Page 响应式 ==================== */
@media (max-width: 768px) {
    .wallet-header img {
        width: 48px;
        height: 48px;
    }

    .dashboard-card {
        padding: 1.5rem;
    }

    .wallet-tabs .nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .balance-value {
        font-size: 1.8rem;
    }
}

/* ==================== Team Page 特有样式 ==================== */
.tree-node {
    background: #3d3838;
}

.node-team {
    color: white;
}

.toggle-btn {
    width: 32px;
    height: 32px;
    line-height: 32px;
    left: -18px;
    top: 18px;
    font-size: 22px;
    z-index: 9999;
}

/* ==================== Purchase/Record Page 特有样式 ==================== */
.package-title {
    font-size: 1rem;
    font-weight: 700;
    color: #E6FFE6;
    margin-bottom: 1rem;
    text-align: center;
}

.section-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 18px;
    margin-top: 18px;
}

.section-box .label {
    color: #c7c7c7;
    font-size: 0.8rem;
}

.section-box .value {
    color: #FCD535;
    font-size: 0.9rem;
    font-weight: bold;
}

.progress-container {
    height: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-top: 8px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #05e1ff, #8a2bff);
    transition: width 0.5s;
}

.wallet-box {
    margin-top: 20px;
    padding: 15px;
    background: #121630;
    border-radius: 15px;
}

.wallet-title {
    color: #8aa0ff;
    font-size: 16px;
}

.wallet-value {
    color: #ffd45c;
    font-weight: bold;
    font-size: 20px;
}

.time-text {
    text-align: center;
    margin-top: 15px;
    color: #9f9f9f;
}

.stake-card {
    background: #151836;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    transition: 0.2s;
}

.stake-card:hover {
    border-color: #6f42c1;
    box-shadow: 0 0 25px rgba(111, 66, 193, 0.4);
}

.badge-open {
    background: #8a2be2;
    color: #fff;
    border-radius: 10px;
    padding: 4px 12px;
    font-size: 12px;
    text-transform: uppercase;
}

.small-label {
    color: #999;
    font-size: 0.6rem;
}

/* Purchase page specific button gradient */
.purchase-page .btn-gradient {
    background: linear-gradient(90deg, #81f886, #ffffff);
    color: black;
    border: none;
    padding: 8px 20px;
    border-radius: 12px;
    transition: 0.2s;
}

.purchase-page .btn-gradient:hover {
    opacity: 0.8;
    color: #fff;
}

