/* General */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

/* Fondo pixel */
#pixel-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
  filter: brightness(0.7) blur(1px);
  z-index: 0;
}

/* Vignette */
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(
    circle,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,0.85) 100%
  );
}

/* Caja central */
.center-box {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGO — AQUÍ CAMBIAS EL TAMAÑO */
.logo {
  width: 80px;       /* <— CAMBIA ESTE VALOR */
  opacity: 0;
  margin-bottom: 22px;
  animation: fadeIn 1.5s forwards ease;
}

/* Enter */
.enter {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 200;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  cursor: pointer;
  opacity: 0;
  animation: blink 1.1s infinite;
  animation-delay: 1.4s;
  animation-fill-mode: forwards;
    position: fixed;
  bottom: 40px;        /* distancia desde abajo (ajústala si quieres) */
  left: 50%;
  transform: translateX(-50%);
}

.enter:hover {
  color: #ffffff;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.2; }
}



