/* ===== Oyuncu Showcase — tema tasarım dili ===== */
.showcase-section {
  padding: 1rem 0 1.5rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

@media (min-width: 640px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 0.875rem;
  }
}

.showcase-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.5rem;
  background: hsl(257 55% 30%);
  border: 1px solid hsl(257 45% 40% / 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: hsl(45 100% 50% / 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px hsl(256 67% 48% / 0.3);
}

.showcase-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.showcase-card__character {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.showcase-card:hover .showcase-card__character {
  transform: scale(1.04);
}

.showcase-card__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.5rem 0.35rem 0.45rem;
  background: linear-gradient(0deg, rgba(31, 12, 74, 0.95) 0%, rgba(31, 12, 74, 0.6) 55%, transparent 100%);
}

.showcase-card__logo {
  max-width: 88%;
  max-height: 2.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

@media (min-width: 1024px) {
  .showcase-card__logo {
    max-height: 2.5rem;
  }
}

.showcase-card__overlay-title {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  z-index: 4;
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0);
  transition: color 0.2s ease;
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
}

.showcase-card:hover .showcase-card__overlay-title {
  color: rgba(255, 255, 255, 0.85);
}
