/* Intro a pantalla completa */
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 9999;
}

#intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botón centrado */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#enterBtn {
  padding: 15px 40px;
  font-size: 20px;
  font-family: 'Times New Roman', serif;
  color: #fff;
  background: rgba(0,0,0,0.7);
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#enterBtn:hover {
  background: #ff6600;
  border-color: #ff6600;
  color: black;
}

/* Contenido oculto hasta darle entrar */
#main-content {
  display: none;
  
}

/* Marca de agua en el centro */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-family: "Times New Roman", serif;
  color: rgba(255, 255, 255, 0.1); /* Blanco pero casi transparente */
  text-transform: uppercase;
  letter-spacing: 5px;
  pointer-events: none; /* No bloquea clics */
  user-select: none;    /* No seleccionable */
}