* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}





.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffd700;
    font-weight: 600;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    opacity: 0.8;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.progress-section {
    margin-bottom: 3rem;
}

.progress-section h3 {
    margin-bottom: 1rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem auto;
    max-width: 600px;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: #ffd700;
    transition: width 1.5s ease-in-out;
}

.progress-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form h3 {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    background: #ffd700;
    color: #1e3c72;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}



@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    button {
        width: 100%;
    }
}

















