:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --background-color: #2C2F36;
    --card-bg: #363B45;
    --text-color: #E4E4E4;
    --border-color: #454B55;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --gradient-start: #FF6B6B;
    --gradient-end: #4ECDC4;
    
    --type-key-finding-bg: rgba(255, 107, 107, 0.1);
    --type-key-finding-border: rgba(255, 107, 107, 0.2);
    --type-key-finding-color: #FF6B6B;
    
    --type-trend-bg: rgba(78, 205, 196, 0.1);
    --type-trend-border: rgba(78, 205, 196, 0.2);
    --type-trend-color: #4ECDC4;
    
    --type-opportunity-bg: rgba(255, 230, 109, 0.1);
    --type-opportunity-border: rgba(255, 230, 109, 0.2);
    --type-opportunity-color: #FFE66D;
    
    --type-risk-bg: rgba(255, 107, 107, 0.1);
    --type-risk-border: rgba(255, 107, 107, 0.2);
    --type-risk-color: #FF6B6B;
    
    --type-general-bg: rgba(156, 163, 175, 0.1);
    --type-general-border: rgba(156, 163, 175, 0.2);
    --type-general-color: #9CA3AF;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    font-family: 'Space Mono', monospace;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    position: relative;
    z-index: 1;
    /* 调整左边距，使Feed内容与导航栏居中对齐 */
    margin-left: calc(50% - 500px);
}

/* 导航栏容器 - 更宽的宽度 */
.header-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    position: relative;
    z-index: 1;
    /* 调整左边距，使导航栏与Feed内容居中对齐 */
    margin-left: calc(50% - 500px);
}

.header {
    margin-bottom: 16px;
    margin-top: 30px; /* 减少顶部边距 */
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.btn-back {
    color: var(--text-color);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.insight-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 24px;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    align-items: flex-start;
}

.insight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px var(--shadow-color);
    border-color: var(--secondary-color);
}

.insight-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.insight-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.type-badge.key-finding {
    background: var(--type-key-finding-bg);
    border: 1px solid var(--type-key-finding-border);
    color: var(--type-key-finding-color);
}

.type-badge.trend {
    background: var(--type-trend-bg);
    border: 1px solid var(--type-trend-border);
    color: var(--type-trend-color);
}

.type-badge.opportunity {
    background: var(--type-opportunity-bg);
    border: 1px solid var(--type-opportunity-border);
    color: var(--type-opportunity-color);
}

.type-badge.risk {
    background: var(--type-risk-bg);
    border: 1px solid var(--type-risk-border);
    color: var(--type-risk-color);
}

.type-badge.general {
    background: var(--type-general-bg);
    border: 1px solid var(--type-general-border);
    color: var(--type-general-color);
}

.type-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

.type-badge i {
    margin-right: 8px;
}

.importance {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    background: var(--type-trend-bg);
    border: 1px solid var(--type-trend-border);
}

.insight-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.insight-meta {
    display: flex;
    align-items: center;
    color: rgba(228, 228, 228, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    gap: 8px;
}

.insight-description {
    color: rgba(228, 228, 228, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.insight-sidebar {
    width: 280px;
    flex-shrink: 0;
    padding-left: 28px;
    border-left: 1px solid var(--border-color);
    align-self: flex-start;
}

.insight-source {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.source-label {
    display: flex;
    align-items: center;
    color: rgba(226, 232, 240, 0.7);
    margin-bottom: 12px;
    font-weight: 500;
}

.source-label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.source-meta {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.6);
    margin-bottom: 16px;
}

.twitter-link {
    display: inline-flex;
    align-items: flex-start;
    color: var(--secondary-color);
    text-decoration: none;
    padding: 12px 20px;
    background: var(--type-trend-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    width: 100%;
    margin-bottom: 8px;
    border: 1px solid var(--type-trend-border);
    font-weight: 500;
    line-height: 1.4;
}

.twitter-link:last-child {
    margin-bottom: 0;
}

.twitter-link:hover {
    background: var(--type-trend-bg);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.2);
}

.twitter-link i {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.twitter-link span {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

.twitter-account-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.twitter-account-container:last-child {
    margin-bottom: 0;
}

.twitter-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    color: var(--secondary-color);
    margin-left: 36px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.twitter-type-badge i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.twitter-type-badge span {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.related-tweets-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.related-projects-section {
    margin-top: 8px;
    margin-bottom: 4px;
    padding: 6px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.related-projects-title {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.related-projects-title i {
    margin-right: 8px;
    color: var(--primary-color);
}

.related-projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* 项目链接容器样式 */
.project-link-container {
    position: relative;
    display: inline-block;
    margin: 4px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--type-key-finding-bg);
    border: 1px solid var(--type-key-finding-border);
    border-radius: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.2);
}

.project-link i {
    margin-right: 8px;
}

.related-tweets-title {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.related-tweets-title i {
    margin-right: 8px;
    color: var(--accent-color);
}

.related-tweets-container {
    display: flex;
    gap: 8px;
}

.tweet-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    padding: 8px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.tweet-link:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 24px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.empty-state p {
    font-size: 1.2rem;
    color: rgba(228, 228, 228, 0.8);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
    border-radius: 12px;
    padding: 16px;
}

.spinner-border {
    color: var(--secondary-color);
    margin: 40px auto;
    width: 3rem;
    height: 3rem;
}

.ecosystem-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
    margin: 0 -4px;
}

.tab-btn {
    padding: 8px 16px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px;
    min-width: 120px;
    justify-content: center;
}

.ecosystem-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.ecosystem-badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ecosystem-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.tab-btn:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tab-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--background-color);
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .header {
        margin-bottom: 20px;
        margin-top: 30px; /* 移动端稍微减少顶部边距 */
        gap: 16px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo-area {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .ecosystem-tabs {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .tab-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
} 

.insight-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
    padding: 4px 0;
    width: 100%;
}

footer {
    padding: 16px 0;
    margin-top: 24px;
}

footer p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.7;
}

/* 新数据提示样式 */
.new-data-alert {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--background-color);
    padding: 10px 20px;
    border-radius: 16px;
    font-weight: 500;
    cursor: pointer;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.new-data-alert:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* 加载更多提示样式 */
.load-more-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    margin-top: 12px;
    min-height: 40px;
}

.load-more-spinner .spinner-border {
    width: 2rem;
    height: 2rem;
}

/* 无更多数据提示样式 */
.no-more-data {
    text-align: center;
    padding: 12px;
    color: var(--text-color);
    opacity: 0.7;
    display: none;
}

/* 移动端样式补充 */
@media (max-width: 768px) {
    .insight-card {
        flex-direction: column;
        align-items: stretch;
    }

    .insight-sidebar {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 1px solid var(--border-color);
        align-self: stretch;
    }

    .insight-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .type-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    /* 移动端AI分析按钮调整 */
    .ai-analysis-btn {
        top: -12px;
        right: -6px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .ai-analysis-btn i {
        font-size: 7px;
    }
} 

/* AI分析按钮样式 */
.ai-analysis-btn {
    position: absolute;
    top: -16px;
    right: -8px;
    display: none;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    border: none;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* 鼠标悬停时显示AI分析按钮 */
.project-link-container:hover .ai-analysis-btn {
    display: inline-flex;
    animation: fadeInScale 0.2s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ai-analysis-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.ai-analysis-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ai-analysis-btn i {
    font-size: 8px;
}

.ai-analysis-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* 高级毛玻璃效果 - 每个元素单独覆盖 */
.tab-btn.wallet-not-connected,
.tab-btn.information-level-restricted {
    position: relative;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.tab-btn.wallet-not-connected::before,
.tab-btn.information-level-restricted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    border-radius: 16px;
    z-index: 10; /* 提高z-index，确保毛玻璃效果完全遮挡内容 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    pointer-events: auto; /* 确保毛玻璃层可以接收鼠标事件 */
}

.tab-btn.wallet-not-connected::after,
.tab-btn.information-level-restricted::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    z-index: 11; /* 提高z-index，确保动画效果在最上层 */
    animation: shimmer 2s infinite;
    pointer-events: none; /* 动画层不接收鼠标事件 */
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 资讯框的高级毛玻璃效果 */
.insight-card.wallet-not-connected,
.insight-card.information-level-restricted {
    position: relative;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.insight-card.wallet-not-connected::before,
.insight-card.information-level-restricted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    backdrop-filter: blur(12px) saturate(200%);
    -webkit-backdrop-filter: blur(12px) saturate(200%);
    border-radius: 24px;
    z-index: 10; /* 提高z-index，确保毛玻璃效果完全遮挡内容 */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: auto; /* 确保毛玻璃层可以接收鼠标事件 */
}

.insight-card.wallet-not-connected::after,
.insight-card.information-level-restricted::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    z-index: 11; /* 提高z-index，确保动画效果在最上层 */
    animation: shimmer 3s infinite;
    pointer-events: none; /* 动画层不接收鼠标事件 */
}

/* 添加微妙的呼吸动画 */
.tab-btn.wallet-not-connected,
.tab-btn.information-level-restricted,
.insight-card.wallet-not-connected,
.insight-card.information-level-restricted {
    animation: breathe 4s ease-in-out infinite;
}

/* 确保毛玻璃效果内的所有子元素都无法被选择 */
.tab-btn.wallet-not-connected *,
.tab-btn.information-level-restricted *,
.insight-card.wallet-not-connected *,
.insight-card.information-level-restricted * {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    pointer-events: none !important;
}

@keyframes breathe {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.02);
        opacity: 0.9;
    }
}



/* 连接钱包提示样式 */
.wallet-connection-prompt {
    text-align: center;
    padding: 80px 40px;
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.wallet-connection-prompt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    border-radius: 24px;
    z-index: 1;
}

.wallet-connection-prompt > * {
    position: relative;
    z-index: 2;
}

.prompt-icon {
    margin-bottom: 24px;
}

.prompt-icon i {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

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

.wallet-connection-prompt h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wallet-connection-prompt p {
    font-size: 1.1rem;
    color: rgba(228, 228, 228, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.connect-wallet-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.connect-wallet-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

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

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

/* 响应式处理 */
@media (max-width: 768px) {
    /* 移动端高级毛玻璃效果调整 */
    .tab-btn.wallet-not-connected::before,
    .tab-btn.information-level-restricted::before {
        backdrop-filter: blur(6px) saturate(160%);
        -webkit-backdrop-filter: blur(6px) saturate(160%);
    }
    
    .insight-card.wallet-not-connected::before {
        backdrop-filter: blur(8px) saturate(180%);
        -webkit-backdrop-filter: blur(8px) saturate(180%);
    }
    
    /* 移动端减少动画强度 */
    .tab-btn.wallet-not-connected,
    .tab-btn.information-level-restricted,
    .insight-card.wallet-not-connected,
    .insight-card.information-level-restricted {
        animation: breathe-mobile 5s ease-in-out infinite;
    }
    
    @keyframes breathe-mobile {
        0%, 100% { 
            transform: scale(1);
            opacity: 0.85;
        }
        50% { 
            transform: scale(1.01);
            opacity: 0.9;
        }
    }
    
    /* 移动端连接钱包提示调整 */
    .wallet-connection-prompt {
        padding: 60px 30px;
        margin: 15px 0;
    }
    
    .wallet-connection-prompt h3 {
        font-size: 1.5rem;
    }
    
    .wallet-connection-prompt p {
        font-size: 1rem;
    }
    
    .connect-wallet-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
} 