body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
    font-family: Arial, sans-serif;
}

.roulette-container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.wheel {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.number {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #333;
    border-radius: 50%;
    font-size: 20px;
    background-color: #fff;
    transition: background-color 0.3s, transform 0.3s;
}

.number.selected {
    background-color: yellow;
    transform: scale(1.2);
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #555;
}

input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    border: 2px solid #333;
    border-radius: 5px;
}

textarea {
    height: 80px;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
}

.rating input:checked ~ label {
    color: gold;
}

.rating input:hover ~ label {
    color: gold;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin: 5px 0;
}
