body {
  background-color: #000;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 0;
}

.scroll-container {
  padding: 40px 20px;
  text-align: center;
}

.frase {
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  margin-bottom: 2.5em;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contador {
  position: fixed;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  color: white;
  z-index: 9999;
  pointer-events: none;
}

.botones {
  margin-top: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.botones.mostrar {
  opacity: 1;
}

.btn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  margin: 10px;
  font-size: 1rem;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
  background-color: white;
  color: black;
}

@media (max-width: 600px) {
  .botones {
    display: flex;
    flex-direction: column;
    gap: 10px; /* espacio entre botones */
    align-items: center;
  }

  .btn {
    width: 80%; /* botones ocupan casi todo el ancho */
    max-width: 250px; /* no se hacen gigantes en tablets */
  }
}
