/* this was clanker made i dont take credit for this*/
/* bubbles.css - Image bubble styles for game cards */

.game-link {
  text-decoration: none;
  display: inline-block;
  margin: 10px;
  position: relative;
  z-index: 1;
}

/* Image bubble styling - SQUARE VERSION */
.image-bubble {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
  pointer-events: none;
}

/* Bubble animation on card hover */
.card:hover .image-bubble {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.image-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-title {
  color: white;
  font-weight: 500;
  text-align: center;
  margin-top: 5px;
  position: relative;
  z-index: 2;
}