.elementor-kit-6{--e-global-color-primary:#000000;--e-global-color-secondary:#878787;--e-global-color-text:#E6E6E6;--e-global-color-accent:#FFFFFF;--e-global-color-20a376a:#2D40AD;--e-global-color-c5d4e75:#5C8DFF;--e-global-color-2817ff2:#009E98;--e-global-color-bc88b7f:#91CECA;--e-global-color-e974687:#E6E77A;--e-global-color-2279b3d:#F199BD;--e-global-color-1e9be8a:#FA99BD;--e-global-typography-primary-font-family:"VOGUE";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Times New Roman";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1000px;}.e-con{--container-max-width:1000px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8">
  <title>Pwned By InferZSquad ☠️</title>
  <style>
    body {
      background-color: #000;
      color: #ff0000;
      font-family: 'Courier New', monospace;
      padding: 20px;
      margin: 0;
    }

    #terminal {
      max-width: 800px;
      margin: auto;
      padding: 20px;
      border: 2px solid #ffffff;
      box-shadow: 0 0 20px #ffffff44;
      min-height: 70vh;
      background-color: #0a0a0a;
    }

    .prompt {
      display: flex;
      gap: 5px;
    }

    .prompt span {
      color: #ff0000;
    }

    .input {
      background: none;
      border: none;
      outline: none;
      color: #ff0000;
      font-family: inherit;
      font-size: 1em;
      flex: 1;
    }

    .output {
      white-space: pre-wrap;
      color: #ff0000;
      margin-bottom: 10px;
    }

    a {
      color: #ffffff;
      text-decoration: underline;
    }

    footer {
      color: #ffffff;
      font-size: 12px;
      margin-top: 20px;
      text-align: center;
    }
  </style>
</head>
<body>
  <div id="terminal">
    <div class="output">☠️ https://inferzsquad.xyz % <strong>help</strong> para ver comandos</div>
    <div class="prompt">
      <span>┌─(ifz@root)</span>
      <span>─[$]</span>
      <input type="text" class="input" autofocus />
    </div>
  </div>

  <footer>~ https://inferzsquad.xyz ~</footer>

  <script>
    const terminal = document.getElementById('terminal');
    const input = document.querySelector('.input');

    const commands = {
      help: `Comandos disponibles:
  - help: muestra los cmds disponibles
  - whoami: muestra los miembros de InferZQuad
  - links: muestra enlaces oficiales
  - clear: limpia la terminal`,

      whoami: `Defaced By
InferZQuad Members:
 -swag
 -marrsepe 157
 -hashed
 -umbral
 -bothee
 `,

      links: `Enlaces oficiales:
  Discord: https://discord.gg/ifz
  Web:     https://inferzsquad.xyz`,

      clear: ''
    };

    input.addEventListener('keydown', (e) => {
      if (e.key === 'Enter') {
        const cmd = input.value.trim();
        const promptLine = `┌─(ifz@root)─[$] ${cmd}`;
        const out = document.createElement('div');
        out.className = 'output';
        out.innerHTML = promptLine;
        terminal.insertBefore(out, input.parentElement);

        const response = document.createElement('div');
        response.className = 'output';

        if (commands[cmd] !== undefined) {
          response.innerHTML = commands[cmd]
            .replaceAll('https://discord.gg/ifz', `<a href="https://discord.gg/ifz" target="_blank">https://discord.gg/ifz</a>`)
            .replaceAll('https://inferzsquad.xyz', `<a href="https://inferzsquad.xyz" target="_blank">https://inferzsquad.xyz</a>`);
        } else {
          response.textContent = `Comando no reconocido: ${cmd}`;
        }

        if (cmd === 'clear') {
          const outputs = terminal.querySelectorAll('.output');
          outputs.forEach(o => o.remove());
        } else {
          terminal.insertBefore(response, input.parentElement);
        }

        input.value = '';
        terminal.scrollTop = terminal.scrollHeight;
      }
    });
  </script>
</body>
</html>/* End custom CSS */