.tile-container {
  position: relative;
  width: 45%;
  min-width: 140px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 15px;
}

.tile-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
body {
  background-image: url('../img/background.webp'); /* ou background.jpg */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.tile-label {
  position: absolute;
  bottom: 0;
  height: 30%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: 'Segoe UI', sans-serif;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
  border-radius: 0 0 15px 15px;
}

.fly-thanks {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: bold;
  color: #ff4444;
  animation: flyUp 1.5s ease-out forwards;
  pointer-events: none;
  z-index: 999;
}

@keyframes flyUp {
  0% {
    opacity: 1;
    bottom: 60px;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0;
    bottom: 120px;
    transform: translateX(-50%) scale(1.4);
  }
}
