body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f4f8;
    margin: 0;
    text-align: center;
}

.game-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
}

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

p {
    color: #555;
    font-size: 1.1em;
}

.choices {
    display: flex;
    justify-content: center;
    gap: 30px; /* افزایش فاصله بین دکمه‌ها */
    margin-top: 30px;
}

.choice-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choice-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.2);
    border-radius: 50%;
}

.choice-btn img {
    width: 150px; /* ابعاد بزرگ‌تر برای جذابیت بیشتر */
    height: 150px;
    border-radius: 50%; /* گرد کردن تصاویر به شکل دایره */
    border: 3px solid #007bff; /* افزودن حاشیه */
    transition: border-color 0.2s;
}

.choice-btn:hover img {
    border-color: #28a745;
}

#result-text {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 25px;
}

#score {
    font-size: 1.5em;
    font-weight: bold;
    color: #28a745;
}