/* 全局样式重置和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #050505;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* 导航栏样式 */
.navbar {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* 导航栏滚动效果 - 已禁用 */
/* .navbar.navbar-scrolled { */
/*     padding: 15px 0; */
/*     background-color: rgba(5, 5, 5, 0.95); */
/*     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); */
/* } */

/* 汉堡菜单按钮 */
.menu-button {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.menu-button:hover {
    color: #10b981;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
}

/* 确保logo中的span元素与button元素高度一致并左对齐 */
.logo {
    display: flex;
    align-items: center;
    height: 42px;
}

.logo span[data-lang="nav-logo"] {
    display: flex;
    align-items: center;
    height: 100%;
    text-align: left;
}

/* 汉堡菜单内按钮水平对齐 */
.mobile-actions .connect-wallet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* 钱包显示元素水平对齐 */
.wallet-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
}

/* 语言按钮和下拉菜单样式调整 */
.language-switcher {
    position: relative;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* 语言切换器样式 - 地球图标下拉菜单 */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    min-width: 100px;
    justify-content: center;
    height: 42px;
    white-space: nowrap;
}

.language-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.language-button:active {
    transform: translateY(0);
}

.language-button i {
    font-size: 1.1rem;
}

/* 下拉菜单样式 */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.language-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 语言选项样式 */
.language-option {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

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

.language-option.active {
    background-color: #10b981;
    color: white;
}

/* 向下箭头动画 */
.language-button .arrow {
    transition: transform 0.3s ease;
}

.language-button.open .arrow {
    transform: rotate(180deg);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .language-button {
        min-width: 80px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .language-button i {
        font-size: 1rem;
    }
    
    .language-dropdown {
        min-width: 120px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .language-option {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #10b981;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 42px;
}

.nav-links a:hover {
    color: #10b981;
}

.connect-wallet {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    height: 42px;
    white-space: nowrap;
}

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

.connect-wallet:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.connect-wallet:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* 连接状态的按钮样式 */
.connect-wallet:disabled,
.connect-wallet[style*="已连接"] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    cursor: default;
    transform: none;
}

.connect-wallet:disabled:hover,
.connect-wallet[style*="已连接"]:hover {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    transform: none;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

/* 主标题区域 */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #050505;
    perspective: 1000px;
}

/* 背景图片层 */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        linear-gradient(135deg, rgba(3, 7, 18, 0.9) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(30, 41, 59, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><radialGradient id="bg1" cx="20%" cy="20%" r="60%"><stop offset="0%" style="stop-color:%2310b981" stop-opacity="0.1"/><stop offset="100%" style="stop-color:%2310b981" stop-opacity="0"/></radialGradient><radialGradient id="bg2" cx="80%" cy="80%" r="60%"><stop offset="0%" style="stop-color:%2306b6d4" stop-opacity="0.08"/><stop offset="100%" style="stop-color:%2306b6d4" stop-opacity="0"/></radialGradient><radialGradient id="bg3" cx="50%" cy="10%" r="40%"><stop offset="0%" style="stop-color:%236366f1" stop-opacity="0.06"/><stop offset="100%" style="stop-color:%236366f1" stop-opacity="0"/></radialGradient></defs><rect width="1920" height="1080" fill="rgb(3,7,18)"/><circle cx="384" cy="216" r="300" fill="url(%23bg1)"/><circle cx="1536" cy="864" r="250" fill="url(%23bg2)"/><circle cx="960" cy="108" r="200" fill="url(%23bg3)"/><g opacity="0.03" fill="none" stroke="%2310b981" stroke-width="1"><path d="M0 200 Q480 100 960 200 T1920 200"/><path d="M0 400 Q480 300 960 400 T1920 400"/><path d="M0 600 Q480 500 960 600 T1920 600"/><path d="M0 800 Q480 700 960 800 T1920 800"/><path d="M200 0 Q300 360 200 720 T200 1080"/><path d="M960 0 Q1060 360 960 720 T960 1080"/><path d="M1720 0 Q1620 360 1720 720 T1720 1080"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-10%, -10%) scale(1.1);
    z-index: -2;
    animation: backgroundFloat 20s ease-in-out infinite;
}

/* 动态渐变覆盖层 */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(5, 5, 5, 0.3) 0%, rgba(10, 10, 10, 0.5) 100%);
    z-index: -1;
    animation: gradientShift 15s ease-in-out infinite;
}

/* 粒子容器 */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.6) 0%, rgba(16, 185, 129, 0.0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 4s; animation-duration: 6s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 3s; animation-duration: 7s; }
.particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: 5s; animation-duration: 11s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 2.5s; animation-duration: 8s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 6s; animation-duration: 9s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 1.5s; animation-duration: 12s; }
.particle:nth-child(10) { width: 6px; height: 6px; left: 15%; animation-delay: 7s; animation-duration: 10s; }

@keyframes float {
    0%, 100% { 
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    50% { 
        transform: translateY(-10vh) translateX(50px) rotate(180deg);
    }
}

/* 六边形背景图案 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: 0;
}

/* 六边形装饰元素 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(30deg, transparent 60%, rgba(16, 185, 129, 0.02) 60%, rgba(16, 185, 129, 0.02) 70%, transparent 70%),
        linear-gradient(60deg, transparent 30%, rgba(16, 185, 129, 0.02) 30%, rgba(16, 185, 129, 0.02) 40%, transparent 40%),
        linear-gradient(120deg, transparent 60%, rgba(16, 185, 129, 0.02) 60%, rgba(16, 185, 129, 0.02) 70%, transparent 70%),
        linear-gradient(150deg, transparent 30%, rgba(16, 185, 129, 0.02) 30%, rgba(16, 185, 129, 0.02) 40%, transparent 40%),
        linear-gradient(90deg, transparent 60%, rgba(16, 185, 129, 0.02) 60%, rgba(16, 185, 129, 0.02) 70%, transparent 70%),
        linear-gradient(0deg, transparent 30%, rgba(16, 185, 129, 0.02) 30%, rgba(16, 185, 129, 0.02) 40%, transparent 40%);
    background-size: 400px 400px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    z-index: 0;
}

/* 背景浮动动画 */
@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(-10%, -10%) scale(1.1);
    }
    25% {
        transform: translate(-8%, -12%) scale(1.1);
    }
    50% {
        transform: translate(-12%, -8%) scale(1.1);
    }
    75% {
        transform: translate(-9%, -11%) scale(1.1);
    }
}

/* 渐变色彩过渡动画 */
@keyframes gradientShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
            linear-gradient(135deg, rgba(5, 5, 5, 0.3) 0%, rgba(10, 10, 10, 0.5) 100%);
    }
    33% {
        background: 
            radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 30% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
            linear-gradient(225deg, rgba(10, 10, 10, 0.3) 0%, rgba(5, 5, 5, 0.5) 100%);
    }
    66% {
        background: 
            radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 20% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
            linear-gradient(315deg, rgba(8, 8, 8, 0.35) 0%, rgba(12, 12, 12, 0.45) 100%);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* 标题缩放动画 */
@keyframes titlePulse {
    0%, 100% {
        transform: scale(1) translateZ(0);
        text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.02) translateZ(10px);
        text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    }
}

.hero h1 br {
    display: block;
}

.hero-button {
    background-color: #10b981;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transform: translateZ(0);
}

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

.hero-button:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.hero-button:hover::before {
    left: 100%;
}

.subscribe-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    margin-bottom: 40px;
}

.subscribe-link:hover {
    color: #10b981;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* 加密货币滚动条 */
.crypto-ticker {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.crypto-ticker::-webkit-scrollbar {
    display: none;
}

.crypto-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 8px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.crypto-name {
    font-weight: 600;
    color: #10b981;
}

.crypto-price {
    font-weight: 700;
    font-size: 18px;
}

.crypto-change.up {
    color: #10b981;
}

.crypto-change.down {
    color: #ef4444;
}

/* 合作伙伴图标区域 */
.partners-section {
    padding: 80px 0;
    position: relative;
}

.partners-section .container {
    position: relative;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.partners-grid:last-child {
    margin-bottom: 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.85;
    backdrop-filter: blur(10px);
    transform: translateZ(0);
    will-change: transform;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.partner-logo img {
    max-width: 140px;
    max-height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* 股票市场投资区域 */
.stock-market {
    padding: 100px 0;
    text-align: center;
}

.stock-market h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.stock-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.stock-logo {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #10b981;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stock-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.stock-logo:hover {
    transform: translateY(-5px);
    background-color: rgba(16, 185, 129, 0.1);
}

.explore-btn {
    background-color: transparent;
    color: #10b981;
    border: 1px solid #10b981;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #10b981;
    color: white;
}

/* 信息区块样式 */
.info-section {
    padding: 100px 0;
}

.info-section.alt {
    background-color: rgba(16, 185, 129, 0.05);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.info-card h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* 按钮悬停效果增强 */
.info-card button {
    background-color: transparent;
    color: #10b981;
    border: 1px solid #10b981;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-card button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.info-card button:hover {
    background-color: #10b981;
    color: white;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

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

.info-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 网格图案 */
.grid-pattern {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.2) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(16, 185, 129, 0.2) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(16, 185, 129, 0.2) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(16, 185, 129, 0.2) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

/* 图表图案 */
.graph-pattern {
    width: 300px;
    height: 300px;
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.2) 0%, transparent 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.graph-pattern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, #10b981 0%, transparent 100%);
    border-top-right-radius: 100px;
}

/* Logo占位符 */
.logo-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

/* RWA交易所区块 */
.rwa-section {
    padding: 100px 0;
    text-align: center;
}

.rwa-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.rwa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    justify-items: center;
}

.rwa-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.rwa-info p {
    font-size: 1.2rem;
}

.rwa-info p:first-child {
    font-size: 1.5rem;
    font-weight: 700;
}

.rwa-info p:nth-child(2) {
    color: #10b981;
    font-weight: 600;
}

.rwa-info p:nth-child(3) {
    font-size: 2rem;
    font-weight: 800;
}

.price-change.up {
    color: #10b981;
    font-weight: 600;
}

.rwa-info button {
    background-color: #10b981;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.rwa-info button:hover {
    background-color: #059669;
}

/* 手机模型 */
.phone-mockup {
    width: 50%;
    height: auto;
    max-width: 400px;
    max-height: 80vh;
    background-color: #1a1a1a;
    border-radius: 40px;
    border: 12px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    aspect-ratio: 9/19.5;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -7px;
    width: 200px;
    height: 14px;
    background-color: #333;
    border-radius: 14px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #050505;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
}

.screen-header {
    font-weight: 700;
    color: #10b981;
    margin-bottom: 20px;
}

.screen-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.stock-price {
    font-size: 2rem;
    font-weight: 800;
}

.stock-change.up {
    color: #10b981;
    font-weight: 600;
}

.buy-button {
    background-color: #10b981;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

/* 技术说明区块 */
.tech-section {
    padding: 100px 0;
    text-align: center;
    background-color: rgba(16, 185, 129, 0.05);
}

.tech-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.tech-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* 立方体堆叠 */
.cube-stack {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.cube-stack::before,
.cube-stack::after,
.cube-stack span::before,
.cube-stack span::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    opacity: 0.8;
}

.cube-stack::before {
    top: 0;
    left: 0;
    transform: translateZ(50px);
}

.cube-stack::after {
    top: 50px;
    left: 50px;
    transform: translateZ(25px);
}

.cube-stack span::before {
    top: 100px;
    left: 25px;
    transform: translateZ(75px);
}

.cube-stack span::after {
    top: 25px;
    left: 100px;
    transform: translateZ(0);
}

.cube-stack span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* 立方体堆叠动画 */
@keyframes rotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* 提升动画性能 */
.cube-stack {
    transform: translateZ(0);
    will-change: transform;
}

.tech-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* RWA交易所弹窗样式 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 移除关闭按钮 */
.close-button {
    display: none;
}

.rwa-logo-icon {
    margin-bottom: 5px;
}

.modal-logo h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #1e293b;
}

.modal-logo p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.close-button {
    background: none;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* 删除重复的close-button样式定义 */
.modal-body {
    padding: 20px 25px 25px;
}

.modal-explore {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.modal-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #0284c7;
    background-color: #f8fafc;
}

.modal-button i:first-child {
    margin-right: 8px;
    font-size: 16px;
}

.modal-button i:last-child {
    font-size: 12px;
    color: #0284c7;
}

/* 页脚样式 */
footer {
    background-color: #0a0a0a;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #10b981;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* 页面滚动动画 */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 优先显示的区块默认可见 */
.hero,
.stock-market {
    opacity: 1;
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 5rem;
    }
    
    .info-grid,
    .info-grid.reverse,
    .rwa-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid.reverse .info-image {
        order: 1;
    }
    
    .info-grid.reverse .info-card {
        order: 2;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero h1 br {
        display: block;
    }
    
    .crypto-ticker {
        gap: 15px;
    }
    
    .crypto-item {
        padding: 8px 15px;
    }
    
    .stock-logo {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .stock-market h2,
    .info-card h3,
    .rwa-section h2,
    .tech-section h2 {
        font-size: 2rem;
    }
    
    .info-image {
        height: 300px;
    }
    
    .grid-pattern,
    .graph-pattern {
        width: 250px;
        height: 250px;
    }
    
    .logo-placeholder {
        width: 150px;
        height: 150px;
        font-size: 6rem;
    }
    
    .phone-mockup {
        max-width: 100%;
        max-height: 100%;
        border: 10px solid #333;
        box-sizing: border-box;
    }
    
    .phone-screen {
        padding: 15px;
        margin: 0;
    }
}

/* Jupiter区域样式 */
.jupiter-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.jupiter-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    flex-direction: column;
}

.jupiter-content .phone-mockup {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.jupiter-content .phone-mockup:hover {
    transform: translateY(-10px);
}

#jupiter-plugin {    overflow: hidden;
}

/* 法律警告模态框样式 */
.warning-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.warning-modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.warning-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.warning-modal-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-modal-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    color: white;
    border-radius: 2px;
    font-weight: bold;
    font-size: 8px;
    line-height: 1;
}

.warning-modal-logo .logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.warning-modal-body {
    padding: 24px;
}

.warning-text {
    color: #333333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.warning-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.warning-text a:hover {
    text-decoration: underline;
}

.warning-modal-footer {
    padding: 0 24px 24px;
}

.accept-button {
    width: 100%;
    padding: 14px 24px;
    background-color: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accept-button:hover {
    background-color: #059669;
}

.accept-button:active {
    transform: translateY(1px);
}

/* 响应式调整 */
@media (max-width: 640px) {
    .warning-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .warning-modal-header,
    .warning-modal-body {
        padding: 20px;
    }
    
    .warning-modal-footer {
        padding: 0 20px 20px;
    }
    
    .warning-text {
        font-size: 13px;
    }
}