body {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
}

.game-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.game-title {
    margin-bottom: 20px;
}

.choices {
    margin-bottom: 20px;
}

.choice {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #e0e0e0;
    transition: all ease 0.2s;
}

.choice:hover {
    background: #bdbdbd;
}

.result {
    margin-top: 20px;
    font-size: 18px;
}
