* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-container {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    opacity: 0.8;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 40px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.subscribe-form button {
    padding: 15px 25px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background: #ff5252;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input,
    .subscribe-form button {
        border-radius: 5px;
    }
    
    .subscribe-form input {
        margin-bottom: 10px;
    }
}