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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0073e6, #00b3e6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease-in-out;
}

.container h1 {
    font-size: 3em;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: slideIn 1.5s ease-out;
}

.container p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeIn 2.5s ease-in-out;
}

.container .countdown {
    font-size: 2em;
    margin-bottom: 20px;
    animation: fadeIn 2.5s ease-in-out;
}

.container .social-icons {
    margin-top: 20px;
}

.container .social-icons a {
    color: #00b3e6;
    text-decoration: none;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.container .social-icons a:hover {
    color: #0073e6;
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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