

body {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Container */
.container {
    text-align: center;
    width: 90%;
    max-width: 450px;
    padding: 20px;
    border-radius: 10px;
}

/* Image */
.main-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    border: 3px solid yellow;
}

/* Title */
.title {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
}

/* Button */
.btn {
    background-color: red;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    width: 100%;

    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: darkred;
}

/* Info Section */
.info {
    margin-top: 20px;
    font-size: 18px;
    text-align: left;
    margin-left: 10px;
}

.info p {
    margin: 5px 0;
    color: yellow;
}

.info span {
    color: white;
}
/* 
/* Countdown Timer 
.countdown {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

.countdown span {
    font-size: 14px;
    color: gray;
} */
/* Countdown Timer */
.countdown {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
    color: white;
}

.countdown span {
    font-size: 22px;
    color: goldenrod;
}

.countdown-label {
    font-size: 14px;
    color: gray;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: block;
    background-color: green;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    margin-top: 30px;
    border-radius: 10px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: darkgreen;
}

/* Responsive Design */
@media (max-width: 480px) {
    .title {
        font-size: 2em;
    }

    .btn {
        font-size: 1.3em;
        width: 100%;
        padding: 10px 20px;
    }
    .info {
        font-size: 16px;
    }

    .countdown {
        margin-top: 35px;
        font-size: 1.5em;
        border-radius: 24px;
        color: white;
    
    }
    .countdown span {
        font-size: .8em;
        color: white;

    }
    .whatsapp-btn {
        font-size: 1.2em;
        padding: 10px;
    }
    .footer-text {
        font-size: 12px;
    }
}


/* Footer Text */
.footer-text {
    color: white;
    margin-top: 20px;
    text-align: start;
    font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
}


/* Legal Section Styling */
.legal-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Badge Style */
.badge {
    background-color: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}


