.game-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px; /* Rounded corners for the container */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for 3D effect */
    text-align: center;
}
#gameSelect {
    width: 200px; /* Wider than default */
    padding: 10px; /* More padding for larger touch area */
    font-size: 16px; /* Larger font size for readability */
    margin-bottom: 10px; /* Space below the dropdown */
    cursor: pointer; /* Indicates this is an interactive element */
}
#first_button {
    width: 500px; /* Matching the width of the dropdown */
    padding: 10px 0; /* Padding for a taller button */
    font-size: 16px; /* Larger text inside the button */
    color: white; /* White text */
    background-color: #007BFF; /* Bootstrap primary blue */
    border: none; /* No border for a cleaner look */
    border-radius: 5px; /* Rounded corners for the button */
    cursor: pointer; /* Indicates this is a clickable button */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}
#second_button {
    width: 200px; /* Matching the width of the dropdown */
    padding: 10px 0; /* Padding for a taller button */
    font-size: 16px; /* Larger text inside the button */
    color: white; /* White text */
    background-color: #073e11; /* Bootstrap primary blue */
    border: none; /* No border for a cleaner look */
    border-radius: 5px; /* Rounded corners for the button */
    cursor: pointer; /* Indicates this is a clickable button */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}
button:hover {
    background-color: #0056b3; /* Darker blue on hover for interactive feedback */
}
.faded-preview {
    position: relative;
    display: inline-block;
    text-align: center;
    color: white;
}

.faded-preview img {
    opacity: 0.5;
    width: 100%;
}