/* Overall Body Styling */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('https://i.ibb.co/h901d1b/cissors.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Container Styling */
.game-container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Keep a transparent white box */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    width: 350px;
    max-width: 90%;
}

/* Heading Styling */
h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Buttons Styling */
.choices {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.choice {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

.choice:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Result Display Styling */
.result {
    margin-top: 25px;
}

#result-text {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
