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

        /* 匿名墙列表项 */
.anon-wall-item {
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,0.99), rgba(245,249,255,0.96));
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    min-width: 0;
}
.anon-wall-item:last-child { margin-bottom: 0; }
.anon-wall-item-meta {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.anon-wall-item-content {
    font-size: 13px;
    color: #0f172a;
    white-space: pre-wrap;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.anon-wall-item-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 2px 0 4px 0;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.anon-wall-item-preview {
    font-size: 12px;
    color: #475569;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.anon-wall-item .d-flex.justify-content-between {
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.anon-wall-item .badge {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

#anon-wall-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    align-items: start;
    width: 100%;
    margin: 10px 0 0 0;
    padding: 4px 2px;
}

#allowance-results {
    max-height: none !important;
    overflow: visible !important;
}

.allowance-card {
    border: 1px solid rgba(135, 206, 235, 0.35);
    border-radius: 14px;
    padding: 14px 14px 12px 14px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.allowance-card:last-child {
    margin-bottom: 0;
}

.allowance-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.allowance-title {
    font-weight: 800;
    font-size: 13px;
    color: #0f172a;
    letter-spacing: 0.2px;
}

.allowance-risk {
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    line-height: 1;
    white-space: nowrap;
}

.allowance-risk.risk-high {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
    color: #b91c1c;
}

.allowance-risk.risk-medium {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
    color: #b45309;
}

.allowance-risk.risk-low {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.35);
    color: #047857;
}

.allowance-meta {
    font-size: 12px;
    color: #334155;
    line-height: 1.55;
    margin: 2px 0;
    word-break: break-word;
}

.allowance-meta code {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #0f172a;
    font-size: 12px;
}

.allowance-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.allowance-actions .btn {
    border-radius: 12px;
    font-weight: 700;
}

.allowance-actions .btn-outline-secondary {
    border-color: rgba(135, 206, 235, 0.55);
    color: #0f172a;
    background: rgba(255, 255, 255, 0.6);
}

.allowance-actions .btn-outline-secondary:hover {
    background: rgba(135, 206, 235, 0.16);
    border-color: rgba(135, 206, 235, 0.85);
}

.allowance-actions .allowance-revoke-btn {
    padding-left: 14px;
    padding-right: 14px;
}

#cloneag-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 16px;
    align-items: stretch;
    grid-auto-rows: 1fr;
    padding: 0 12px;
}

.cloneag-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Noto Sans SC", "HarmonyOS Sans", "Inter", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

.cloneag-card .badge {
    font-weight: 700;
    letter-spacing: 0.2px;
    overflow: visible !important;
}

.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cloneag-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(245,249,255,0.96));
    border: 1px solid rgba(135, 206, 235, 0.25);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: #0f172a;
    line-height: 1.7;
    font-size: 14px;
    letter-spacing: 0.1px;
}

.cloneag-embed-wrapper {
    position: relative;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.2s ease;
}

.wallet-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

        html, body {
            background: var(--bg-color);
            color: var(--text-color);
            font-family: 'Inter', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            overflow: hidden;
            height: 100vh;
            width: 100vw;
            margin: 0;
            padding: 0;
            position: relative;
        }


        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, rgba(135, 206, 235, 0.05) 1px, transparent 1px),
                linear-gradient(180deg, rgba(135, 206, 235, 0.05) 1px, transparent 1px),
                linear-gradient(135deg, rgba(240, 248, 255, 0.95) 0%, rgba(230, 240, 250, 0.98) 50%, rgba(220, 230, 240, 0.95) 100%);
            background-size: 50px 50px, 50px 50px, 100% 100%;
            pointer-events: none;
            z-index: -1;
        }

        body.with-bg-video::before {
            display: none;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(135, 206, 235, 0.15) 50%, transparent 100%),
                linear-gradient(0deg, transparent 0%, rgba(192, 192, 192, 0.1) 50%, transparent 100%);
            pointer-events: none;
            z-index: -1;
        }

        body.with-bg-video::after {
            display: none;
        }

        /* 顶部导航栏 */
        .top-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(40px) saturate(180%);
            -webkit-backdrop-filter: blur(40px) saturate(180%);
            border-bottom: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 0 2px 20px rgba(135, 206, 235, 0.15);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 1000;
            flex-wrap: nowrap;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #4682B4;
            font-size: 20px;
            font-weight: 600;
            text-decoration: none;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.3);
        }

        .navbar-brand img {
            height: 32px;
            width: auto;
            border-radius: 6px;
        }

        .navbar-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .navbar-link {
            color: #708090;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .navbar-link:hover,
        .navbar-link.active {
            color: #87CEEB;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.5);
        }

        .navbar-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .navbar-nav {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            align-items: center !important;
            gap: 15px !important;
            list-style: none !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .modal {
            z-index: 99999 !important;
            position: fixed;
            pointer-events: auto;
        }

        .modal-backdrop.show {
            z-index: 99990 !important;
            opacity: 0; /* 不再遮挡点击 */
            pointer-events: none;
        }

/* 钱包弹窗玻璃质感 */
.wallet-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 110000;
    transition: opacity 0.2s ease;
    opacity: 0;
}
.wallet-modal-backdrop.active {
    opacity: 1;
}
.wallet-modal {
    width: 420px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 25px 80px rgba(0,0,0,0.18);
    border-radius: 18px;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    padding: 18px;
    color: #1e293b;
}
.wallet-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.wallet-modal-title {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wallet-modal-close {
    border: none;
    background: transparent;
    color: #475569;
    font-size: 16px;
    cursor: pointer;
}
.wallet-modal-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 12px;
}
.wallet-modal-search input {
    border: none;
    background: transparent;
    flex: 1;
    outline: none;
    color: #475569;
    font-size: 13px;
}
.wallet-count {
    font-size: 12px;
    color: #94a3b8;
}
.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wallet-item {
    width: 100%;
    border: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(245,248,252,0.9) 100%);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 14px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.2s ease;
}
.wallet-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}
.wallet-item-left {
    display: flex;
    align-items: center;
    gap: 6px;
}
.wallet-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.wallet-icon.chain-eth { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/ethereum/info/logo.png'); background-color: #f3f4f6; }
.wallet-icon.chain-bsc { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/smartchain/info/logo.png'); background-color: #f7f3e8; }
.wallet-icon.chain-base { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/base/info/logo.png'); background-color: #e5f0ff; }
.wallet-icon.chain-arb { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/arbitrum/info/logo.png'); background-color: #e8f3ff; }
.wallet-icon.chain-sol { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/solana/info/logo.png'); background-color: #f1e8ff; }
.wallet-icon.chain-tron { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/tron/info/logo.png'); background-color: #fff2f2; }
.wallet-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.wallet-name {
    font-weight: 600;
    color: #0f172a;
}
.wallet-tag {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,0.08);
}
.wallet-tag.installed { color: #16a34a; background: rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.2); }
.wallet-tag.beta { color: #2563eb; background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.2); }
.wallet-tag.upcoming { color: #d97706; background: rgba(217,119,6,0.12); border-color: rgba(217,119,6,0.2); }
.wallet-chain-badge {
    font-size: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(14, 116, 144, 0.12);
    color: #0ea5e9;
    border: 1px solid rgba(14, 165, 233, 0.25);
}
.wallet-chain-badge.sol {
    background: rgba(88, 28, 135, 0.12);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.25);
}

/* 个人中心钱包卡片 */
.personal-wallet-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(236,244,255,0.9));
    border: 1px solid rgba(191, 219, 254, 0.7);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.personal-wallet-card .d-flex.align-items-center.justify-content-between {
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
}
.wallet-chain-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(14, 116, 144, 0.12);
    color: #0ea5e9;
    border: 1px solid rgba(14, 165, 233, 0.2);
}
.wallet-address-chip {
    background: rgba(15, 23, 42, 0.05);
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 13px;
    color: #475569;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.wallet-linked-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wallet-linked-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(232, 241, 255, 0.95));
    border: 1px solid rgba(191, 219, 254, 0.8);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.wallet-linked-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wallet-linked-avatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5bd0ff, #7c8aff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(91, 208, 255, 0.4);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.wallet-linked-avatar.chain-eth { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/ethereum/info/logo.png'); background-color: #f3f4f6; }
.wallet-linked-avatar.chain-bsc { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/smartchain/info/logo.png'); background-color: #f7f3e8; }
.wallet-linked-avatar.chain-base { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/base/info/logo.png'); background-color: #e5f0ff; }
.wallet-linked-avatar.chain-arb { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/arbitrum/info/logo.png'); background-color: #e8f3ff; }
.wallet-linked-avatar.chain-sol { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/solana/info/logo.png'); background-color: #f1e8ff; }
.wallet-linked-avatar.chain-tron { background-image: url('https://cdn.jsdelivr.net/gh/trustwallet/assets@master/blockchains/tron/info/logo.png'); background-color: #fff2f2; }
.wallet-linked-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.wallet-linked-name {
    font-weight: 700;
    color: #0f172a;
}
.wallet-linked-address {
    font-size: 13px;
    color: #475569;
}
.wallet-linked-chain {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(14, 116, 144, 0.12);
    color: #0ea5e9;
    border: 1px solid rgba(14, 165, 233, 0.2);
}
.wallet-linked-chain.sol {
    background: rgba(88, 28, 135, 0.12);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.25);
}
.wallet-linked-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wallet-unbind-btn {
    border: none;
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.2s ease;
}
.wallet-unbind-btn:hover {
    background: rgba(239, 68, 68, 0.18);
}

        .navbar-nav .nav-item {
            margin: 0 !important;
            display: block !important;
            list-style: none !important;
            float: none !important;
        }

        .navbar-nav .nav-link {
            color: #708090;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 6px;
        }

        .navbar-nav .nav-link:hover {
            color: #87CEEB;
            background: rgba(135, 206, 235, 0.1);
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.5);
        }

        .navbar-nav .nav-link .nav-icon {
            font-size: 14px;
        }

        .navbar-nav .nav-link .nav-text {
            font-size: 14px;
        }

        /* 移动端：导航链接可以横向滚动（此样式已被下方更详细的移动端样式覆盖） */

        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px) saturate(180%);
            border-radius: 20px;
            font-size: 13px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.2);
            color: #4A5568;
        }

        .user-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #87CEEB, #B0C4DE);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 12px;
            box-shadow: 0 2px 8px rgba(135, 206, 235, 0.4);
        }

        /* 主布局 */
        .main-layout {
            display: flex;
            margin-top: 0;
            height: calc(100vh - 60px);
            padding-top: 0;
            overflow-x: visible;
            overflow-y: hidden;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
        }

        /* 左侧边栏 */
        .left-sidebar {
            width: 280px;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(50px) saturate(180%);
            -webkit-backdrop-filter: blur(50px) saturate(180%);
            border-right: 1px solid rgba(135, 206, 235, 0.3);
            box-shadow: 2px 0 20px rgba(135, 206, 235, 0.1);
            padding: 15px;
            overflow-y: auto;
            overflow-x: visible;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: width 0.3s ease, padding 0.3s ease;
            scrollbar-width: none; /* Firefox - 隐藏滚动条 */
            -ms-overflow-style: none; /* IE/Edge - 隐藏滚动条 */
        }
        
        /* Chrome/Safari - 隐藏左侧边栏滚动条 */
        .left-sidebar::-webkit-scrollbar {
            display: none;
            width: 0;
            height: 0;
        }

        .left-sidebar.collapsed {
            width: 50px;
            padding: 15px 5px;
        }

        .left-sidebar.collapsed .sidebar-widget {
            opacity: 0;
            pointer-events: none;
            overflow: hidden;
            height: 0;
            margin: 0;
            padding: 0;
        }

        .left-sidebar.collapsed .sidebar-toggle-btn {
            transform: rotate(180deg);
        }

        /* 侧边栏折叠按钮 */
        .sidebar-toggle-btn {
            position: fixed;
            top: 72px;
            left: 0;
            right: auto;
            transform: none;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(34, 197, 94, 0.55);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 120001;
            box-shadow: 0 6px 16px rgba(34, 197, 94, 0.28);
            transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.15s ease;
            color: #22C55E;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .sidebar-toggle-btn:hover {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 10px 22px rgba(34, 197, 94, 0.42);
            transform: scale(1.08);
            border-color: rgba(34, 197, 94, 0.8);
        }
        
        .sidebar-toggle-btn:active {
            transform: scale(0.95);
        }
        


        .left-sidebar::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(135, 206, 235, 0.6), transparent);
        }

        .sidebar-widget {
            margin-bottom: 15px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(192, 192, 192, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.1);
            border-radius: 16px;
            padding: 12px;
            flex-shrink: 0;
            position: relative;
            transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
            overflow: visible;
        }

        .sidebar-widget::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.6), transparent);
        }

        .widget-title {
            font-size: 12px;
            color: #708090;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .time-widget {
            text-align: center;
        }

        .time-display {
            font-size: 32px;
            font-weight: 600;
            color: #4682B4;
            margin-bottom: 5px;
        }

        .date-display {
            font-size: 13px;
            color: #708090;
            margin-bottom: 15px;
        }

        .ip-info-section {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ip-info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-size: 12px;
        }

        .ip-info-label {
            color: #888;
        }

        .ip-info-value {
            color: #c0c0c0;
            font-weight: 500;
        }

        .ip-purity-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 600;
        }

        .ip-purity-badge.low {
            background: rgba(255, 68, 68, 0.2);
            color: #ff4444;
            border: 1px solid rgba(255, 68, 68, 0.4);
        }

        .ip-purity-badge.medium {
            background: rgba(255, 200, 0, 0.2);
            color: #ffc800;
            border: 1px solid rgba(255, 200, 0, 0.4);
        }

        .ip-purity-badge.high {
            background: rgba(0, 255, 136, 0.2);
            color: #00ff88;
            border: 1px solid rgba(0, 255, 136, 0.4);
        }

        .ip-consent-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 10;
        }

        .ip-consent-overlay.hidden {
            display: none;
        }

        .ip-consent-text {
            color: #c0c0c0;
            font-size: 13px;
            text-align: center;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .ip-consent-buttons {
            display: flex;
            gap: 10px;
        }

        .ip-consent-btn {
            padding: 8px 20px;
            border-radius: 8px;
            border: 1px solid rgba(0, 255, 136, 0.3);
            background: rgba(0, 255, 136, 0.1);
            color: #00ff88;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .ip-consent-btn:hover {
            background: rgba(0, 255, 136, 0.2);
            border-color: rgba(0, 255, 136, 0.5);
        }

        .ip-consent-btn.no {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
            color: #b0b0b0;
        }

        .ip-consent-btn.no:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .time-widget {
            position: relative;
        }


        .apps-widget {
            text-align: center;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 15px;
            overflow: visible;
            opacity: 1;
        }

        .app-item {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            border: 1px solid rgba(192, 192, 192, 0.4);
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.1);
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .app-item:hover:not(.app-item-disabled) {
            border-color: rgba(135, 206, 235, 0.6);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            transform: translateY(-2px);
            box-shadow: 
                0 4px 15px rgba(135, 206, 235, 0.25),
                0 0 20px rgba(135, 206, 235, 0.15);
        }

        .app-item-icon {
            font-size: 24px;
            color: #87CEEB;
            margin-bottom: 6px;
            filter: drop-shadow(0 1px 3px rgba(135, 206, 235, 0.4));
        }

        .app-item-name {
            font-size: 11px;
            color: #4A5568;
            font-weight: 500;
        }

        .user-profile {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .user-name {
            font-weight: 600;
            color: #4682B4;
        }

        .user-email {
            font-size: 12px;
            color: #708090;
        }

        /* 主内容区 */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            background: transparent;
            position: relative;
            overflow: hidden;
            padding: 20px 30px 20px 30px;
            gap: 15px;
            height: 100%;
        }

        .welcome-section {
            padding: 0;
            text-align: center;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

        .welcome-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 0;
            color: #4682B4;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.3);
        }

        /* AI助手输入区域 */
        .ai-chat-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
            margin: 0;
        }

        .ai-chat-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            /* 淡蓝色、银色、灰色风格 */
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(192, 192, 192, 0.4);
            box-shadow: 0 4px 20px rgba(135, 206, 235, 0.15);
            border-radius: 24px;
            padding: 20px;
            margin: 0;
            height: 100%;
            min-height: 0;
            position: relative;
            overflow: hidden;
            /* 过渡动画 */
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ai-chat-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
        }

        .ai-chat-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(135, 206, 235, 0.6) 50%, 
                transparent
            );
            pointer-events: none;
        }

        .ai-chat-messages {
            flex: 1;
            overflow-y: auto;
            overflow-x: visible;
            margin-bottom: 15px;
            padding: 15px;
            /* 淡蓝色、银色、灰色风格 */
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(15px) saturate(180%);
            -webkit-backdrop-filter: blur(15px) saturate(180%);
            border-radius: 16px;
            min-height: 0;
            border: 1px solid rgba(192, 192, 192, 0.3);
            box-shadow: 
                inset 0 2px 8px rgba(135, 206, 235, 0.1),
                inset 0 0 0 1px rgba(192, 192, 192, 0.2);
        }

        .ai-message {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .ai-message.user {
            justify-content: flex-end;
        }

        .ai-message-content {
            max-width: 70%;
            padding: 12px 16px;
            border-radius: 12px;
            line-height: 1.6;
            font-size: 14px;
        }

        .ai-message.user .ai-message-content {
            /* 淡蓝色、银色、灰色风格 - 用户消息 */
            background: rgba(135, 206, 235, 0.2);
            backdrop-filter: blur(10px) saturate(180%);
            -webkit-backdrop-filter: blur(10px) saturate(180%);
            color: #4A5568;
            border-bottom-right-radius: 4px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 
                0 2px 8px rgba(135, 206, 235, 0.15),
                0 0 10px rgba(135, 206, 235, 0.1);
        }

        .ai-message.assistant .ai-message-content {
            /* 淡蓝色、银色、灰色风格 - AI消息 */
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px) saturate(180%);
            -webkit-backdrop-filter: blur(10px) saturate(180%);
            color: #4A5568;
            border: 1px solid rgba(192, 192, 192, 0.4);
            border-bottom-left-radius: 4px;
            box-shadow: 
                0 2px 8px rgba(192, 192, 192, 0.2),
                0 0 10px rgba(135, 206, 235, 0.1);
        }

        .ai-message-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            margin-right: 12px;
            flex-shrink: 0;
            overflow: hidden;
        }

        .ai-message-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }

        .ai-message.user .ai-message-avatar {
            background: linear-gradient(135deg, #87CEEB, #B0C4DE);
            color: #ffffff;
            order: 2;
            box-shadow: 0 2px 8px rgba(135, 206, 235, 0.4);
        }

        .ai-message.assistant .ai-message-avatar {
            background: linear-gradient(135deg, #B0C4DE, #C0C0C0);
            color: #4A5568;
            box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
        }

        .ai-chat-input-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            /* 淡蓝色、银色、灰色风格 */
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px) saturate(180%);
            -webkit-backdrop-filter: blur(15px) saturate(180%);
            border: 1px solid rgba(192, 192, 192, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.15);
            border-radius: 25px;
            padding: 12px 20px;
        }

        .ai-chat-input {
            flex: 1;
            background: transparent;
            border: none;
            color: #4A5568;
            font-size: 14px;
            outline: none;
        }

        .ai-chat-input::placeholder {
            color: #A0A0A0;
        }

        .ai-chat-send-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            /* 重要按钮使用渐变 */
            background: linear-gradient(135deg, #3B82F6, #A855F7, #22D3EE);
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            flex-shrink: 0;
            box-shadow: 
                0 2px 8px rgba(59, 130, 246, 0.5),
                0 0 20px rgba(34, 211, 238, 0.4);
        }

        .ai-chat-send-btn:hover:not(:disabled) {
            transform: scale(1.1);
            box-shadow: 
                0 4px 16px rgba(59, 130, 246, 0.7),
                0 0 30px rgba(34, 211, 238, 0.6);
        }

        .ai-chat-send-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .ai-chat-empty {
            text-align: center;
            padding: 40px 20px;
            color: #708090;
        }

        .ai-chat-empty i {
            display: none;
        }

        .ai-loading {
            display: flex;
            gap: 5px;
            padding: 12px 16px;
        }

        .ai-loading-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #87CEEB;
            box-shadow: 0 0 10px rgba(135, 206, 235, 0.8);
            animation: bounce 1.4s infinite ease-in-out both;
        }

        .ai-loading-dot:nth-child(1) { animation-delay: -0.32s; }
        .ai-loading-dot:nth-child(2) { animation-delay: -0.16s; }

        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }

        .abstract-graphic {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: 
                radial-gradient(circle, rgba(135, 206, 235, 0.15) 0%, transparent 40%),
                radial-gradient(circle, rgba(192, 192, 192, 0.12) 0%, transparent 50%),
                radial-gradient(circle, rgba(176, 196, 222, 0.1) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 0;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
        }



        /* 右侧边栏 */
        .right-sidebar {
            width: 320px;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(50px) saturate(180%);
            -webkit-backdrop-filter: blur(50px) saturate(180%);
            border-left: 1px solid rgba(135, 206, 235, 0.3);
            box-shadow: -2px 0 20px rgba(135, 206, 235, 0.1);
            padding: 15px;
            overflow-y: hidden;
            overflow-x: visible;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: width 0.3s ease, padding 0.3s ease;
        }

        .right-sidebar.collapsed {
            width: 50px;
            padding: 15px 5px;
        }

        .right-sidebar.collapsed .sidebar-widget {
            opacity: 0;
            pointer-events: none;
            overflow: hidden;
            height: 0;
            margin: 0;
            padding: 0;
        }

        /* 右侧边栏折叠按钮 */
        .sidebar-toggle-btn-right {
            position: fixed;
            top: 72px;
            left: 0;
            right: auto;
            transform: none;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(34, 197, 94, 0.55);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 120001;
            box-shadow: 0 6px 16px rgba(34, 197, 94, 0.28);
            transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.15s ease;
            color: #22C55E;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .sidebar-toggle-btn-right:hover {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 10px 22px rgba(34, 197, 94, 0.42);
            transform: scale(1.08);
            border-color: rgba(34, 197, 94, 0.8);
        }
        
        .sidebar-toggle-btn-right:active {
            transform: scale(0.95);
        }
        


        .right-sidebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(135, 206, 235, 0.6), transparent);
        }

        .news-widget {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border-color: rgba(192, 192, 192, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.1);
        }

        .news-title {
            font-size: 16px;
            font-weight: 600;
            color: #4682B4;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.3);
            margin-bottom: 8px;
        }

        .news-item {
            padding: 12px 0;
            border-bottom: 1px solid rgba(200, 200, 200, 0.3);
        }

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

        .news-item-title {
            font-size: 13px;
            color: #4A5568;
            margin-bottom: 4px;
            line-height: 1.4;
            cursor: pointer;
            transition: all 0.3s;
        }

        .news-item-title:hover {
            color: #87CEEB;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.5);
        }

        .news-item-time {
            font-size: 11px;
            color: #708090;
        }

        .news-link {
            color: #87CEEB;
            text-decoration: none;
            font-size: 12px;
            display: inline-block;
            margin-top: 8px;
            transition: all 0.3s;
        }

        .news-link:hover {
            color: #4682B4;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.5);
            text-decoration: underline;
        }

        .community-links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 12px;
        }

        .community-link-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 8px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            border: 1px solid rgba(192, 192, 192, 0.4);
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.10);
            text-decoration: none;
            transition: all 0.3s;
        }

        .community-link-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.7);
            border-color: rgba(135, 206, 235, 0.6);
            box-shadow:
                0 4px 15px rgba(135, 206, 235, 0.25),
                0 0 20px rgba(135, 206, 235, 0.15);
        }

        .community-link-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(135, 206, 235, 0.16);
            color: #4682B4;
            border: 1px solid rgba(135, 206, 235, 0.24);
        }

        .community-link-icon i {
            font-size: 18px;
        }

        .community-link-text {
            font-size: 12px;
            color: #4A5568;
            font-weight: 500;
            text-align: center;
        }

        /* IP检测窗口样式 */
        .ip-purity-window {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(135, 206, 235, 0.5);
            box-shadow: 
                0 10px 40px rgba(135, 206, 235, 0.2),
                0 0 30px rgba(192, 192, 192, 0.15);
            border-radius: 24px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .ip-purity-window.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .ip-purity-window-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ip-purity-window-title {
            font-weight: 600;
            color: #4682B4;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.3);
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .ip-purity-window-controls {
            display: flex;
            gap: 10px;
        }

        .ip-purity-window-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            color: #87CEEB;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .ip-purity-window-btn:hover {
            background: rgba(135, 206, 235, 0.2);
            border-color: rgba(135, 206, 235, 0.6);
            color: #4682B4;
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .ip-purity-window-content {
            flex: 1;
            overflow-y: auto;
            padding: 30px;
        }

        .ip-purity-input-group {
            margin-bottom: 20px;
        }

        .ip-purity-label {
            display: block;
            color: #4A5568;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .ip-purity-input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(192, 192, 192, 0.4);
            border-radius: 12px;
            color: #4A5568;
            font-size: 14px;
            transition: all 0.3s;
        }

        .ip-purity-input:focus {
            outline: none;
            border-color: rgba(135, 206, 235, 0.6);
            box-shadow: 0 0 15px rgba(135, 206, 235, 0.2);
        }

        .ip-purity-hint {
            margin-top: 8px;
            font-size: 12px;
            color: #708090;
        }

        .ip-purity-submit-wrapper {
            text-align: center;
            margin-bottom: 20px;
        }

        .ip-purity-submit-btn {
            padding: 12px 32px;
            background: linear-gradient(135deg, #87CEEB, #B0C4DE, #C0C0C0);
            border: none;
            border-radius: 12px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(135, 206, 235, 0.25);
        }

        .ip-purity-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
        }

        .ip-purity-loading {
            text-align: center;
            padding: 40px;
            color: #4A5568;
        }

        .ip-purity-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(135, 206, 235, 0.3);
            border-top-color: #87CEEB;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .ip-purity-error {
            padding: 15px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            color: #FCA5A5;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .ip-purity-results {
            margin-top: 20px;
        }

        /* AI对话框过渡动画 */
        .ai-chat-section {
            position: relative;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ai-chat-section.hidden {
            opacity: 0;
            transform: scale(0.95) translateY(-10px);
            pointer-events: none;
        }

        /* 滚动条样式 */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(240, 248, 255, 0.5);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(135, 206, 235, 0.5);
            border-radius: 4px;
            box-shadow: 0 0 10px rgba(135, 206, 235, 0.3);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(135, 206, 235, 0.7);
            box-shadow: 0 0 15px rgba(135, 206, 235, 0.5);
        }

        /* 活动窗口样式 */
        .activities-window {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(135, 206, 235, 0.5);
            box-shadow: 
                0 10px 40px rgba(135, 206, 235, 0.2),
                0 0 30px rgba(192, 192, 192, 0.15);
            border-radius: 24px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .activities-window.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .activities-window-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .activities-window-title {
            font-weight: 600;
            color: #4682B4;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.3);
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .activities-window-controls {
            display: flex;
            gap: 10px;
        }

        .activities-window-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            color: #87CEEB;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .activities-window-btn:hover {
            background: rgba(135, 206, 235, 0.2);
            border-color: rgba(135, 206, 235, 0.6);
            color: #4682B4;
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .activities-window-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .activities-platform-filter {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
        }

        .activities-platform-filter .btn-group {
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .activities-platform-filter .btn {
            margin: 5px;
            border-radius: 12px;
            padding: 8px 16px;
            font-size: 14px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            color: #4682B4;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        /* 移动端优化：两排显示 */
        @media (max-width: 768px) {
            .activities-platform-filter {
                margin-bottom: 15px;
                justify-content: center;
                overflow: visible;
            }
            
            .activities-platform-filter .btn-group {
                flex-wrap: wrap;
                gap: 8px;
                justify-content: center;
                width: 100%;
                max-width: 100%;
            }
            
            .activities-platform-filter .btn {
                margin: 0;
                padding: 8px 12px;
                font-size: 12px;
                flex: 0 0 calc(31% - 6px);
                max-width: calc(31% - 6px);
                min-width: calc(31% - 6px);
                box-sizing: border-box;
            }
            
            /* 前3个按钮在第一排，后2个在第二排 */
            .activities-platform-filter .btn:nth-child(1),
            .activities-platform-filter .btn:nth-child(2),
            .activities-platform-filter .btn:nth-child(3) {
                flex: 0 0 calc(31% - 6px);
            }
            
            .activities-platform-filter .btn:nth-child(4),
            .activities-platform-filter .btn:nth-child(5) {
                flex: 0 0 calc(47% - 4px);
            }
            
            .activities-platform-filter .btn i {
                font-size: 13px;
                margin-right: 4px;
            }
            
            .activities-platform-filter .platform-name {
                font-size: 11px;
            }
        }
        
        /* 超小屏幕优化：更紧凑的两排 */
        @media (max-width: 480px) {
            .activities-platform-filter .btn {
                padding: 6px 10px;
                font-size: 11px;
            }
            
            .activities-platform-filter .btn:nth-child(1),
            .activities-platform-filter .btn:nth-child(2),
            .activities-platform-filter .btn:nth-child(3) {
                flex: 0 0 calc(31% - 6px);
            }
            
            .activities-platform-filter .btn:nth-child(4),
            .activities-platform-filter .btn:nth-child(5) {
                flex: 0 0 calc(47% - 4px);
            }
            
            .activities-platform-filter .btn i {
                font-size: 12px;
                margin-right: 3px;
            }
            
            .activities-platform-filter .platform-name {
                font-size: 10px;
            }
        }

        .activities-platform-filter .btn:hover {
            background: rgba(135, 206, 235, 0.2);
            border-color: rgba(135, 206, 235, 0.6);
        }

        .activities-platform-filter .btn.active {
            background: rgba(70, 130, 180, 0.3);
            border-color: rgba(70, 130, 180, 0.6);
            color: #4682B4;
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .activities-window-content .table {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            overflow: hidden;
        }

        .activities-window-content .table thead {
            background: rgba(135, 206, 235, 0.2);
        }

        .activities-window-content .table th {
            color: #4682B4;
            font-weight: 600;
            border-bottom: 2px solid rgba(135, 206, 235, 0.3);
        }

        .activities-window-content .table td {
            color: #4A5568;
            border-bottom: 1px solid rgba(135, 206, 235, 0.2);
        }

        .activities-window-content .table tbody tr:hover {
            background: rgba(135, 206, 235, 0.1);
        }

        /* AI文章分析窗口样式 */
        .article-analyzer-window {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(135, 206, 235, 0.5);
            box-shadow: 
                0 10px 40px rgba(135, 206, 235, 0.2),
                0 0 30px rgba(192, 192, 192, 0.15);
            border-radius: 24px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .article-analyzer-window.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        #authWindow {
            z-index: 120010 !important;
            pointer-events: auto !important;
            position: fixed !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) scale(0.96) !important;
            opacity: 0;
            transition: opacity 0.25s ease, transform 0.25s ease !important;
        }

        #authWindow.active {
            display: flex !important;
            opacity: 1 !important;
            transform: translate(-50%, -50%) scale(1) !important;
        }

        .auth-form-container {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.18s ease, transform 0.18s ease;
        }

        .auth-form-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .article-analyzer-window-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .article-analyzer-window-title {
            font-weight: 600;
            color: #4682B4;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.3);
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .article-analyzer-window-controls {
            display: flex;
            gap: 10px;
        }

        .article-analyzer-window-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            color: #87CEEB;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .article-analyzer-window-btn:hover {
            background: rgba(135, 206, 235, 0.2);
            border-color: rgba(135, 206, 235, 0.6);
            color: #4682B4;
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .article-analyzer-window-content {
            flex: 1;
            overflow-y: auto;
            padding: 25px;
        }

        .article-analyzer-welcome {
            margin-bottom: 20px;
            text-align: center;
        }

        .article-analyzer-subtitle {
            color: #708090;
            font-size: 14px;
            margin: 0;
        }

        .article-analyzer-form-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(135, 206, 235, 0.3);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
        }

        .article-analyzer-form-label {
            display: block;
            color: #4682B4;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .article-analyzer-textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(135, 206, 235, 0.4);
            border-radius: 12px;
            color: #4A5568;
            font-size: 14px;
            font-family: inherit;
            line-height: 1.6;
            resize: vertical;
            min-height: 200px;
            transition: all 0.3s;
        }

        .article-analyzer-textarea:focus {
            outline: none;
            border-color: rgba(70, 130, 180, 0.6);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.15);
        }

        .article-analyzer-textarea::placeholder {
            color: #9CA3AF;
        }

        .article-analyzer-hint {
            color: #708090;
            font-size: 12px;
            margin-top: 8px;
            line-height: 1.5;
        }

        .article-analyzer-ai-status {
            background: rgba(135, 206, 235, 0.1);
            border: 1px solid rgba(135, 206, 235, 0.3);
            border-left: 4px solid #4682B4;
            border-radius: 12px;
            padding: 12px 16px;
        }

        .article-analyzer-ai-status-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .article-analyzer-ai-status-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(135, 206, 235, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4682B4;
            font-size: 16px;
            flex-shrink: 0;
        }

        .article-analyzer-ai-status-text {
            flex: 1;
        }

        .article-analyzer-ai-status-title {
            color: #4682B4;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .article-analyzer-ai-status-subtitle {
            color: #708090;
            font-size: 12px;
        }

        .article-analyzer-submit-btn {
            background: linear-gradient(135deg, rgba(70, 130, 180, 0.8), rgba(135, 206, 235, 0.8));
            border: 1px solid rgba(135, 206, 235, 0.4);
            border-radius: 12px;
            color: #ffffff;
            font-weight: 600;
            padding: 12px 32px;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-width: 160px;
            justify-content: center;
        }

        .article-analyzer-submit-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, rgba(70, 130, 180, 1), rgba(135, 206, 235, 1));
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
        }

        .article-analyzer-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .article-analyzer-results {
            margin-top: 20px;
        }

        /* X账号分析窗口样式 */
        .x-account-analyzer-window {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(135, 206, 235, 0.5);
            box-shadow: 
                0 10px 40px rgba(135, 206, 235, 0.2),
                0 0 30px rgba(192, 192, 192, 0.15);
            border-radius: 24px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .x-account-analyzer-window.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        /* 祈福相关样式 */
        .prayer-activity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
        }

        .prayer-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
        }

        .prayer-btn:active {
            transform: scale(0.95);
        }

        /* X账号增长策略新功能高亮样式 */
        .navbar-link-new {
            position: relative;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 8px;
            padding: 6px 12px;
            font-weight: 600;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .navbar-link-new:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border-color: rgba(102, 126, 234, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .new-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 10px;
            margin-left: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 6px rgba(255, 107, 107, 0.4);
            animation: bounce-badge 1.5s ease-in-out infinite;
        }

        .app-item-new {
            position: relative;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
            border: 2px solid rgba(102, 126, 234, 0.3);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .app-item-new:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
            border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
            transform: translateY(-3px) scale(1.02);
        }

        .app-item-new .app-item-icon {
            color: #667eea;
            animation: icon-pulse 2s ease-in-out infinite;
        }
        
        /* Airdrop 降落伞图标样式 */
        .airdrop-parachute-icon {
            width: 24px;
            height: 24px;
            color: #87CEEB;
            filter: drop-shadow(0 1px 3px rgba(135, 206, 235, 0.4));
        }
        
        .app-item-new .airdrop-parachute-icon {
            color: #667eea;
            animation: icon-pulse 2s ease-in-out infinite;
        }

        .new-badge-small {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 5px;
            border-radius: 8px;
            margin-left: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 4px rgba(255, 107, 107, 0.4);
            animation: bounce-badge 1.5s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
            }
            50% {
                box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
            }
        }

        @keyframes bounce-badge {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        @keyframes icon-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }

        .x-account-analyzer-window-header {
            padding: 15px 20px;
            background: var(--card-bg);
            border-bottom: 1px solid var(--card-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .x-account-analyzer-window-title {
            font-weight: 600;
            color: var(--text-color);
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .x-account-analyzer-window-controls {
            display: flex;
            gap: 10px;
        }

        .x-account-analyzer-window-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(135, 206, 235, 0.35);
            background: rgba(255, 255, 255, 0.7);
            color: #87CEEB;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .x-account-analyzer-window-btn:hover {
            background: rgba(135, 206, 235, 0.15);
            border-color: rgba(135, 206, 235, 0.45);
            color: var(--text-color);
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .x-account-analyzer-window-content {
            flex: 1;
            overflow-y: auto;
            padding: 25px;
        }

        .x-account-analyzer-welcome {
            margin-bottom: 20px;
            text-align: center;
        }

        .x-account-analyzer-subtitle {
            color: #708090;
            font-size: 14px;
            margin: 0;
        }

        .x-account-analyzer-form-card {
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        }

        .x-account-analyzer-form-label {
            display: block;
            color: var(--text-color);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .x-account-analyzer-input-group {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(135, 206, 235, 0.4);
            border-radius: 12px;
            overflow: hidden;
        }

        .x-account-analyzer-input-prefix {
            padding: 12px 16px;
            background: rgba(135, 206, 235, 0.1);
            color: var(--text-color);
            font-weight: 600;
            border-right: 1px solid rgba(135, 206, 235, 0.3);
        }

        .x-account-analyzer-input {
            flex: 1;
            padding: 12px 16px;
            background: transparent;
            border: none;
            color: #4A5568;
            font-size: 14px;
            outline: none;
        }

        .x-account-analyzer-input::placeholder {
            color: #9CA3AF;
        }

        .x-account-analyzer-hint {
            color: #708090;
            font-size: 12px;
            margin-top: 8px;
            line-height: 1.5;
        }

        .x-account-analyzer-submit-btn {
            background: linear-gradient(135deg, rgba(70, 130, 180, 0.8), rgba(135, 206, 235, 0.8));
            border: 1px solid rgba(135, 206, 235, 0.4);
            border-radius: 12px;
            color: #ffffff;
            font-weight: 600;
            padding: 12px 32px;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-width: 160px;
            justify-content: center;
        }

        .x-account-analyzer-submit-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, rgba(70, 130, 180, 1), rgba(135, 206, 235, 1));
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
        }

        .x-account-analyzer-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* 排名查询窗口样式 */
        .ranking-window {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.35);
            border-radius: 24px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .ranking-window.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .ranking-window-header {
            padding: 15px 20px;
            background: var(--card-bg);
            border-bottom: 1px solid var(--card-border);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ranking-window-title {
            font-weight: 600;
            color: var(--text-color);
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .ranking-window-controls {
            display: flex;
            gap: 10px;
        }

        .ranking-window-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid var(--card-border);
            background: var(--card-bg);
            color: var(--text-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .ranking-window-btn:hover {
            background: rgba(135, 206, 235, 0.15);
            border-color: rgba(135, 206, 235, 0.45);
            color: var(--text-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
        }

        .ranking-window-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: var(--card-bg);
        }

        .ranking-form-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
        }

        .ranking-form-group {
            margin-bottom: 20px;
        }

        .ranking-form-label {
            display: block;
            color: var(--text-color);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .ranking-input-group {
            display: flex;
            align-items: center;
            background: var(--input-bg);
            border: 1px solid var(--input-border);
            border-radius: 12px;
            overflow: hidden;
        }

        .ranking-input-prefix {
            padding: 12px 16px;
            background: var(--card-border);
            color: var(--text-color);
            font-weight: 600;
            border-right: 1px solid var(--card-border);
        }

        .ranking-input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            background: transparent;
            color: var(--text-color);
            font-size: 15px;
            outline: none;
        }

        .ranking-input::placeholder {
            color: var(--muted-color);
        }

        .ranking-form-hint {
            margin-top: 8px;
            color: var(--muted-color);
            font-size: 12px;
        }

        .ranking-form-action {
            text-align: center;
            margin-top: 25px;
        }

        .ranking-submit-btn {
            padding: 12px 32px;
            background: linear-gradient(135deg, rgba(70, 130, 180, 0.8), rgba(135, 206, 235, 0.8));
            border: 1px solid rgba(135, 206, 235, 0.4);
            border-radius: 12px;
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .ranking-submit-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, rgba(70, 130, 180, 1), rgba(135, 206, 235, 1));
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
        }

        .ranking-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .ranking-results-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(135, 206, 235, 0.3);
            border-radius: 16px;
            overflow: hidden;
            margin-top: 20px;
        }

        .ranking-results-header {
            padding: 15px 20px;
            background: rgba(70, 130, 180, 0.1);
            border-bottom: 1px solid rgba(135, 206, 235, 0.3);
        }

        .ranking-results-title {
            margin: 0;
            color: #4682B4;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .ranking-results-content {
            padding: 20px;
        }

        .ranking-loading {
            text-align: center;
            padding: 40px 20px;
        }

        .ranking-spinner {
            margin-bottom: 15px;
        }

        .ranking-loading-text {
            color: #708090;
            font-size: 14px;
        }

        .ranking-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            padding: 15px 20px;
            color: #EF4444;
            font-size: 14px;
            margin-top: 20px;
            display: flex;
            align-items: center;
        }

        .ranking-platform-card {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(135, 206, 235, 0.3);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
        }

        .ranking-platform-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(135, 206, 235, 0.2);
        }

        .ranking-platform-title {
            margin: 0;
            color: #4682B4;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .ranking-platform-status {
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
        }

        .status-success {
            background: rgba(25, 135, 84, 0.1);
            color: #198754;
        }

        .status-error {
            background: rgba(239, 68, 68, 0.1);
            color: #EF4444;
        }

        .ranking-platform-content {
            color: #4A5568;
            font-size: 13px;
        }

        .ranking-data-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(135, 206, 235, 0.1);
        }

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

        .ranking-data-label {
            color: #708090;
            font-weight: 500;
        }

        .ranking-data-value {
            color: #4682B4;
            font-weight: 600;
        }

        .ranking-projects {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(135, 206, 235, 0.2);
        }

        .ranking-projects-title {
            margin: 0 0 10px 0;
            color: #4682B4;
            font-size: 13px;
            font-weight: 600;
        }

        .ranking-project-item {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 12px;
        }

        .ranking-project-name {
            color: #4A5568;
        }

        .ranking-project-rank {
            color: #4682B4;
            font-weight: 600;
        }

        .ranking-error-text {
            color: #EF4444;
            margin: 0;
            font-size: 13px;
        }

        .ranking-no-data {
            color: #9CA3AF;
            margin: 0;
            font-size: 13px;
            text-align: center;
            padding: 10px 0;
        }

        /* Airdrop信息窗口样式 */
        .airdrop-window {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(135, 206, 235, 0.5);
            box-shadow: 
                0 10px 40px rgba(135, 206, 235, 0.2),
                0 0 30px rgba(192, 192, 192, 0.15);
            border-radius: 24px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .airdrop-window.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .airdrop-window-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .airdrop-window-title {
            font-weight: 600;
            color: #4682B4;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.3);
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .airdrop-window-controls {
            display: flex;
            gap: 10px;
        }

        .airdrop-window-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            color: #87CEEB;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .airdrop-window-btn:hover {
            background: rgba(135, 206, 235, 0.2);
            border-color: rgba(135, 206, 235, 0.6);
            color: #4682B4;
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .airdrop-window-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }


        .airdrop-loading {
            text-align: center;
            padding: 40px 20px;
        }

        .airdrop-spinner {
            margin-bottom: 15px;
        }

        .airdrop-loading-text {
            color: #708090;
            font-size: 14px;
        }

        .airdrop-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            padding: 15px 20px;
            color: #EF4444;
            font-size: 14px;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .airdrop-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        @media (max-width: 768px) {
            .airdrop-list {
                grid-template-columns: 1fr;
            }
        }

        .airdrop-item {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(135, 206, 235, 0.3);
            border-radius: 16px;
            padding: 20px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .airdrop-item:hover {
            background: rgba(255, 255, 255, 0.8);
            border-color: rgba(135, 206, 235, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(135, 206, 235, 0.2);
        }

        .airdrop-item-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .airdrop-item-title {
            font-size: 16px;
            font-weight: 600;
            color: #4682B4;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .airdrop-item-badge {
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .badge-new {
            background: rgba(25, 135, 84, 0.1);
            color: #198754;
        }

        .badge-hot {
            background: rgba(239, 68, 68, 0.1);
            color: #EF4444;
        }

        .badge-verified {
            background: rgba(70, 130, 180, 0.1);
            color: #4682B4;
        }

        .airdrop-item-top {
            display: flex;
            gap: 15px;
            margin-bottom: 12px;
        }
        
        .airdrop-item-logo {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            overflow: hidden;
            background: rgba(135, 206, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .airdrop-item-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .airdrop-item-header-content {
            flex: 1;
            min-width: 0;
        }
        
        .airdrop-item-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .airdrop-item-action {
            color: #708090;
            font-size: 13px;
            font-weight: normal;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 300px;
            margin-left: auto;
        }
        
        @media (max-width: 768px) {
            .airdrop-item-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .airdrop-item-action {
                margin-left: 0;
                max-width: 100%;
            }
        }
        
        .airdrop-item-content {
            color: #4A5568;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 8px;
            min-height: 20px;
        }

        .airdrop-item-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(135, 206, 235, 0.2);
        }

        .airdrop-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #708090;
            font-size: 12px;
        }

        .airdrop-meta-item i {
            color: #4682B4;
        }

        .airdrop-item-link {
            margin-top: 12px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #4682B4;
            font-size: 13px;
            text-decoration: none;
            font-weight: 500;
        }

        .airdrop-item-link:hover {
            color: #2E5C8A;
            text-decoration: underline;
        }
        
        /* X增长策略 - 活动卡片式幻灯片样式 */
        .x-strategy-activities-slider-wrapper {
            position: relative;
            margin-top: 8px;
        }
        
        .x-strategy-activities-container {
            display: flex;
            flex-wrap: nowrap;
            gap: 15px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 15px;
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(135, 206, 235, 0.3);
            border-radius: 12px;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox - 隐藏滚动条 */
            -ms-overflow-style: none; /* IE/Edge - 隐藏滚动条 */
            cursor: grab;
            user-select: none;
            -webkit-overflow-scrolling: touch;
        }
        
        /* Chrome/Safari - 隐藏滚动条 */
        .x-strategy-activities-container::-webkit-scrollbar {
            display: none;
            width: 0;
            height: 0;
        }
        
        .x-strategy-activities-container.dragging {
            cursor: grabbing;
            scroll-behavior: auto;
        }
        
        .x-strategy-activity-card {
            flex: 0 0 180px;
            min-width: 180px;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(135, 206, 235, 0.4);
            border-radius: 12px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            gap: 8px;
            box-shadow: 0 2px 8px rgba(135, 206, 235, 0.1);
        }
        
        .x-strategy-activity-card:hover {
            transform: translateY(-4px) scale(1.02);
            border-color: rgba(135, 206, 235, 0.6);
            box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
        }
        
        .x-strategy-activity-card.selected {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: #667eea;
            color: white;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
        }
        
        .x-strategy-activity-card.selected:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
        }
        
        .x-strategy-activity-platform {
            font-weight: 700;
            font-size: 11px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .x-strategy-activity-title {
            font-weight: 600;
            font-size: 14px;
            line-height: 1.4;
            flex: 1;
        }
        
        .x-strategy-activity-check {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            color: #667eea;
            font-size: 12px;
        }
        
        .x-strategy-activity-card.selected .x-strategy-activity-check {
            display: flex;
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .x-strategy-activities-scroll-indicator {
            text-align: center;
            margin-top: 8px;
            color: #87CEEB;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            opacity: 0.7;
        }
        
        .x-strategy-activities-scroll-indicator i {
            font-size: 10px;
            animation: slide-hint 1.5s ease-in-out infinite;
        }
        
        @keyframes slide-hint {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }
        
        .x-strategy-activities-loading,
        .x-strategy-activities-empty,
        .x-strategy-activities-error {
            padding: 40px 20px;
            text-align: center;
            color: #666;
            font-size: 14px;
        }
        
        .x-strategy-activities-error {
            color: #dc3545;
        }

        /* 数据仪表板窗口样式 */
        .data-dashboard-window {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(135, 206, 235, 0.5);
            box-shadow: 
                0 10px 40px rgba(135, 206, 235, 0.2),
                0 0 30px rgba(192, 192, 192, 0.15);
            border-radius: 24px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .data-dashboard-window.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .data-dashboard-window-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* 个人中心窗口样式 */
        .personal-center-window {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(135, 206, 235, 0.3);
            box-shadow:
                0 8px 26px rgba(15, 23, 42, 0.12),
                0 0 0 1px rgba(135, 206, 235, 0.12);
            border-radius: 16px;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 20px;
            overflow: hidden;
            box-sizing: border-box;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 30;
            pointer-events: none;
        }

        .personal-center-window.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
        }

        .personal-center-window-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .personal-center-window-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            display: flex;
            align-items: center;
        }

        .personal-center-window-btn {
            background: none;
            border: none;
            font-size: 18px;
            color: #666;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .personal-center-window-btn:hover {
            background: rgba(0, 0, 0, 0.05);
            color: #333;
        }

        .personal-center-content {
            flex: 1;
            width: 100%;
            overflow-y: auto;
            padding: 20px;
            min-height: 0;
            box-sizing: border-box;
        }

        .personal-loading,
        .personal-center-loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 200px;
            color: #666;
        }

        .personal-loading p,
        .personal-center-loading p {
            margin-top: 15px;
        }

        .personal-info-card {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px;
            background: #f8fbff;
            border: 1px solid #e3eef9;
            border-radius: 14px;
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(70,130,180,0.08);
            position: relative;
        }

        /* 个人中心头像 */
        .personal-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            overflow: hidden;
            background: #f5f7fb;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4682B4;
            margin-right: 12px;
            flex-shrink: 0;
        }
        .personal-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }

        .personal-center-close-btn {
            position: absolute;
            top: 12px;

.personal-center-content {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    padding: 20px;
    min-height: 0;
    box-sizing: border-box;
}

.personal-loading,
.personal-center-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #666;
}
            font-size: 24px;
            color: #333;
            text-align: left;
        }

        .personal-details p {
            margin: 4px 0;
            color: #666;
            text-align: left;
        }

        .personal-details {
            flex: 1;
        }

        .personal-stats {
            margin-top: 0;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .personal-stats .stat-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            padding: 6px 10px;
            background: #eef5ff;
            border-radius: 10px;
        }

        .personal-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 8px;
            align-items: flex-start;
            flex-wrap: wrap;
            width: 100%;
        }

        .personal-tab {
            border: none;
            background: #f4f6fb;
            padding: 8px 14px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            color: #334155;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .personal-tab i {
            color: #4682B4;
        }

        .personal-tab:hover {
            background: #e7eefb;
            color: #1f4b99;
        }

        .personal-tab.active {
            background: #e1ecff;
            color: #1d4ed8;
            box-shadow: 0 6px 18px rgba(29,78,216,0.15);
            border: 1px solid rgba(29,78,216,0.15);
        }

        .personal-tab.active i {
            color: #1d4ed8;
        }

        .personal-tab-panels {
            background: #fff;
            border: 1px solid #e8edf5;
            border-radius: 14px;
            padding: 16px;
            box-shadow: 0 8px 20px rgba(17,24,39,0.05);
            width: 100%;
            display: block;
            flex: 1;
        }

        .personal-tab-panels-card {
            background: linear-gradient(135deg, #f8fbff 0%, #ffffff 40%, #f9f6ff 100%);
            border: 1px solid #dfe8f5;
            padding: 16px 18px;
            max-width: 100%;
            width: 100%;
            margin-top: 10px;
            min-height: 220px;
            box-sizing: border-box;
        }

        .personal-tab-panel {
            display: none;
        }

        .personal-tab-panel.active {
            display: block;
        }

        .personal-panel-header {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: #1f4b99;
            background: rgba(31, 75, 153, 0.08);
            padding: 8px 12px;
            border-radius: 10px;
            margin-bottom: 10px;
        }

        .personal-panel-desc {
            margin: 0 0 12px 0;
            color: #4b5563;
            font-size: 13px;
        }

        .personal-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .personal-actions .btn {
            padding: 10px 16px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 6px 12px rgba(0,0,0,0.06);
        }

        .personal-email-form .form-label {
            color: #1f2937;
        }

        .personal-email-form .form-control {
            border-radius: 10px;
            border: 1px solid #e5e7eb;
            padding: 12px;
            font-size: 14px;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
        }

        .personal-email-form .form-control:focus {
            border-color: #4682B4;
            box-shadow: 0 0 0 3px rgba(70,130,180,0.15);
        }

        .personal-email-form .btn {
            border-radius: 10px;
            padding: 10px 16px;
            font-weight: 600;
            box-shadow: 0 10px 18px rgba(70,130,180,0.15);
        }

        .data-dashboard-window-title {
            font-weight: 600;
            color: #4682B4;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.3);
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .data-dashboard-window-controls {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .data-dashboard-refresh-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            color: #87CEEB;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .data-dashboard-refresh-btn:hover {
            background: rgba(135, 206, 235, 0.2);
            border-color: rgba(135, 206, 235, 0.6);
            color: #4682B4;
            transform: rotate(180deg);
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .data-dashboard-window-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            color: #87CEEB;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .data-dashboard-window-btn:hover {
            background: rgba(135, 206, 235, 0.2);
            border-color: rgba(135, 206, 235, 0.6);
            color: #4682B4;
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .data-dashboard-window-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .dashboard-loading {
            text-align: center;
            padding: 40px 20px;
        }

        .dashboard-spinner {
            margin-bottom: 15px;
        }

        .dashboard-loading-text {
            color: #708090;
            font-size: 14px;
        }

        .dashboard-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            padding: 15px 20px;
            color: #EF4444;
            font-size: 14px;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .dashboard-content {
            display: grid;
            gap: 20px;
        }

        .dashboard-stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            width: 100%;
            gap: 15px;
        }

        .dashboard-stat-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(135, 206, 235, 0.3);
            border-radius: 16px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s;
        }

        .dashboard-stat-card:hover {
            background: rgba(255, 255, 255, 0.8);
            border-color: rgba(135, 206, 235, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(135, 206, 235, 0.2);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .stat-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .stat-label {
            color: #708090;
            font-size: 13px;
        }

        .stat-value {
            color: #4682B4;
            font-size: 24px;
            font-weight: 700;
        }

        .dashboard-charts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .dashboard-chart-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(135, 206, 235, 0.3);
            border-radius: 16px;
            padding: 20px;
        }

        .chart-header {
            margin-bottom: 15px;
        }

        .chart-title {
            margin: 0;
            color: #4682B4;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .chart-container {
            position: relative;
            height: 250px;
        }

        .dashboard-function-stats {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(135, 206, 235, 0.3);
            border-radius: 16px;
            padding: 20px;
        }

        .function-stats-header {
            margin-bottom: 15px;
        }

        .function-stats-title {
            margin: 0;
            color: #4682B4;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .function-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .function-stat-item {
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(135, 206, 235, 0.2);
            border-radius: 12px;
            padding: 15px;
        }

        .function-stat-name {
            color: #4A5568;
            font-size: 13px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .function-stat-values {
            display: flex;
            justify-content: space-between;
            gap: 15px;
        }

        .function-stat-value {
            flex: 1;
        }

        .function-stat-value-label {
            color: #708090;
            font-size: 11px;
            margin-bottom: 3px;
        }

        .function-stat-value-number {
            color: #4682B4;
            font-size: 18px;
            font-weight: 700;
        }

        /* X账号分析进度条样式 */
        .progress-step {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(135, 206, 235, 0.2);
            transition: all 0.3s;
        }

        .progress-step:last-child {
            border-bottom: none;
        }

        .progress-step .step-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: #4682B4;
            font-size: 16px;
        }

        .progress-step .step-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .progress-step .step-text {
            color: #4682B4;
            font-size: 14px;
        }

        .progress-step .step-status {
            display: flex;
            align-items: center;
        }

        /* 登录/注册按钮样式 */
        .auth-btn {
            width: 100%;
            padding: 10px 16px;
            border-radius: 12px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            color: #4682B4;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .auth-btn:hover {
            background: rgba(135, 206, 235, 0.2);
            border-color: rgba(135, 206, 235, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .login-btn {
            background: linear-gradient(135deg, rgba(70, 130, 180, 0.8), rgba(135, 206, 235, 0.8));
            color: #ffffff;
        }

        .register-btn {
            background: rgba(255, 255, 255, 0.7);
            color: #4682B4;
        }

        .logout-btn {
            background: rgba(239, 68, 68, 0.8);
            color: #ffffff;
            border-color: rgba(239, 68, 68, 0.4);
        }

        .logout-btn:hover {
            background: rgba(239, 68, 68, 1);
            border-color: rgba(239, 68, 68, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
        }

        /* 登录/注册窗口样式 */
        .auth-window {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px) saturate(180%);
            -webkit-backdrop-filter: blur(30px) saturate(180%);
            border: 1px solid rgba(135, 206, 235, 0.5);
            box-shadow: 
                0 10px 40px rgba(135, 206, 235, 0.2),
                0 0 30px rgba(192, 192, 192, 0.15);
            border-radius: 24px;
            display: none;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .auth-window.active {
            display: flex !important;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .auth-window-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(135, 206, 235, 0.4);
            box-shadow: 0 2px 15px rgba(135, 206, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .auth-window-title {
            font-weight: 600;
            color: #4682B4;
            text-shadow: 0 1px 3px rgba(135, 206, 235, 0.3);
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .auth-window-controls {
            display: flex;
            gap: 10px;
        }

        .auth-window-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(135, 206, 235, 0.4);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            color: #87CEEB;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .auth-window-btn:hover {
            background: rgba(135, 206, 235, 0.2);
            border-color: rgba(135, 206, 235, 0.6);
            color: #4682B4;
            box-shadow: 0 2px 10px rgba(135, 206, 235, 0.3);
        }

        .auth-window-content {
            flex: 1;
            overflow-y: auto;
            padding: 25px;
        }

        .auth-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            border-bottom: 2px solid rgba(135, 206, 235, 0.2);
        }

        .auth-tab {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: none;
            border-bottom: 3px solid transparent;
            color: #708090;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .auth-tab:hover {
            color: #4682B4;
            background: rgba(135, 206, 235, 0.1);
        }

        .auth-tab.active {
            color: #4682B4;
            border-bottom-color: #4682B4;
        }

        .auth-form-container {
            max-width: 400px;
            margin: 0 auto;
        }

        .auth-form-group {
            margin-bottom: 20px;
        }

        .auth-form-label {
            display: block;
            color: #4682B4;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .auth-form-input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(135, 206, 235, 0.4);
            border-radius: 12px;
            color: #4A5568;
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
        }

        .auth-form-input:focus {
            border-color: rgba(70, 130, 180, 0.6);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.15);
        }

        .auth-form-input::placeholder {
            color: #9CA3AF;
        }

        .auth-form-hint {
            display: block;
            color: #708090;
            font-size: 12px;
            margin-top: 6px;
            line-height: 1.4;
        }

        .auth-error {
            padding: 12px 16px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            color: #EF4444;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .auth-submit-btn {
            width: 100%;
            padding: 12px 24px;
            background: linear-gradient(135deg, rgba(70, 130, 180, 0.8), rgba(135, 206, 235, 0.8));
            border: 1px solid rgba(135, 206, 235, 0.4);
            border-radius: 12px;
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
        }

        .auth-submit-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, rgba(70, 130, 180, 1), rgba(135, 206, 235, 1));
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
        }

        .auth-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        body.with-bg-video .top-navbar,
        body.with-bg-video .tokens-ticker {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22));
            border-color: rgba(255, 255, 255, 0.35);
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.55);
        }

        body.with-bg-video .user-info {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
            border-color: rgba(255, 255, 255, 0.35);
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.55);
        }

        body.with-bg-video .left-sidebar,
        body.with-bg-video .right-sidebar {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.20));
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.55);
        }

        body.with-bg-video .sidebar-widget {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.12));
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.50);
        }

        body.with-bg-video .app-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.10));
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.50);
        }

        body.with-bg-video .ai-chat-container {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0.14));
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.55);
        }

        body.with-bg-video .ai-chat-messages {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
            border-color: rgba(255, 255, 255, 0.20);
        }

        body.with-bg-video .ai-chat-input-wrapper {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.12));
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.50);
        }

        body.with-bg-video .activities-window,
        body.with-bg-video .x-account-analyzer-window,
        body.with-bg-video .ranking-window,
        body.with-bg-video .airdrop-window,
        body.with-bg-video .data-dashboard-window {
            display: none;
        }

        body.with-bg-video #viralityPredictWindow {
            display: flex !important;
        }

        body.with-bg-video .activities-window-header,
        body.with-bg-video .x-account-analyzer-window-header,
        body.with-bg-video .ranking-window-header,
        body.with-bg-video .airdrop-window-header,
        body.with-bg-video .data-dashboard-window-header,
        body.with-bg-video .auth-window-header {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16));
        }

        body.with-bg-video .activities-window-content .table {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08));
        }

        body.with-bg-video {
            color: #0f172a;
        }

        body.with-bg-video .navbar-link,
        body.with-bg-video .navbar-nav .nav-link,
        body.with-bg-video .widget-title,
        body.with-bg-video .news-item-time,
        body.with-bg-video .date-display {
            color: rgba(15, 23, 42, 0.72);
        }

        body.with-bg-video .navbar-link:hover,
        body.with-bg-video .navbar-nav .nav-link:hover {
            color: #0284c7;
            text-shadow: none;
        }

        body.with-bg-video .news-title,
        body.with-bg-video .news-item-title,
        body.with-bg-video .ticker-token-name,
        body.with-bg-video .app-item-name {
            color: rgba(15, 23, 42, 0.88);
        }

        body.with-bg-video .activities-window-content .table,
        body.with-bg-video .activities-window-content .table th,
        body.with-bg-video .activities-window-content .table td {
            color: rgba(15, 23, 42, 0.90);
        }

        body.with-bg-video .activities-window-header {
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.70);
        }

        body.with-bg-video .activities-window-header::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
                repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 4px),
                linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
            background-size: 180px 180px, 240px 240px, 100% 100%, 100% 100%;
            opacity: 0.45;
        }

        body.with-bg-video .activities-platform-filter {
            position: relative;
            padding: 10px 12px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12));
            border: 1px solid rgba(255, 255, 255, 0.24);
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.60);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            overflow: hidden;
        }

        body.with-bg-video .activities-platform-filter::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 6px),
                linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.00));
            opacity: 0.55;
        }

        body.with-bg-video .activities-platform-filter .btn-group {
            position: relative;
            z-index: 1;
        }

        body.with-bg-video .activities-platform-filter .btn {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.14));
            border-color: rgba(255, 255, 255, 0.28);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.55);
            color: rgba(15, 23, 42, 0.88);
        }

        body.with-bg-video .activities-platform-filter .btn:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
            border-color: rgba(2, 132, 199, 0.35);
        }

        body.with-bg-video .activities-platform-filter .btn.active {
            background: linear-gradient(135deg, rgba(2, 132, 199, 0.18), rgba(255, 255, 255, 0.16));
            border-color: rgba(2, 132, 199, 0.45);
            box-shadow: 0 10px 24px rgba(2, 132, 199, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.55);
            color: rgba(15, 23, 42, 0.92);
        }

        body.apps-only {
            overflow: hidden;
        }

        body.apps-only::before,
        body.apps-only::after {
            display: none;
        }

        body.apps-only .bg-video {
            display: none;
        }

        body.apps-only .top-navbar,
        body.apps-only .tokens-ticker {
            display: none;
        }

        body.apps-only .right-sidebar,
        body.apps-only .main-content {
            display: none;
        }

        body.apps-only .main-layout {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        body.apps-only .left-sidebar {
            width: auto;
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
            overflow: visible;
            height: auto;
        }

        body.apps-only .sidebar-toggle-btn {
            display: none;
        }

        body.apps-only .left-sidebar::after {
            display: none;
        }

        body.apps-only .left-sidebar .sidebar-widget:not(.apps-widget) {
            display: none;
        }

        body.apps-only .apps-widget {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.28));
            border: 1px solid rgba(255, 255, 255, 0.32);
            box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.60);
            border-radius: 24px;
            padding: 16px;
            backdrop-filter: blur(22px) saturate(140%);
            -webkit-backdrop-filter: blur(22px) saturate(140%);
            width: min(420px, calc(100vw - 32px));
        }

        body.apps-only .widget-title {
            text-align: center;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: rgba(15, 23, 42, 0.70);
            margin-bottom: 14px;
        }

        body.apps-only .apps-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin-top: 0;
        }

        body.apps-only .app-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22));
            border: 1px solid rgba(255, 255, 255, 0.28);
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.55);
            border-radius: 16px;
            padding: 16px 14px;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        body.apps-only .app-item:hover:not(.app-item-disabled) {
            transform: translateY(-4px);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.28));
            box-shadow: 0 20px 44px rgba(15, 23, 42, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.60);
        }

        body.apps-only .app-item-icon {
            font-size: 26px;
            filter: drop-shadow(0 6px 18px rgba(2, 132, 199, 0.18));
        }

        body.apps-only .app-item-name {
            color: rgba(15, 23, 42, 0.88);
            font-weight: 600;
        }

        /* 响应式 */
        @media (max-width: 1200px) {
            .right-sidebar {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .left-sidebar {
                display: none;
            }
            
            .top-navbar {
                padding: 8px 15px;
                height: auto;
                min-height: 60px;
                flex-wrap: wrap;
                align-items: flex-start;
            }
            
            .navbar-brand {
                font-size: 16px;
                flex-shrink: 0;
                order: 1;
            }
            
            .navbar-brand img {
                height: 28px;
            }
            
            .navbar-right {
                margin-left: auto;
                order: 2;
                flex-shrink: 0;
            }
            
            .navbar-links {
                display: flex !important;
                flex-wrap: wrap;
                gap: 8px;
                width: 100%;
                order: 3;
                padding: 10px 0 5px 0;
                border-top: 1px solid rgba(135, 206, 235, 0.2);
                margin-top: 5px;
                max-height: 200px;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .navbar-link {
                font-size: 12px;
                padding: 4px 8px;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .features-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
