* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Animated Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 24px;
    animation: float 8s infinite ease-in-out;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0 20px;
    animation: fadeInDown 1s ease;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.main-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #00ffff;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}

/* Stats Preview */
.stats-preview {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 20px 30px;
    min-width: 150px;
    animation: slideInUp 1s ease;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #00ffff;
}

/* Download Button */
.download-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 50px;
    padding: 20px 50px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    margin-bottom: 20px;
    animation: bounceIn 1s ease;
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.7);
}

.download-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-icon {
    font-size: 32px;
}

.btn-text {
    font-size: 24px;
}

.btn-size {
    font-size: 14px;
    opacity: 0.8;
}

.download-btn-large {
    padding: 25px 60px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    color: #00ffff;
}

.badge-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border: 2px solid #ff6b35;
    color: #ff6b35;
    font-weight: bold;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(51, 51, 51, 0.5) 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease;
}

.feature-card:hover {
    border-color: #ff6b35;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.feature-desc {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    animation: fadeIn 1s ease;
}

.stars {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #00ffff;
    font-weight: bold;
}

/* Download Stats */
.download-stats {
    text-align: center;
    margin-top: 40px;
}

.stat-large {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
    border: 3px solid #ff6b35;
    border-radius: 20px;
    padding: 40px;
    display: inline-block;
    min-width: 300px;
}

.stat-number-large {
    font-size: 56px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 10px;
    animation: countUp 2s ease;
}

.stat-label-large {
    font-size: 20px;
    color: #00ffff;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    animation: fadeIn 1s ease;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.step-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.step-desc {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 3px solid #ff6b35;
    border-radius: 30px;
    padding: 60px 40px;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-description {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}

.cta-note {
    font-size: 14px;
    color: #00ffff;
    margin-top: 20px;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    background: rgba(10, 10, 10, 0.8);
}

.footer-text {
    font-size: 16px;
    color: #888;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.footer-prizes {
    font-size: 14px;
    color: #00ffff;
    font-weight: 600;
    margin-top: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    border: 3px solid #ff6b35;
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-header h3 {
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #333;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

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

.modal-body p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    width: 0%;
    transition: width 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .stats-preview {
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .download-btn {
        padding: 15px 40px;
        font-size: 20px;
    }
    
    .btn-text {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid,
    .testimonials-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
}
