body {
    background-color: #f8fafc;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.game-container {
    text-align: center;
    background-color: #e2e8f0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
h1 {
    margin-bottom: 20px;
}
.buttons {
    margin-bottom: 30px;
}
.choice {
    font-size: 1.2rem;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: #3b82f6;
    color: white;
    transition: background 0.3s;
}
.choice:hover {
    background-color: #2563eb;
}
.result p, result h2 {
 margin: 10px 0;
}