:root {
  --minecraft-glow: #10b981;
}

.minecraft-cover {
  background: linear-gradient(135deg, #030e05 0%, #0b2910 100%) !important;
  position: relative;
  overflow: hidden;
}

.minecraft-cover:before {
  content: "";
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  position: absolute;
  inset: 0;
}

.minecraft-cover-logo {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.35s;
}

.game-card:hover .minecraft-cover-logo {
  transform: scale(1.08);
}

.minecraft-cover-logo .logo-icon {
  color: var(--minecraft-glow) !important;
  filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.8)) !important;
  font-size: 3.5rem;
  animation: floatLogo 4s ease-in-out infinite;
}

.minecraft-cover-logo .logo-text {
  font-family: var(--font-title);
  letter-spacing: 1px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
}

.minecraft-cover-logo .logo-text span {
  color: var(--minecraft-glow);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.pulse-green {
  border: 1px solid var(--minecraft-glow) !important;
  text-shadow: 0 0 5px var(--minecraft-glow) !important;
  background: rgba(16, 185, 129, 0.2) !important;
  animation: neonPulseGreen 2s infinite alternate !important;
}

@keyframes neonPulseGreen {
  0% {
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.3), inset 0 0 5px rgba(16, 185, 129, 0.3);
  }
  100% {
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.7), inset 0 0 8px rgba(16, 185, 129, 0.5);
  }
}
