
      html,
      body {
        margin: 0;
        padding: 0;
        height: 100%;
        font-family: "Poppins", sans-serif;
        touch-action: none; 
        -ms-touch-action: none;
        overscroll-behavior: none;
        user-select: none;
      }

      
      body {
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        text-align: center;
      }

      .inicio-container {
        background: #fff;
        padding: 50px 80px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 90%;
        max-width: 450px; 
      }

      h1 {
        color: #ff5100; 
        font-size: 2.5em;
        margin-bottom: 15px;
      }

      p {
        font-size: 1.2em;
        color: #333;
        margin-bottom: 20px;
      }


      .btn-iniciar {
        text-decoration: none;
        display: inline-block;
        background: linear-gradient(90deg, #ff5505, #ffbb03);
        font-family: 'Poppins', sans-serif;
        color: #fff;
        padding: 12px 30px;
        font-size: 20px;
        border-radius: 100px;
        font-weight: 500px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, transform 0.3s ease;
      }

      
      .btn-iniciar:active {
        transform: scale(0.95);
      }
