     html, body {
  margin: 0;
  padding: 0;
  overflow-x: auto; /* hidden prevent horizontal scroll */
  overflow-y: auto;   /* allow vertical scroll */
}

body {
        cursor: crosshair;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "VT323", monospace;
        font-size: 16px;
        color: #00ff00;
        background: #000;
        text-shadow: 0 0 1px #0f0, 0 0 2px #0f0;
        image-rendering: pixelated;
        -webkit-font-smoothing: none;
        -moz-osx-font-smoothing: grayscale;
      }

 

      body::after {
        content: "";
        position: fixed;
        pointer-events: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.2),
          rgba(0, 0, 0, 0.2) 1px,
          transparent 1px,
          transparent 3px
        );
        z-index: 9998;
      }

       #content {
      opacity: 0;
      transition: opacity 1s ease;
      
    }

/* General Boot Screen Layout */
.boot-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #000;
  font-family: 'Courier New', monospace;
  color: #00ff00;
  text-align: center;
  padding: 20px;
    animation: crt-flicker 1.5s ease-out;

}

@keyframes crt-flicker {
  0% { opacity: 0; filter: brightness(200%); }
  30% { opacity: 1; filter: brightness(100%) contrast(1.3); }
  60% { opacity: 0.8; }
  100% { opacity: 1; filter: none; }
}

/* Floppy Disk Styling */
.floppy {
  width: 240px;
  cursor: pointer;
  transition: transform 1s ease;
  z-index: 10;
  border-radius: 4px;
  background-color: #000;
  padding: 4px;
}


/* Drive + Blinking Dot Row */
.drive-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  margin-left: 20px;
}

/* Drive Slot Styling */
.drive-slot {
  width: 240px;
  height: 10px;
  background: #333;
  border-radius: 4px;
  box-shadow: 0 0 10px #3c3c3c;
}

/* Blinking Red Dot */
.blinking-dot {
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Insert Message */
.insert-message {
  color: #00ff00;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  margin-top: 20px;
  animation: blink-cursor 1.2s infinite;
  text-shadow: 0 0 4px #00ff00;
  letter-spacing: 1px;
  user-select: none;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

    .warningx {
      color: #0f0;
      font-size: 1rem;
      font-weight: bold;
      text-align: center;
      padding: 15px;
      background-color: #000;
      width: 80%;
      text-transform: uppercase;
      cursor: pointer;
      user-select: none;
      transition: all 0.3s ease;
      font-family: 'Courier New', monospace;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

 

    .flicker {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: #000;
      opacity: 0;
      animation: flickerEffect 1s infinite;
    }

    @keyframes flickerEffect {
      0% {
        opacity: 0;
      }
      50% {
        opacity: 0.3;
      }
      100% {
        opacity: 0;
      }
    }

    h1 {
      font-size: 2.5rem;
      text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
      margin-bottom: 20px;
    }

     h1.title {
      font-size: 1.5rem;
      
      white-space: nowrap;
      text-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
    }
    
       .reboot-container {
      white-space: pre-line;
    }
    .loading-bar {
      margin-top: 10px;
      font-size: 1.2rem;
    }
      .icon-container {
        display: flex;
        position: center;
        gap: 70px;
        text-align: center;
        margin-left: 20%;
        margin-top: 30px;
     
      }
      .icon-container a img {
        width: 80px;
        height: 80px;
        image-rendering: pixelated;
        cursor: pointer;
        transition: transform 0.2s ease;
      }
      .icon-container a img:hover {
        transform: scale(1.2);
      }

      .container {
        max-width: 960px;
        margin: 0 auto;
        text-align: left;
      }

      h1 {
        color: #27ff5d;
        text-align: center;
        font-size: 28px;
        margin-bottom: 10px;
       
      }

      .line {
        text-align: center;
        color: #00ff40;
        margin-bottom: 20px;
      }

      .ascii-art {
        text-align: center;
        margin-bottom: 20px;
      }

      .highlight {
        color: #00ff80;
      }

      .warning {
        color: #ffef00;
        margin-top: 30px;
      }

      #crt-video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        pointer-events: none;
        z-index: 999;
        opacity: 0.47; /* adjust for intensity */
        mix-blend-mode: screen;
      }

      .keyboard {
        bottom: 0;
        left: 0;
        width: 200%;
        background-color: #ffffff00;
        padding: 10px 0;
        box-sizing: border-box;

        /* Stack rows vertically and center them */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px; /* space between rows */
        margin-left: 400px;
      }

      .keyboard-row {
        display: flex;
        flex-wrap: nowrap; /* make sure keys stay on one line */
        justify-content: center;
        max-width: 100%;
        overflow-x: auto; /* allow scrolling if row is too long */
      }

      .key {
        margin: 5px;
        cursor: pointer;
        transition: transform 0.1s ease;
      }

      .key.pressed {
        transform: scale(0.88); /* Shrink when pressed */
      }
      .key img {
        width: 30px; /* adjust to your image size */
        height: auto;
        display: block;
      }

      .terminal {
        margin-top: 40px;
        margin-left: 100px;
        width: 80%;
        max-width: 800px;
        height: 350px;
        background-color: black;
        border: 2px solid #00ff00;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        padding: 20px;
      }

      #output {
        word-wrap: break-word;
        overflow-y: auto;
        margin-bottom: 10px;
        flex-grow: 1;
      }

      .blinking-cursor {
  color: #0f0;
  font-weight: bold;
  animation: blink 1s steps(2, start) infinite;
}

      .input-area {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 20px;
      }

      #userInput {
        background: transparent;
        border: none;
        color: #00ff00;
        font-family: "Courier New", Courier, monospace;
        font-size: 16px;
        outline: none;
        width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        resize: none;
        height: 60px;
        position: relative;
      }

      #userInput::after {
        content: "|";
        position: absolute;
        animation: blink 1s step-start infinite;
        color: #00ff00;
      }

      #sendBtn {
        background-color: #00ff00;
        color: black;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        font-weight: bold;
        height: 60px;
      }

      #sendBtn:hover {
        background-color: #009900;
      }
      
  .output-section {

        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }

      .output-section2 {
        overflow-x: auto;       /* Enables horizontal scroll if needed */
        overflow-y: auto;
         max-height: 300px;      /* Optional: keeps it from growing too tall */

        white-space: pre-wrap;  /* Allows wrapping inside <pre> */
        word-break: break-word; /* Breaks long words that don't have spaces */
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }

      .output-section span {
  display: block;
  
}

      @keyframes blink {
        0%,
        50% {
          opacity: 1;
        }
        51%,
        100% {
          opacity: 0;
        }
      }
      #testConsole {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 320px;
        height: 500px;
        background-color: #000;
        color: #00ff00;
        border: 2px solid lime;
        padding: 10px;
        font-family: monospace;
        font-size: 12px;
        z-index: 9999;
        box-shadow: 0 0 10px lime;
        display: flex;
        flex-direction: column;
      }

      .console-header {
        font-weight: bold;
        text-align: center;
        margin-bottom: 5px;
      }

      #logArea {
        flex: 1;
        overflow-y: auto;
        margin-bottom: 10px;
      }

      #rerunBtn {
        background-color: lime;
        color: black;
        font-weight: bold;
        border: none;
        padding: 5px;
        cursor: pointer;
        font-family: inherit;
      }
      #rerunBtn:hover {
        background-color: #00ff00;
      }

      /* Status-based coloring */
      .pass {
        color: #00ff00;
      }
      .warn {
        color: #ffff00;
      }
      .fail {
        color: #fe0c0c;
      }
      .info {
        color: #00bfff;
      }

      #tools {
  margin: 40px auto;
  text-align: center;
}

#tools h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.tool-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.tool {
  width: 100px;
  text-align: center;
  transition: transform 0.2s ease;
}

.tool:hover {
  transform: scale(1.1);
}

.tool img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

#closeConsole {
  background: transparent;
  border: none;
  color: #fe2c2c;
  font-size: 16px;
 
  cursor: pointer;
}


.api-console {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: #111;
    color: #0f0;
    border: 2px solid #0f0;
    font-family: 'PixelFont', monospace;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0px 0px 10px #0f0;
    display: flex;
    flex-direction: column;
  }

  .api-console {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: #111;
    color: #0f0;
    border: 2px solid #0f0;
    font-family: 'PixelFont', monospace;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0px 0px 10px #0f0;
    display: flex;
    flex-direction: column;
  }

    .selcyp-console {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #111;
    color: #0f0;
    border: 2px solid #0f0;
    font-family: 'PixelFont', monospace;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0px 0px 10px #0f0;
    display: flex;
    flex-direction: column;
  }

  #jmeterConsole {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: #111;
    color: #0f0;
    border: 2px solid #0f0;
    font-family: 'PixelFont', monospace;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0px 0px 10px #0f0;
    display: flex;
    flex-direction: column;
  }
  .api-console.hidden {
    display: none;
  }
  .console-headerAPI {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .console-header p {
    margin: 0;
  }
  #closeConsoleAPI {
    background: none;
    border: none;
    color: #f00;
    cursor: pointer;
    font-size: 18px;
  }
  

  .console-body {
    margin-top: 10px;
  }
  .console-output {
    background-color: #222;
    padding: 10px;
    height: 150px;
    overflow-y: auto;
    border: 1px solid #0f0;
    margin-bottom: 10px;
  }
  .console-input input {
    width: calc(100% - 60px);
    padding: 5px;
    background-color: #333;
    border: 1px solid #0f0;
    color: #0f0;
  }
  .console-input button {
    background-color: #0f0;
    color: #111;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'PixelFont', monospace;
  }

@media (max-width: 768px) {
  body {
    font-size: 14px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
.output-section2 {
        overflow-x: auto;       /* Enables horizontal scroll if needed */
  overflow-y: auto;
  max-height: 300px;      /* Optional: keeps it from growing too tall */
  max-width: 350px;
  white-space: pre-wrap;  /* Allows wrapping inside <pre> */
  word-break: break-word; /* Breaks long words that don't have spaces */
        display: flex;
        flex-direction: column;
        flex-grow: 1;
      }

    p {
    font-size: 10px; /* or smaller like 12px if needed */
    line-height: 1.4;
  }

  .icon-container {
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 0;
    justify-content: center;
    font-size: 10px;
  }

  .icon-container a img {
    width: 25px;
    height: 25px;
    
  }

  .container,
  .terminal {
    width: 95%;
    height: auto;
    margin: 10px auto;
    padding: 10px;
    font-size: 10px;
  }

  .keyboard {
    width: 100%;
    margin-left: 0;
    padding: 10px 0;
  }

  .keyboard-row {
    flex-wrap: wrap;
  }

  .key img {
    width: 20px;
  }

  #testConsole {
    width: 30%;
    height: 250px;
    bottom: 20%;
    right: 5%;
    font-size: 8px;
    
  }

  #jmeterConsole {

  overflow-y: auto;  max-width: 300px;
  white-space: pre-wrap;  /* Allows wrapping inside <pre> */
  word-break: break-word; /* Breaks long words that don't have spaces */
       
  }

#apiConsole {

  overflow-y: auto;  
  max-width: 300px;
 
       
  }

  #tools {
    margin: 20px auto;
    font-size: 10px;
  }

  .tool-grid {
    gap: 15px;
  }

  .tool {
    width: 80px;
  }

  .tool img {
    width: 25px;
    height: 25px;
  }



  #sendBtn {
    height: 40px;
    font-size: 14px;
  }

  #userInput {
    font-size: 14px;
    height: 40px;
  }
}

@media (max-height: 800px) {
  .site-header {
    flex-direction: column;
    padding: 0.5rem;
    font-size: 8px;
  }

  .title {
    font-size: 1.5rem;
  }

  .logo {
    max-height: 80px;
    object-fit: contain;
  }
}

/* crt EFFECTS */

   
    