/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: linear-gradient(270deg, #ff004f, #00ffcc, #ffcc00, #0044ff);
    background-size: 800% 800%;
    animation: gradientAnimation 10s ease infinite;
}

/* Animation keyframes for the background */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.wrapper {
    max-width: 600px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.random-info {
    background: #e1ffe1; /* Light green background for random winner section */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px; /* Space below random info */
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.cta-section {
    margin-bottom: 20px;
}

.requirements {
    margin-bottom: 20px;
}

.footer-review-card {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

.rating {
    color: gold; /* Gold color for star rating */
}


.main-content {
    text-align: center;
}

/* Random Winner and Payment Amount Section */
.random-info {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #00ff85;
    background: rgba(0, 255, 204, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-shadow: 0 0 10px #00ff85, 0 0 30px #00ff85;
    animation: glow 1.5s infinite alternate;
}

/* RGB Animation for Random Winner */
@keyframes rgbAnimation {
    0% {
        color: rgb(255, 0, 0); /* Red */
    }
    25% {
        color: rgb(0, 255, 0); /* Green */
    }
    50% {
        color: rgb(0, 0, 255); /* Blue */
    }
    75% {
        color: rgb(255, 255, 0); /* Yellow */
    }
    100% {
        color: rgb(255, 0, 255); /* Magenta */
    }
}

.random-info span {
    animation: rgbAnimation 3s linear infinite; /* Apply the RGB animation */
}

/* Updated Header Text Style with Multiple Colors */
.header h1 {
    font-size: 2.8em;
    background: linear-gradient(90deg, purple, white, green, red, blue);
    -webkit-background-clip: text; /* Safari */
    -webkit-text-fill-color: transparent; /* Safari */
    margin-bottom: 10px;
    /* Removed text-shadow for a cleaner look */
}

.header p {
    font-size: 1.2em;
    color: #b3b3b3;
    margin-bottom: 30px;
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ffffff;
}

.steps-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.steps-list li {
    margin: 10px 0;
    font-size: 1.1em;
    color: #00ffcc;
    background: rgba(0, 255, 204, 0.1);
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}

.cta-button {
    padding: 15px 40px;
    background-color: #ff004f;
    border: none;
    border-radius: 30px;
    font-size: 1.3em;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 0 20px #ff004f, 0 0 40px #ff004f;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #ff66a5;
    box-shadow: 0 0 30px #ff66a5, 0 0 60px #ff66a5;
}

.requirements {
    margin-top: 40px;
    text-align: left;
}

.requirements h3 {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 10px;
}

.requirements ul {
    list-style-type: disc;
    padding-left: 20px;
}

.requirements ul li {
    font-size: 1em;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer h2 {
    color: #333;
    margin-bottom: 20px;
}

.footer-review-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.footer-review-card h3 {
    color: #333;
    font-size: 1.1em;
}

.footer-review-card p {
    color: #555;
    line-height: 1.5;
}

.rating {
    font-size: 1.5em;
    color: #ffcc00; /* Gold color for stars */
}


@media (max-width: 768px) {
    .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@keyframes glow {
    0% { text-shadow: 0 0 10px #00ff85, 0 0 30px #00ff85; }
    100% { text-shadow: 0 0 20px #00ff85, 0 0 60px #00ff85; }
}
