body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  color: #fff;
  font-family: 'Cinzel', serif;
  overflow: hidden;
    user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

* {
  font-family: "Courier Prime", monospace;
}

#video-background {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: auto;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
  filter: brightness(1.2) contrast(1.2);
   pointer-events: none;
  user-select: none;
}

.content {
  position: relative;
  z-index: 99;
  margin: 0 auto;
  width: 400px;
  text-align: center;
  padding: 20vh 20px;
  display: flex;
  flex-direction: column;
}

.btn {
  color: red;
  text-decoration: none;
  border: 1px solid red;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  border: 1px solid rgb(255, 124, 124);
  color: rgb(255, 124, 124);
}

.legal-floating {
  position: fixed;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  color: #888;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6px 10px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  z-index: 99;
  pointer-events: none;
}

/* 🔧 Ajustes para pantallas pequeñas */
@media screen and (max-width: 600px) {
  #video-background {
    width: 95vw;
  }

  .content {
    width: 60%;
    padding: 15vh 10px;
  }

  .content h1 {
    font-size: 1.8rem; /* Título más visible */
  }

  .content p {
    font-size: 0.8rem;   /* Texto principal más grande */
    line-height: 1.5;
  }

  .btn {
    padding: 15px;
    font-size: 1rem;
  }

  .legal-floating {
    font-size: 10px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    text-align: center;
  }
}
