.black {
  background: #000000;
  margin: 0;
  font-family: serif;
  color: #f2f2f2;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.story {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* CAJA DEL TEXTO */
.story-box {
  max-width: 520px;
  padding: 2.2rem 2.5rem;
  text-align: center;
  line-height: 1.7;

  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.625rem;

  box-shadow: 0 0 0.125rem rgba(255, 255, 255, 0.35);
}

.story-box button {
  margin-top: 1.8rem;
  padding: 0.6rem 2rem;

  background: transparent;
  color: #f2f2f2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;


  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.story-box button:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0.25rem rgba(255,255,255,0.4);
}

  /* DESVANECER*/
.fade {
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

.fade-out {
  animation: fadeOut 1.2s ease forwards;
}

  /* FRASE FINAL*/
.tagline {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* BOLETO */
#ticket {
  width: 420px;
  opacity: 0;
  transform: scale(0.95);
  cursor: pointer;

  animation: ticketAppear 2.2s ease forwards;
  transition: transform 0.4s ease, opacity 0.6s ease;
}

#ticket:hover {
  transform: scale(1.03);
}

/* APARICIÓN */
@keyframes ticketAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
