#game-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--background-color-light);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#scoreboard {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.score {
    text-align: center;
}

.score h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.score p {
    font-size: 2rem;
    font-weight: bold;
}

#choices {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.choice-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.choice-btn:hover {
    background-color: var(--primary-color-light);
    transform: scale(1.1);
}

.choice-btn i {
    font-size: 3rem;
    color: var(--primary-color);
}

#result {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    min-height: 50px;
}

#reset-btn {
    font-size: 1.2rem;
}

.hide {
    display: none;
}
