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

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #f4f4f4, #eaeaea);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* Card-Like Container */
.container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

/* Header */
header h1 {
    font-size: 30px;
    font-weight: 600;
    color: #222;
}

.tagline {
    font-size: 16px;
    font-style: italic;
    color: #777;
    margin: 10px 0 20px;
}

/* Countdown */
.countdown-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.countdown p {
    font-size: 26px;
    font-weight: 600;
    color: #ff6f61;
    margin-bottom: 25px;
}

/* Subscribe Section */
.subscribe-section p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

/* Input Field */
input {
    padding: 12px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* Input Focus Effect */
input:focus {
    border-color: #ff6f61;
    box-shadow: 0 0 5px rgba(255, 111, 97, 0.4);
}

/* Button Styling */
button {
    width: 100%;
    background: #ff6f61;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    font-weight: 500;
}

button:hover {
    background: #e65a50;
}

/* Footer */
footer {
    margin-top: 30px;
}

.social-links a {
    color: #ff6f61;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 500;
}

.social-links a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 12px;
    margin-top: 10px;
    color: #aaa;
}

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