/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h3 {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #008d19;
}

h3 {
    color: #555;
}

/* Prizes Section */
.prizes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.prize-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.prize-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Ensures images are consistent in size and cover their containers */
.prize-item img {
    width: 100%;
    height: 200px; /* Fixed height */
    object-fit: cover; /* Makes the image fill the container */
    border-radius: 8px;
    margin-bottom: 10px;
}

.prize-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.prize-item p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    background-color: #008d19;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #00440c;
}

.btn[disabled],
.btn[disabled]:hover {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prizes {
        flex-direction: column;
        align-items: center;
    }

    .prize-item {
        width: 90%;
    }
}
