  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      @font-face {
        font-family: "Zen Dots";
        src:
          local("Zen Dots Regular"),
          local("Zen-Dots-Regular"),
          url("ZenDots-Regular.woff2") format("woff2"),
          url("ZenDots-Regular.woff") format("woff"),
          url("ZenDots-Regular.ttf") format("truetype");
        font-weight: 400;
        font-style: normal;
      }

      :root {
        --blue: #ffffff;
        --blue-dim: rgba(255, 255, 255, 0.2);
        --blue-faint: rgba(187, 187, 187, 0.08);
      }

      body {
        background: #000;
        color: #fff;
        font-family: "Zen Dots", sans-serif;
        height: 100vh;
        overflow: hidden;
        position: relative;
        cursor: crosshair;
      }

      #terminal-bg {
        position: fixed;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 0;
      }

      .term-col {
        position: absolute;
        top: 0;
        display: flex;
        flex-direction: column;
        animation: fallDown linear infinite;
        white-space: pre;
      }

      .term-line {
        font-family: "Zen Dots";
        font-size: 11px;
        line-height: 1.65;
        color: rgba(206, 206, 206, 0.172);
        display: block;
      }

      .term-line.bright {
        background: linear-gradient(
          90deg,
          #00346c9e,
          #940d5589,
          #00607d79,
          #ff660056,
          #44390e56
        );
        background-size: 200% auto;

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        animation: shine 3s linear infinite;
      }

      @keyframes shine {
        0% {
          background-position: 0% center;
        }
        100% {
          background-position: 200% center;
        }
      }

      @keyframes fallDown {
        from {
          transform: translateY(-100%);
        }
        to {
          transform: translateY(100vh);
        }
      }

      /* CRT scanlines */
      body::after {
        content: "";
        position: fixed;
        inset: 0;
        background: repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(210, 210, 210, 0.04) 2px,
          rgba(199, 202, 179, 0.04) 4px
        );
        pointer-events: none;
        z-index: 1;
      }


      /* icono github */

      .icon-box {
        position: fixed;
        right: 2.5%;
        top: 4%;
        width: 50px;
        height: 55px;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: transparent;
        transition: background 0.3s;
      }

      /* Icono */
      .icon-box img {
        width: 100%;
        object-fit: contain;

        filter: brightness(0.9);
        transition: 0.3s;
      }

      /* ── LOGO BOX ── */
      .logo-box {
        position: fixed;
        top: 3px;
        left: 0;
        width: 150px;
        height: 85px;

        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
        background: transparent;
        transition: background 0.3s;
      }

      .logo-box img {
        width: 100%;
        height: auto;
      }

      .logo-box:hover {
        background: var(--blue-faint);
        cursor: pointer;
      }

      .logo-text {
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        line-height: 1.3;
        text-align: center;
        color: #fff;
      }

      .logo-text .dot {
        color: var(--blue);
      }

      /* ── CENTER MENU ── */
      .center-menu {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5rem;
        z-index: 10;
      }

      .menu-item {
        font-weight: 700;
        font-size: 1.5rem;
        letter-spacing: 0.25em;
        color: rgb(255, 255, 255);
        cursor: pointer;
        position: relative;
        transition:
          color 0.25s,
          letter-spacing 0.25s;
        text-transform: uppercase;
        text-decoration: none;
      }

      .menu-item::before {
        content: attr(data-label);
        position: absolute;
        top: -22px;
        left: 0;
        font-family: "Zen Dots";
        font-size: 8px;
        letter-spacing: 0.15em;
        color: var(--blue);
        opacity: 0;
        transition: opacity 0.2s;
        text-transform: uppercase;
      }

      .menu-item::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--blue);
        transition: width 0.35s ease;
      }

      .menu-item:hover {
        color: #fff;
        letter-spacing: 0.3em;
      }

      .menu-item:hover::after {
        width: 100%;
      }
      .menu-item:hover::before {
        opacity: 1;
      }

      /* ── CORNER BRACKETS ── */
      .corner {
        position: fixed;
        width: 18px;
        height: 18px;
        z-index: 10;
        opacity: 0.4;
      }
      .corner.tr {
        top: 16px;
        right: 16px;
        border-top: 1px solid var(--blue);
        border-right: 1px solid var(--blue);
      }
      .corner.br {
        bottom: 36px;
        right: 16px;
        border-bottom: 1px solid var(--blue);
        border-right: 1px solid var(--blue);
      }
      .corner.bl {
        bottom: 36px;
        left: 120px;
        border-bottom: 1px solid var(--blue);
        border-left: 1px solid var(--blue);
      }

      /* ── COORDINATES ── */
      .coords {
        position: fixed;
        top: 16px;
        right: 40px;
        font-size: 9px;
        letter-spacing: 0.15em;
        color: rgb(255, 255, 255);
        z-index: 10;
        text-transform: uppercase;
      }

      /* ── STATUS BAR ── */
      .status-bar {
        position: fixed;
        text-align: center;
        justify-content: center;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30px;
        display: flex;
        align-items: center;
        padding: 0 1.5rem;
        gap: 2.5rem;
        z-index: 20;
        background: transparent;
        margin-bottom: 1.5rem;
      }

      .status-bar h1 {
        font-weight: 300;
        text-align: center;
        font-size: 1.3rem;
      }

      .status-item {
        font-size: 9px;
        letter-spacing: 0.15em;
        color: rgba(255, 255, 255, 0.55);
        text-transform: uppercase;
      }

      .status-dot {
        display: inline-block;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: green;
        margin-right: 7px;
        animation: pulse 2s ease infinite;
        vertical-align: middle;
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          box-shadow: 0 0 4px green;
        }
        50% {
          opacity: 0.3;
          box-shadow: none;
        }
      }

      .cursor-blink {
        display: inline-block;
        width: 7px;
        height: 11px;
        background: var(--blue);
        margin-left: 3px;
        animation: blink 1s step-end infinite;
        vertical-align: middle;
      }

      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
      }

      /* ── ENTRY ANIMATION ── */
      .logo-box,
      .center-menu,
      .status-bar {
        animation: fadeUp 0.8s ease forwards;
      }
      .logo-box {
        animation-delay: 0.1s;
        opacity: 0;
      }
      .center-menu {
        animation-delay: 0.4s;
        opacity: 0;
      }
      .status-bar {
        animation-delay: 0.2s;
        opacity: 0;
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      

      @media (max-width: 480px) {
        .status-item:nth-child(3),
        .status-item:nth-child(4) {
          display: none; 
        }
        .coords {
          display: none; 
        }
      }

      @media (max-width: 480px) {
        .icon-box {
          top: 5%;
          right: 6%;
          display: flex;
          ustify-content: center;
          cursor: pointer;

          height: auto;
        }

        .icon-box img {
          width: 100%;
        }

        .logo-box {
          top: 5px;

          width: 120px;
          height: auto;
        }

        .logo-box img {
          width: 100%;
        }
        .center-menu {
          gap: 1.5rem;
        }
        .menu-item {
          font-size: 1.3rem;
          letter-spacing: 0.15em;
        }

        .status-bar h1 {
          flex-direction: column;
          font-size: 1rem;
          gap: 0.5rem;
        }
      }

      @media (max-width: 768px) {
        .center-menu {
          flex-direction: column;
          gap: 2rem;
        }
        .menu-item {
          font-size: 1.4rem;
        }
      }
  