/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #E5E5E5;
    background-color: #0A0A0A;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: -1px;
}

.hero-text {
    font-size: 20px;
    line-height: 32px;
    color: #E5E5E5;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #FFD700;
    color: #0A0A0A;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-primary:hover {
    background-color: #FFC700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #00FF88;
    border: 2px solid #00FF88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

/* Welcome Section */
.welcome {
    background-color: #121212;
    padding: 60px 0;
    text-align: center;
}

.divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 0 auto 30px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.welcome-text {
    font-size: 20px;
    line-height: 32px;
    color: #E5E5E5;
    max-width: 900px;
    margin: 0 auto;
}

/* Cards Section */
.cards {
    background: linear-gradient(135deg, #0A0A0A 0%, #121212 100%);
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(135deg, #1A1A1A 0%, #121212 100%);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 16px;
}

.card h2 {
    font-size: 28px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 16px;
}

.card p {
    font-size: 18px;
    line-height: 28px;
    color: #E5E5E5;
}

/* Why Us Section */
.why-us {
    background-color: #121212;
    padding: 80px 0;
    text-align: center;
}

.why-us h2 {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 32px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.why-us p {
    font-size: 20px;
    line-height: 32px;
    color: #E5E5E5;
    max-width: 900px;
    margin: 0 auto;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    padding: 30px;
    background: linear-gradient(135deg, #1A1A1A 0%, #121212 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.stat-label {
    font-size: 18px;
    color: #E5E5E5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-description {
    font-size: 18px;
    line-height: 28px;
    color: #E5E5E5;
    max-width: 800px;
    margin: 0 auto;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #121212 0%, #0A0A0A 100%);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cta-text {
    font-size: 20px;
    line-height: 32px;
    color: #E5E5E5;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: #0A0A0A;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

footer p {
    font-size: 16px;
    color: #E5E5E5;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .cards-grid {
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-text,
    .welcome-text,
    .why-us p,
    .cta-text {
        font-size: 18px;
        line-height: 28px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card {
        padding: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us h2,
    .final-cta h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-text,
    .welcome-text,
    .why-us p,
    .cta-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .card h2 {
        font-size: 24px;
    }
    
    .card p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}
