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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #228B22 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    max-width: 800px;
    width: 90%;
}

h1 {
    color: #228B22;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.prizes-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.prizes-section h2 {
    color: #228B22;
    margin-bottom: 20px;
}

.prizes-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.prize-card {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #228B22;
    width: 200px;
}

.prize-card h3 {
    color: #228B22;
    margin: 10px 0;
}

.prize-card p {
    color: #666;
}

.prize-image {
    width: 100px;
    height: 100px;
    margin: 10px auto;
    object-fit: contain;
    display: block;
}

.jersey-icon, .ticket-icon {
    display: none;
}

.btn {
    background-color: #228B22;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #196619;
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
    border: 2px solid #228B22;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

.form-group {
    margin: 15px 0;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#participantsList {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 20px;
}

.participant-card {
    background-color: #ffffff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: left;
    border: 1px solid #228B22;
}

.error-message {
    color: #ff0000;
    margin-top: 10px;
    font-size: 14px;
}

.confirmation-content {
    padding: 20px;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    margin: 15% auto;
}

#confirmationImage {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}