* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #0a0a0a, #3a4452);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.content {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease;
}

p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.launch-time {
    width: 100px;
}

.launch-time span {
    font-size: 2.5rem;
    font-weight: bold;
}

.newsletter {
    margin-bottom: 30px;
}

.newsletter input {
    width: 300px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    outline: none;
}

.newsletter button {
    padding: 12px 30px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter button:hover {
    background: #0056b3;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .countdown {
        gap: 15px;
    }

    .launch-time {
        width: 70px;
    }

    .launch-time span {
        font-size: 1.8rem;
    }

    .newsletter input {
        width: 200px;
        margin-bottom: 10px;
    }
}
