        /* 全局触摸优化 */
        * {
            -webkit-tap-highlight-color: transparent;
        }

        /* 为所有可点击元素添加触摸优化 */
        button,
        a,
        [onclick],
        [role="button"] {
            touch-action: manipulation;
        }

        :root {
            --primary-color: #F0B90B;
            --primary-dark: #D19F0B;
            --secondary-color: #B7BDC6;
            --text-color: #E6E8EA;
            --bg-color: #1E2026;
            --card-bg: #2B3139;
            --border-color: #30363D;
            --success-color: #03A66D;
            --danger-color: #CF304A;
            --info-color: #0085FF;
            --warning-color: #F0B90B;
            --grab-color: #FFCC00;
            --claim-color: #03A66D;
            --tge-color: #0085FF;
            --alert-color: #ff9800;
        }

        header {
            background-color: #0B0E11;
        }

        .airdrops-table th {
            background-color: #14151A;
        }

        .points-badge {
            background-color: #2B3139;
        }

        .airdrops-table tr:hover {
            background-color: rgba(240, 185, 11, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: var(--card-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px 0;
            position: relative;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            height: 32px;
            margin-right: 10px;
        }

        .logo span {
            color: var(--primary-color);
        }

        .main-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 30px 0;
            color: var(--text-color);
        }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px;
            position: absolute;
            right: 20px;
            top: 20px;
            transition: transform 0.3s ease;
        }

        .theme-toggle:hover i {
            transform: rotate(90deg);
        }

        .main {
            padding: 10px 0 10px;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 10px 0 10px;
            display: flex;
            align-items: center;
            color: var(--secondary-color);
        }

        .section-title i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        .section-desc {
            font-size: 0.9rem;
            color: #76808F;
            margin-bottom: 20px;
        }

        .airdrops-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            background-color: var(--card-bg);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
            table-layout: fixed;
        }

        .airdrops-table th,
        .airdrops-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
        }

        .airdrops-table th {
            background-color: #14151A;
            color: #76808F;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .airdrops-table thead tr {
            background-color: #14151A;
            width: 100%;
        }

        .airdrops-table th:nth-child(1),
        .airdrops-table td:nth-child(1) {
            width: 30%;
            text-align: left;
        }

        .airdrops-table th:nth-child(2),
        .airdrops-table td:nth-child(2) {
            width: 15%;
            text-align: center;
        }

        .airdrops-table th:nth-child(3),
        .airdrops-table td:nth-child(3) {
            width: 20%;
            text-align: center;
        }

        .airdrops-table th:nth-child(4),
        .airdrops-table td:nth-child(4) {
            width: 35%;
            text-align: left;
        }

        .airdrops-table tr:last-child td {
            border-bottom: none;
        }

        .airdrops-table tr:hover {
            background-color: rgba(240, 185, 11, 0.05);
        }

        .token-name {
            display: flex;
            align-items: center;
        }

        .token-symbol {
            font-weight: 700;
            display: inline-block;
            margin-bottom: 4px;
        }

        .time-cell {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: space-between;
        }

        .token-type {
            display: inline-flex;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: auto;
        }

        .token-type.grab {
            background-color: var(--grab-color);
        }

        .token-type.claim {
            background-color: var(--claim-color);
        }

        .token-fullname {
            font-size: 0.85rem;
            color: #76808F;
        }

        .points-badge {
            background-color: #2B3139;
            color: var(--text-color);
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
        }

        .points-badge.points-badge--compact {
            padding-left: 0;
        }

        .value-text {
            display: inline-block;
            font-size: 0.75em;
            margin-top: 4px;
            font-weight: normal;
        }

        .exchange-price-value {
            color: var(--text-color);
            display: block;
        }

        .dex-price-value {
            color: var(--primary-color);
            display: block;
            margin-top: 2px;
        }

        .dex-price-icon {
            color: var(--primary-color);
            margin-right: 0px;
            font-size: 0.9em;
            -webkit-tap-highlight-color: transparent;
        }

        .price-link .dex-price-icon {
            color: var(--primary-color) !important;
            transition: color 0.2s ease;
        }

        .price-link:hover .dex-price-icon {
            color: var(--primary-dark) !important;
        }

        .price-link {
            color: var(--primary-color) !important;
            text-decoration: none;
            transition: color 0.2s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .price-link:hover {
            color: var(--primary-dark) !important;
        }


        .token-link {
            color: #ffffff !important;
            text-decoration: none;
            transition: color 0.2s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            white-space: nowrap;
            display: inline;
        }

        .token-link:hover {
            color: #f0f0f0 !important;
        }

        .contract-icon {
            font-size: 12px;
            margin-left: 4px;
            opacity: 0.8;
            vertical-align: middle;
            display: inline;
        }

        .price-container {
            display: block;
            width: 100%;
            position: relative;
        }

        .loading {
            text-align: center;
            padding: 40px 0;
            color: #76808F;
        }

        .spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border-left-color: var(--primary-color);
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .nav-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 5px 10px;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .airdrops-table-wrapper {
                margin-bottom: 10px;
            }

            .airdrops-table {
                margin-bottom: 0;
                width: 100%;
            }

            .section-title {
                margin: 20px 0 15px;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 640px) {

            .airdrops-table th,
            .airdrops-table td {
                padding: 8px 4px;
                font-size: 0.8rem;
            }

            .container {
                padding: 0 10px;
            }

            .airdrops-table th:nth-child(1),
            .airdrops-table td:nth-child(1) {
                width: 28%;
                padding-left: 8px;
            }

            .airdrops-table th:nth-child(2),
            .airdrops-table td:nth-child(2) {
                width: 16%;
            }

            .airdrops-table th:nth-child(3),
            .airdrops-table td:nth-child(3) {
                width: 26%;
            }

            .airdrops-table th:nth-child(4),
            .airdrops-table td:nth-child(4) {
                width: 30%;
                padding-right: 12px;
            }

            .token-fullname {
                font-size: 0.75rem;
            }

            .token-symbol {
                font-size: 0.9rem;
            }

            .points-badge {
                font-size: 0.75rem;
                padding: 3px 6px;
            }

            .time-cell {
                gap: 2px;
                font-size: 0.8rem;
                padding-right: 4px;
            }

            .value-text {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 360px) {

            .airdrops-table th,
            .airdrops-table td {
                padding: 6px 2px;
                font-size: 0.75rem;
            }

            .token-fullname {
                font-size: 0.7rem;
            }

            .container {
                padding: 0 8px;
            }
        }

        .refresh-btn {
            background-color: var(--primary-color);
            color: #FFFFFF;
            border: none;
            border-radius: 4px;
            padding: 6px 12px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            margin-left: auto;
        }

        .refresh-btn:hover {
            background-color: var(--primary-dark);
        }

        .refresh-btn i {
            font-size: 1rem;
        }

        .section-title {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .update-time {
            text-align: center;
            color: var(--secondary-color);
            font-size: 0.85rem;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        .refresh-icon {
            color: var(--primary-color);
            font-size: 1.2rem;
            cursor: pointer;
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .refresh-icon:hover {
            transform: rotate(90deg);
        }

        .rotating {
            animation: rotate 1s linear;
        }

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

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

        .airdrops-table-wrapper {
            margin-bottom: 10px;
        }

        .refresh-countdown {
            display: inline-block;
            font-size: 0.8rem;
            color: var(--secondary-color);
            margin-left: 10px;
        }

        .refreshing-indicator {
            display: inline-block;
            margin-left: 5px;
            color: var(--primary-color);
            animation: spin 1s linear infinite;
        }

        .completed-icon {
            margin-left: 6px;
            font-size: 0.9rem;
        }

        .bi-check-circle-fill {
            color: #8A8A8A;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .spin {
            animation: spin 1s linear infinite;
            display: inline-block;
        }

        .header-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }

        .header-links a {
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 0.9rem;
            padding: 5px;
            transition: color 0.2s ease;
        }

        .header-links a:hover {
            color: var(--primary-color);
        }

        .header-links a.active {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Footer Styles */
        .footer {
            padding: 8px 0 16px;
            font-size: 0.85rem;
            color: #76808F;
            margin-top: 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 10px 0;
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-logo {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.2s;
        }

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

        .language-dropdown {
            position: relative;
        }

        .language-menu {
            display: none;
            position: absolute;
            bottom: 100%;
            right: 0;
            background-color: var(--bg-color);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 10px 0;
            min-width: 120px;
            box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
            margin-bottom: 5px;
        }

        .language-dropdown:hover .language-menu {
            display: block;
        }

        .language-option {
            display: block;
            padding: 5px 15px;
            text-decoration: none;
            color: var(--text-color);
            transition: background-color 0.2s;
        }

        .language-option:hover {
            background-color: var(--hover-bg-color, rgba(255, 255, 255, 0.1));
            color: var(--primary-color);
        }

        /* Language notification */
        .language-notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            max-width: 350px;
            width: 90%;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            pointer-events: none;
        }

        .language-notification.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .notification-message {
            margin-bottom: 15px;
            text-align: center;
        }

        .notification-actions {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .notification-btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.2s;
        }

        .notification-btn-primary {
            background-color: var(--primary-color);
            color: #000;
        }

        .notification-btn-primary:hover {
            background-color: var(--primary-dark);
        }

        .notification-btn-secondary {
            background-color: var(--card-bg);
            color: var(--text-color);
            border: 1px solid var(--border-color);
        }

        .notification-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* 推特提醒铃铛按钮样式 */
        .reminder-bell {
            background: none;
            border: none;
            color: #F0B90B;
            cursor: pointer;
            margin-left: 6px;
            padding: 4px;
            border-radius: 3px;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            vertical-align: -0.125em;
            /* 移动端触摸优化 */
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            min-width: 32px;
            min-height: 32px;
        }

        .reminder-bell:hover {
            background-color: rgba(240, 185, 11, 0.1);
            color: #F0B90B;
            transform: scale(1.1);
        }

        .bell-svg {
            width: 1.2em;
            height: 1.2em;
            fill: currentColor;
            vertical-align: -0.125em;
        }

        /* 推特提醒模态框样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
        }

        .modal-content {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 0;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-color);
        }

        .modal-header h3 {
            margin: 0;
            color: var(--text-color);
            font-size: 1.2em;
            font-weight: 600;
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: all 0.2s ease;
            min-width: 40px;
            min-height: 40px;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .modal-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
        }

        .modal-body {
            padding: 24px;
        }

        .reminder-text {
            text-align: center;
            margin-bottom: 24px;
        }

        .reminder-text p {
            color: var(--text-color);
            font-size: 1em;
            line-height: 1.5;
            margin: 0;
        }

        .reminder-text strong {
            color: #F0B90B;
        }

        .modal-actions {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .twitter-btn {
            display: none;
            background: linear-gradient(135deg, #F0B90B, #d4a00a);
            color: #000;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .twitter-btn:hover {
            display: none;
            background: linear-gradient(135deg, #d4a00a, #b8900a);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(240, 185, 11, 0.3);
        }

        .dingtalk-btn {
            background: linear-gradient(135deg, #2E8AE6, #1D72C9);
            color: #fff;
        }

        .dingtalk-btn:hover {
            background: linear-gradient(135deg, #1D72C9, #1864B7);
            box-shadow: 0 4px 12px rgba(46, 138, 230, 0.3);
        }

        .telegram-btn {
            background: linear-gradient(135deg, #229ED9, #0088CC);
            color: #fff;
        }

        .telegram-btn:hover {
            background: linear-gradient(135deg, #0088CC, #006699);
            box-shadow: 0 4px 12px rgba(34, 158, 217, 0.3);
        }

        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                margin: 20px;
            }

            .modal-header {
                padding: 16px 20px;
            }

            .modal-body {
                padding: 20px;
            }

            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }

            .footer-left {
                margin-bottom: 0;
            }

            .footer-links {
                justify-content: flex-end;
            }

            .language-menu {
                right: 0;
                transform: none;
            }

            .reminder-bell {
                min-width: 36px;
                min-height: 36px;
                padding: 6px;
            }

            .bell-svg {
                width: 1.4em;
                height: 1.4em;
            }
        }

        .tge-info-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .tge-info-row {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .tge-label {
            min-width: 72px;
            color: var(--secondary-color);
        }

        @media (max-width: 360px) {
            .tge-label {
                min-width: 64px;
            }

            /* 小屏幕铃铛按钮进一步优化 */
            .reminder-bell {
                min-width: 40px;
                min-height: 40px;
                padding: 8px;
            }

            .bell-svg {
                width: 1.6em;
                height: 1.6em;
            }
        }

        .tge-value input[type="number"] {
            width: 90px;
            padding: 4px 6px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 1.05rem;
        }

        .tge-price-note {
            font-size: 0.85rem;
            color: var(--secondary-color);
        }

        .tge-estimate .dex-price-value {
            font-size: 1rem !important;
            line-height: 1.4;
            margin-top: 0;
        }

        /* 宣传区域样式 */
        .promo-section {
            background: linear-gradient(135deg, rgba(240, 185, 11, 0.08), rgba(240, 185, 11, 0.03));
            border-top: 1px solid var(--border-color);
            padding: 32px 0;
            margin-top: 40px;
        }

        .promo-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .promo-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: flex-start;
            gap: 16px;
            max-width: 400px;
            width: 100%;
        }

        .promo-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 185, 11, 0.12);
            border-color: rgba(240, 185, 11, 0.25);
        }

        .promo-item-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #000;
            box-shadow: 0 3px 12px rgba(240, 185, 11, 0.25);
        }

        .promo-item-content {
            flex: 1;
            min-width: 0;
        }

        .promo-item-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 8px 0;
            line-height: 1.3;
        }

        .promo-link {
            color: #ffffff !important;
            text-decoration: none;
            transition: all 0.2s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .promo-link:hover {
            color: #f0f0f0 !important;
            text-decoration: none;
        }

        .promo-link i {
            font-size: 12px;
            transition: transform 0.2s ease;
        }

        .promo-link:hover i {
            transform: translateX(2px);
        }

        /* 整个卡片作为链接的样式 */
        .promo-link-card {
            color: inherit;
            text-decoration: none;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .promo-link-card:hover {
            color: inherit;
            text-decoration: none;
        }

        .promo-link-card .promo-item-title {
            color: #ffffff;
        }

        .promo-link-card:hover .promo-item-title i {
            transform: translateX(2px);
        }

        .promo-item-desc {
            color: var(--secondary-color);
            font-size: 0.85rem;
            line-height: 1.4;
            margin: 0;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .promo-section {
                padding: 24px 0;
                margin-top: 30px;
            }

            .promo-grid {
                gap: 16px;
                flex-direction: column;
                align-items: center;
            }

            .promo-item {
                padding: 18px;
                gap: 14px;
                width: 100%;
                max-width: 400px;
            }

            .promo-item-icon {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            .promo-item-title {
                font-size: 1rem;
            }

            .promo-item-desc {
                font-size: 0.8rem;
            }
        }

        /* 中等屏幕：两列布局 */
        @media (min-width: 769px) and (max-width: 1024px) {
            .promo-grid {
                gap: 18px;
            }

            .promo-item {
                flex: 0 1 calc(50% - 9px);
                min-width: 280px;
            }
        }

        @media (max-width: 480px) {
            .promo-item {
                padding: 16px;
                gap: 12px;
            }

            .promo-item-icon {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .promo-item-title {
                font-size: 0.95rem;
            }

            .promo-link {
                gap: 4px;
            }

            .promo-link i {
                font-size: 11px;
            }
        }

        /* TGE 标签样式（首页）：与历史页一致的小一号蓝色 */
        .tge-tag {
            font-size: 0.8rem;
            color: var(--tge-color);
            font-weight: 600;
        }

        @media (max-width: 640px) {
            .tge-tag {
                font-size: 0.7rem;
            }
        }

        /* 价格信息图标 与 TGE 指南按钮（从 index.html 内联样式迁移） */
        .price-info-icon {
            color: #F0B90B !important;
            cursor: pointer;
            transition: color 0.2s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .price-info-icon:hover {
            color: #D19F0B !important;
        }

        .tge-guide-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #F0B90B;
            text-decoration: none;
            font-size: 12px;
            border: 1px solid #F0B90B;
            border-radius: 6px;
            padding: 2px 8px;
            margin-left: 6px;
            line-height: 1.6;
        }

        .tge-guide-link:hover {
            background: rgba(240, 185, 11, 0.1);
        }

        /* 数量份额提示：悬浮小气泡与点击横条 */
        .shares-tooltip {
            position: fixed;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            padding: 8px 10px;
            border-radius: 6px;
            font-size: 12px;
            z-index: 10000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.15s ease;
            max-width: 240px;
            text-align: center;
        }

        .shares-banner {
            position: fixed;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            z-index: 10000;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
        }

        .adBox {
            text-align: center;
            border: 1px solid #888;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 20px;
            padding-bottom: 6px;
            position: relative;
        }

        .adBox::before {
            content: "Advertisement";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            font-size: 10px;
            color: #888;
        }
