/* Minecraft-specific overrides live here. */
.mc-hero {
  background:
    radial-gradient(circle at 50% 45%,
      rgba(12, 18, 32, 0.90) 0%,
      rgba(12, 18, 32, 0.78) 50%,
      rgba(12, 18, 32, 0.42) 78%,
      rgba(12, 18, 32, 0.14) 100%),
    linear-gradient(180deg, rgba(8, 12, 22, 0.55), rgba(8, 12, 22, 0.35)),
    url("../img/ruzenko/carousel/banners/minecraft-banner-hythost-hosting.png");
  background-size: cover;
  background-position: center;
}

.info-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #b6c2ff;
  background: rgba(96, 120, 255, 0.18);
  border: 1px solid rgba(96, 120, 255, 0.35);
  cursor: default;
  position: relative;
  top: -1px;
}

.info-tooltip::after {
  content: attr(data-tooltip);
  white-space: pre-line;
  position: absolute;
  bottom: 130%;
  left: 0;
  transform: none;
  min-width: 250px;
  max-width: 280px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(14, 19, 34, 0.98);
  color: #d8e0ff;
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 20;
}

.info-tooltip:hover::after,
.info-tooltip:focus::after,
.info-tooltip:active::after {
  opacity: 1;
}
