#gameArea {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
}
.game-container {
    display: grid;
    grid-template-columns: repeat(3, 150px);
    gap: 10px;
}
.hole {
    width: 150px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}
.custom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
#finalBoss {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
}
#bigHole {
    width: 240px;
    height: 240px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#bigImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#speechBubble {
    position: absolute;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
    background-color: white;
    border: 2px solid black;
    border-radius: 10px;
    padding: 10px;
    font-size: 18px;
    width: 300px;
    text-align: center;
    color: red;
    font-weight: bold;
}
#speechBubble:before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    border-width: 12px 12px 0;
    border-style: solid;
    border-color: black transparent transparent transparent;
    transform: translateX(-50%);
}
#speechBubble:after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    border-width: 9px 9px 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
    transform: translateX(-50%);
}
