* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    min-height: 100vh;
    color: #fff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow-x: hidden;
}

.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.lightning {
    position: absolute;
    font-size: 48px;
    color: #fbbf24;
    animation: flash 1.5s ease-in-out infinite;
}

.l1 { top: 15%; left: 10%; animation-delay: 0s; }
.l2 { top: 30%; right: 15%; animation-delay: 0.5s; }
.l3 { bottom: 25%; left: 20%; animation-delay: 1s; font-size: 36px; }

@keyframes flash {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    10%, 20% { opacity: 1; transform: scale(1.2); }
    30% { opacity: 0.3; transform: scale(1); }
    40%, 50% { opacity: 1; transform: scale(1.1); }
    60% { opacity: 0.2; transform: scale(1); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 46, 0.8);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 28px;
}

.brand-text {
    font-size: 20px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 15px;
}

.nav-link:hover {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.nav-link.active {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1a2e;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.phone-visual {
    position: relative;
    width: 200px;
    height: 300px;
    margin: 0 auto 40px;
}

.phone-frame {
    width: 160px;
    height: 280px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 30px;
    padding: 15px;
    margin: 0 auto;
    border: 3px solid #475569;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.lightning-bolt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #fbbf24;
    animation: bolt 1s ease-in-out infinite;
    z-index: 1;
}

@keyframes bolt {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 8px;
}

.features-section {
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.download-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 30px;
    padding: 50px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(20px);
}

.card-visual {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.app-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.bolt-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #fbbf24;
    animation: bolt 1.5s ease-in-out infinite;
}

.card-title {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fbbf24;
}

.card-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.version-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1a1a2e;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.info-grid {
    background: rgba(251, 191, 36, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(255, 255, 255, 0.5);
}

.info-value {
    color: #fbbf24;
    font-weight: 500;
}

.btn-download {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 18px;
}

.back-link {
    display: inline-block;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fbbf24;
}

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
}

.error-content {
    text-align: center;
}

.error-visual {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 40px;
}

.broken-phone {
    font-size: 100px;
    opacity: 0.4;
}

.spark {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 32px;
    color: #fbbf24;
    animation: flash 1s ease-in-out infinite;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: rgba(251, 191, 36, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.error-message {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .download-card {
        padding: 30px 20px;
    }
    
    .error-actions {
        flex-direction: column;
    }
}