
      @import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap");

      html,
      body {
        margin: 0;
        padding: 0;
        height: 100%;
        background-color: black;
        color: white;
        font-family: Arial, sans-serif;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2rem;
      }

      .logo-space {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #555;
        font-size: 1.5rem;
      }

      
      .logo-space img {
        max-width: 130px;
        height: auto;
      }

      .menu-space {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-left: 2rem;
      }

      .options {
        font-size: 2vw;
        color: rgba(255, 255, 255, 0.7);
      }

      .options a {
        text-decoration: none;
        display: block;
        margin: 0.5rem 0;
        color: rgba(255, 255, 255, 0.7);
      }

      .options a.selected {
        color: #9cf;
      }

      .dots {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 2vw;
      }

      .dot {
        width: .5vw;
        height: .5vw;
        background: #9cf;
        border-radius: 50%;
        opacity: 0.8;
        animation: pulse 1.5s infinite ease-in-out;
      }

      .dot:nth-child(2) {
        animation-delay: 0.2s;
      }
      .dot:nth-child(3) {
        animation-delay: 0.4s;
      }
      .dot:nth-child(4) {
        animation-delay: 0.6s;
      }
      .dot:nth-child(5) {
        animation-delay: 0.8s;
      }

      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 0.8;
        }
        50% {
          transform: scale(1.5);
          opacity: 1;
        }
      }

      .footer {
        position: absolute;
        bottom: 25%;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 2rem;
        font-size: 1rem;
        color: #aaa;
        cursor: pointer;
      }

      .footer span::before {
        content: "\25B3";
        margin-right: 0.3em;
        color: #3f6;
      }

      .footer span:first-child::before {
        content: "\2715"; /* X */
        color: #66f;
      }

      @media (max-width: 600px) {
        .options {
          font-size: 5.5vw;
        }
        .dot {
          width: 1vw;
          height: 1vw;
        }
        
        .logo-space img {
        max-width: 100px;
        height: auto;
      }
      }
   