@import url('https://fonts.googleapis.com/css2?family=PT+Mono&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #d5f52f;
  font-family: 'PT Mono', monospace;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* 🔵 CARITA */
.face-link {
  position: absolute;
  display: inline-block;
  z-index: 2;
}

.face-link img {
  width: 10vw;
  min-width: 130px;
  max-width: 200px;
  cursor: pointer;
  display: block;
}

/* 🔵 MENSAJE "COMING SOON" EN MEDIO */
.message {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #2a2aff;
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  text-align: center;
}

.face-link:hover ~ .message {
  opacity: 1;
}

/* 🔵 FRASES GLITCHY */
.glitch-frase {
  position: absolute;
  color: #2a2aff;
  font-size: 14px;
  font-family: 'PT Mono', monospace;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: fadePop 2.5s ease forwards;
  pointer-events: none;
  z-index: 999;
}

/* 🔵 ANIMACIÓN PARA FRASE */
@keyframes fadePop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
}

/* ✅ SIEMPRE VISIBLE EN CELULARES Y TABLETS */
@media (max-width: 1024px) {
  .message {
    opacity: 1 !important;
    font-size: 12px;
    pointer-events: none;
  }
}
