body {
  margin: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* Contenedor */
.container {
  position: relative;
  width: 400px;
  height: 400px;
}

/* Texto */
.word {
  position: absolute;
  color: #ff4d6d;
  font-size: 14px;
  font-family: Arial, sans-serif;
  white-space: nowrap;
  opacity: 0;
  animation: fade 4s infinite;
  text-shadow: 0 0 10px #ff4d6d;
}

/* Animación */
@keyframes fade {
  0% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}