    @keyframes bounce-slow {

      0%,
      100% {
        transform: translateY(0);
        animation-timing-function: ease-in-out;
      }

      50% {
        transform: translateY(-10px);
        animation-timing-function: ease-in-out;
      }
    }

    .animate-bounce-slow {
      animation: bounce-slow 2s infinite;
    }
  @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

  body {
    margin: 0;
    padding: 0;
    background-color: #0a0f2c;
    font-family: 'Share Tech Mono', monospace;
  }

  #loader {
    position: fixed;
    inset: 0;
    background-color: #0a0f2c;
    color: #ff6f00;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    overflow-y: auto;
  }

.figlet {
  font-size: clamp(8px, 1.6vw, 14px);
  line-height: 1.1;
  text-shadow: 0 0 10px #ff6f00;
  font-family: 'Share Tech Mono', monospace;
  white-space: pre;
  overflow-x: auto;
  max-width: 100%;
  padding: 0 0.5rem;
  text-align: left;
  display: block;
}


  .cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background-color: #ff6f00;
    animation: blink 1s steps(2, start) infinite;
    margin-left: 4px;
  }

  @keyframes blink {
    to {
      visibility: hidden;
    }
  }

  .terminal-box {
    background: rgba(255, 111, 0, 0.05);
    padding: clamp(12px, 4vw, 20px);
    border: 2px solid #ff6f00;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 20px #ff6f00;
    margin-top: 1rem;
    font-size: clamp(11px, 1.4vw, 14px);
    overflow-x: auto;
  }

  .prompt {
    color: #00ffcc;
  }

  .cmd-text {
    margin: 6px 0;
    word-wrap: break-word;
  }

  .highlight {
    color: #ffffff;
  }

  #main-content {
    display: none;
  }