body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

h1 {
    color: #007bff;
    margin-bottom: 20px;
}

.game-area {
    margin-top: 20px;
}

#question-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

#choices-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.choice {
    background-color: #e9ecef;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: default;
    transition: background-color 0.3s;
}

.choice:hover {
    background-color: #d8d8d8;
}

.button-area {
    margin-top: 20px;
}

button {
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    color: #fff;
    background-color: #28a745;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}

#show-answer-btn {
    background-color: #ffc107;
}

#show-answer-btn:hover {
    background-color: #e0a800;
}

#answer-text {
    font-size: 20px;
    font-weight: bold;
    color: #28a745;
    margin-top: 10px;
}

.hidden {
    display: none;
}