<div class="custom-container">
  <div class="button-container">
    <button class="download-btn" onclick="prepareDownload(this, 'https://playmundoo.blogspot.com/2024/04/regedid-panel.html')">REGEDIT AQUÍ👿</button>
    <button class="download-btn" onclick="prepareDownload(this, 'https://playmundoo.blogspot.com/2024/04/texturas-deybid-rc.html')">TEXTURAS AQUÍ 👨‍🎤🧑‍🎤🧑‍🚒🦹🏻</button>
  </div>
</div>

<style>
  .custom-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    background-color: transparent;
  }

  .button-container {
    border: 2px solid #800080; /* Morado */
    padding: 10px;
  }

  .download-btn {
    background-color: #FF5300;
    color: #fff;
    padding: 10px 20px;
    margin-bottom: 10px;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  .download-btn:hover {
    background-color: #4CAF50;
  }
</style>

<script>
  function prepareDownload(button, link) {
    button.innerText = 'Preparando';
    button.style.backgroundColor = '#4CAF50';
    setTimeout(() => {
      button.innerText = 'TOCA AQUÍ';
      button.style.backgroundColor = '#FF5300';
      button.onclick = () => window.location.href = link;
    }, 10000); // Cambiado a 10 segundos
  }
</script>

Comentarios