body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ffafbd, #ffc3a0);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.promo-banner h1 {
    color: #e91e63;
    font-size: 1.8em;
    margin: 0;
    animation: float 2s infinite ease-in-out;
}

.promo-content p, .promo-content h2, .promo-content ul {
    color: #333;
}

.requirements h2 {
    color: #f50057;
}

.requirements ul {
    list-style-type: none;
    padding: 0;
}

.requirements li {
    padding: 10px;
    background-color: #f5f5f5;
    margin: 5px 0;
    border-radius: 5px;
}

.cta-text {
    font-size: 1.2em;
    color: #000;
    font-weight: bold;
}

.cta-buttons {
    margin-top: 15px;
}

.cta-button {
    background-color: #ff4081;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    margin: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #d81b60;
    transform: scale(1.1);
}

.footer-text {
    color: #00796b;
    font-size: 1.1em;
    margin-top: 20px;
    animation: bounce 1.5s infinite;
}
.countdown-timer {
    background-color: #e91e63;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

#countdown {
    font-size: 1.5em;
    font-weight: bold;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
