body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Roboto Mono', monospace;
  background: radial-gradient(circle at center, #ffffff, #f2f7fd);
  color: #030335;
}

.construction-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#network-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.watermark {
  position: absolute;
  width: 45%;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.content {
  z-index: 3;
  text-align: center;
}

#typing-text {
  font-size: 2.5rem;
  border-right: 3px solid #030335;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 0.7s step-end infinite;
}

/* === Pie de página fijo === */
footer {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 4;
}

footer p {
  color: #030335;
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.7;
  margin: 0;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
