body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

    .game-container {
        text-align: center;
        width: 90%;
        max-width: 600px;
        transform: scale(0.75); /* Reduces size to 75% */
        transform-origin: center center; /* Ensures scaling from the center */
    }
/*
.game-container {
    text-align: center;
    width: 90%;
    max-width: 600px;
}
*/
.title-box {
    background-color: #ffffff;
    border-radius: 25px; /* Rounded corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow effect */
    padding: 20px;
    margin-bottom: 30px;
}

.title-box h1 {
    font-family: 'Brush Script MT', ' cursive', sans-serif; /* Script font style */
    font-size: 4em;
    color: #cc0000; /* Red color */
    text-shadow: 2px 2px 4px #000000; /* Text shadow for a 3D effect */
    margin: 0;
}

.game-info {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.numbers-display {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.number-circle {
    background-color: #007bff;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.prizes {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.prizes h2 {
    color: #333;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.prize-info {
    margin-top: 15px;
}
