#game-lobby {
    margin-top: 20px;
    margin-bottom: 50px;
    max-width: 1200px;
}

.game-item img {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.game-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.game-item p {
    font-size: 16px;
}

#user-info {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 10px;
    width: 300px;
    margin: 0 auto;
  }
  
  #user-info .balance,
  #user-info .plays,
  #user-info .winnings {
    margin: 10px 0;
    font-weight: bold;
  }
  
  #user-info span {
    font-weight: bold;
    color: #ffcc00; /* Gold color to highlight values */
  }

  .game-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.game-modal-content {
  position: relative;
  width: 80%;
  height: 80%;
  margin: auto;
  top: 10%;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}

.game-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-width: 200px;
  min-height: 200px;
}


.close-modal {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.close-modal:hover {
  background: rgba(0, 0, 0, 0.7); /* Darker on hover */
}
  

