body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* VIDEO */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* CONTENIDO */
.overlay {
  position: relative;
  z-index: 1;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;

  background: rgba(0,0,0,0.3);
  padding: 20px;
}

/* TEXTO ARRIBA */
.status {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* TITULO */
h1 {
  font-size: 22px;
  max-width: 300px;
  margin-bottom: 25px;
}

/* BOTONES */
.btn {
  display: block;
  width: 220px;
  text-align: center;
  padding: 15px;
  margin: 10px 0;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* BOTON ONLYFANS */
.main {
  background: #00aff0;
  color: white;
}

/* BOTON TELEGRAM */
.secondary {
  background: #2aabee;
  color: white;
}