/* ===== SECCIÓN FINAL: HUEVITO PIXELADO ===== */
#easter-egg {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: transparent;
}

.egg-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.egg-link {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.egg-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.egg-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}

.egg-pixel {
  width: 96px;
  height: auto;
  image-rendering: pixelated; /* mantiene look retro */
}

.egg-text {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.egg-card:hover .egg-text {
  opacity: 1;
}
