/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff006e;
    --accent-color: #ffbe0b;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #00d4ff, #0099cc);
    --gradient-secondary: linear-gradient(135deg, #ff006e, #ff4081);
    --gradient-accent: linear-gradient(135deg, #ffbe0b, #ff9500);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow-secondary: 0 0 20px rgba(255, 0, 110, 0.3);
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* 背景动画 */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-color), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--secondary-color), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent-color), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--primary-color), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--secondary-color), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 10s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* 粒子动画 */
@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.particle {
    pointer-events: none;
    z-index: 1;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo i {
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1001;
        margin: 0;
        display: none;
    }
    
    .nav-links.active {
        right: 0;
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
    }
}

/* 通用容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 英雄区域 */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 190, 11, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #00D9C5;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 217, 197, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-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: left 0.5s ease;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 197, 0.4);
}

/* 手机模型 */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

/* 股票交易应用样式 */
.stock-trading-app {
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    color: var(--text-primary);
    font-size: 0.85rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.stock-header {
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.stock-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stock-code {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.stock-price {
    font-size: 1.2rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
}

.stock-change {
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.stock-change.positive {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.stock-change.negative {
    background: rgba(255, 0, 110, 0.2);
    color: #ff006e;
}

.stock-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.info-item .label {
    color: var(--text-secondary);
}

.info-item .value {
    color: var(--text-primary);
    font-weight: 600;
}

.chart-container {
    height: 120px;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.chart-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.technical-indicators {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.indicator {
    text-align: center;
}

.indicator .label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.indicator .value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
}

.chip-peak {
    padding: 0.8rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.chip-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.chip-chart {
    display: flex;
    align-items: end;
    height: 40px;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.chip-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), transparent);
    border-radius: 1px;
    opacity: 0.7;
}

.chip-price {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
}

.order-book {
    padding: 0.8rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.order-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.sell-orders,
.buy-orders {
    margin-bottom: 0.5rem;
}

.sell-orders .order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    border-left: 3px solid #ff006e;
    padding-left: 0.5rem;
    margin-bottom: 0.1rem;
}

.buy-orders .order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    border-left: 3px solid #00ff88;
    padding-left: 0.5rem;
    margin-bottom: 0.1rem;
}

.order-item .price {
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
}

.order-item .volume {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.trading-buttons {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    margin-top: auto;
}

.btn-buy,
.btn-sell {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.btn-buy {
    background: linear-gradient(135deg, #00ff88, #00d9c5);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-sell {
    background: linear-gradient(135deg, #ff006e, #ff4757);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.btn-buy:hover,
.btn-sell:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-buy i,
.btn-sell i {
    font-size: 1.2rem;
}

/* 移除旧的stock-chart样式 */
.stock-chart {
    display: none;
}

/* 特色区域 */
.features {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 110, 0.05));
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 游戏玩法 */
.gameplay {
    padding: 60px 0;
    background: var(--darker-bg);
}

.gameplay-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.gameplay-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255, 190, 11, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gameplay-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 190, 11, 0.2);
}

.gameplay-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.gameplay-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.gameplay-item p {
    color: var(--text-secondary);
}

/* 用户评价 */
.testimonials {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(0, 212, 255, 0.05));
}

.testimonial-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.testimonial-card blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-card blockquote::before,
.testimonial-card blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
}

.testimonial-card blockquote::before {
    left: -20px;
}

.testimonial-card blockquote::after {
    right: -20px;
}

.testimonial-card cite {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* 下载区域 */
.download {
    padding: 60px 0;
    background: var(--dark-bg);
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #00D9C5;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 217, 197, 0.3);
    min-width: 200px;
}

.download-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 197, 0.4);
}

.download-button i {
    font-size: 2rem;
}

.download-button small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.qr-download {
    text-align: center;
}

.qr-code {
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
    padding: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.qr-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.disclaimer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 页脚 */
.footer {
    background: var(--darker-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gameplay-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .download-options {
        flex-direction: column;
        gap: 2rem;
    }
    
    .qr-code {
        width: 160px;
        height: 160px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .feature-card,
    .gameplay-item {
        margin: 0 0.5rem;
    }
    
    .testimonial-card {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-button,
    .download-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin: 0 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card,
    .gameplay-item {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .qr-code {
        width: 140px;
        height: 140px;
    }
    
    .disclaimer {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .phone-mockup {
        width: 160px;
        height: 320px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat {
        min-width: 80px;
    }
}

/* 移动端触摸优化 */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .gameplay-item:hover,
    .download-button:hover,
    .cta-button:hover {
        transform: none;
        box-shadow: none;
    }
    
    .qr-code:hover {
        transform: none;
    }
}

/* 横屏模式优化 */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
    }
}

/* 更好的移动端滚动体验 */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* 防止移动端缩放 */
meta[name="viewport"] {
    content: width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;
}

/* 新增高级动画效果 */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
    }
}

@keyframes float-enhanced {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-30px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

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

/* 3D悬停效果 */
.feature-card, .gameplay-item {
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) translateZ(20px);
    box-shadow: 
        0 20px 40px rgba(0, 212, 255, 0.2),
        0 0 60px rgba(0, 212, 255, 0.1);
}

.gameplay-item:hover {
    transform: translateY(-10px) rotateX(5deg) translateZ(20px);
    box-shadow: 
        0 20px 40px rgba(255, 190, 11, 0.2),
        0 0 60px rgba(255, 190, 11, 0.1);
}

/* 增强版按钮效果 */
.cta-button, .download-button {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.cta-button:hover {
    animation: glow 2s ease-in-out infinite;
}

/* 手机模型增强动画 */
.phone-mockup {
    animation: float-enhanced 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #00D4FF, #FFBE0B, #FF006E, #00D4FF);
    background-size: 400% 400%;
    border-radius: 40px;
    z-index: -1;
    opacity: 0.3;
    animation: gradient-rotate 3s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 股票应用内部发光效果 */
.stock-trading-app {
    position: relative;
    overflow: hidden;
}

.stock-trading-app::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse-enhanced 4s ease-in-out infinite;
    pointer-events: none;
}

/* 筹码分布图动画 */
.chip-bar {
    transition: all 0.3s ease;
    animation: pulse-height 3s ease-in-out infinite;
}

@keyframes pulse-height {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.chip-bar:nth-child(1) { animation-delay: 0s; }
.chip-bar:nth-child(2) { animation-delay: 0.2s; }
.chip-bar:nth-child(3) { animation-delay: 0.4s; }
.chip-bar:nth-child(4) { animation-delay: 0.6s; }
.chip-bar:nth-child(5) { animation-delay: 0.8s; }

/* 导航栏滚动增强 */
.navbar {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 加载动画增强 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* 鼠标跟随效果增强 */
.cursor {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.8) 0%, rgba(255, 190, 11, 0.4) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* 响应式增强 */
@media (max-width: 768px) {
    .feature-card:hover,
    .gameplay-item:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .phone-mockup {
        animation: float-enhanced 8s ease-in-out infinite;
    }
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00D4FF, #FF006E);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00D4FF, #FFBE0B);
}