body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to right, #74ebd5, #acb6e5);
    color: #333;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 40px;
    font-size: 2.5rem;
}

.game-container {
    margin-top: 30px;
}

.choices {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.choice-btn {
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.choice-btn:hover {
    background-color: #ddd;
    transform: scale(1.05);
}

.result {
    margin-top: 30px;
    font-size: 1.5rem;
    font-weight: bold;
}

.scoreboard {
    margin-top: 20px;
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .choices {
        flex-direction: column;
    }

    .choice-btn {
        width: 80%;
        margin: auto;
    }
}