.game-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    max-height: 300px;
}

.options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn-option {
    min-width: 150px;
    padding: 15px;
    font-size: 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: #345c5c;
    border-color: #345c5c;
}

.btn-option:hover {
    transform: translateY(-3px);
    background-color: #2a4a4a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.result-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}