/* Oyun kartı hover overlay */
.games--grid-item,
.banner-grid-item.single-gd-item {
  position: relative !important;
  overflow: hidden !important;
}

.games--grid-item .game-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
  border-radius: 8px;
}

.games--grid-item:hover .game-hover-overlay {
  opacity: 1;
}

.game-hover-overlay .btn-play {
  background: #febe00;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 9px 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 140px;
  text-align: center;
  text-decoration: none;
  display: block;
}

.game-hover-overlay .btn-demo {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 9px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 140px;
  text-align: center;
  text-decoration: none;
  display: block;
}

.game-hover-overlay .btn-play:hover { background: #e6ac00; }
.game-hover-overlay .btn-demo:hover { background: #e8e8e8; }
