* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", Arial, sans-serif;
    background-color: #000000;
    overflow-x: hidden;
    color: #ffffff;
  }

  @font-face {
    font-family: "Wavacorp";
    src: url("asset/Wavacorp.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
  }
  
  
  .container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 255, 238, 0.49) 0%,
      rgb(10, 10, 10) 30%,
      rgb(0, 0, 0) 50%
    );
    position: relative;
  }
  
  /* ======================================================= */
  /* NAVIGATION */
  /* ======================================================= */
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(80% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    border-radius: 10px;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(72, 72, 72, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: fixed;
    top: 0;
    z-index: 1000;
  }
  
  .nav img {
    height: 30px;
    animation: rotate3dNeon 4s linear infinite;
    filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 6px #00f7ff)
      drop-shadow(0 0 9px #00f7ff);
    transform-style: preserve-3d;
    transform-origin: center;
  }
  
  @keyframes rotate3dNeon {
    0% {
      transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
  
    25% {
      transform: perspective(1000px) rotateY(90deg) rotateX(10deg);
    }
  
    50% {
      transform: perspective(1000px) rotateY(180deg) rotateX(0deg);
    }
  
    75% {
      transform: perspective(1000px) rotateY(270deg) rotateX(-10deg);
    }
  
    100% {
      transform: perspective(1000px) rotateY(360deg) rotateX(0deg);
    }
  }
  
  .logo {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  
  .logo h2 {
    font-family: wavacorp;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* Menu Desktop */
  .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  
  .nav-menu li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 0.9em;
    padding: 20px 15px;
    transition: all 0.3s ease;
  }
  
  .nav-menu li a:hover {
    text-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4,
      0 0 200px #03e9f4;
    border-bottom: 5px solid #03e9f4;
    font-weight: 600;
    transform: scale(1.1);
  }
  
  /* Hamburger Menu (Hidden on Desktop) */
  .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
  }
  
  .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
  }
  
  /* ======================================================= */
  /* SPLASH SCREEN / PRELOADER */
  /* ======================================================= */
  #splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  }
  
  .splash-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .splash-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  #splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
  }
  
  /* ======================================================= */
  /* MAIN CONTENT - HOME MARQUEE */
  /* ======================================================= */
  .home-marquee {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .container-about {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .container-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .content-about {
    width: 80%;
    margin-top: -15rem;
  }

  .content-about h2 {
    font-family: wavacorp;
    font-size: clamp(1.3rem, 3vw, 2rem);
    text-align: left;
    margin: 0;
    margin-bottom: 2rem
  }

  .content-about p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    text-align: justify;
    color: #ffffff;
    line-height: 2em;
    margin-bottom: 8rem;
  }
  
  .container-roadmaps {
    display: flex;
    flex-direction: column;
    width: 80%;
    min-height: 100vh;
    margin-block: 5rem;
  }
  
  .container-roadmaps h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: "Wavacorp", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    max-width: 70%;
    margin-bottom: 1.5rem;
    line-height: 3rem;
    text-align: left;
  }
  
  .roadmaps-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #00f7ff;
  }
  
  .roadmaps-div h4 {
    font-size: 1.2em;
    font-family: "Wavacorp", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    width: 30%;
    line-height: 3rem;
    text-align: left;
  }
  
  .roadmaps-div p {
    font-size: calmp(0.9rem, 2vw, 1.2rem);
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    width: 70%;
    line-height: 2rem;
  }
  
  
  
  
  
  
  
  .container-footer {
    display: flex;
    flex-direction: column;
    min-height: 30vh;
    width: 100%;
    background-image: url("asset/footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  
  .footer {
    display: flex;
    width: 80%;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
  
  .right-footer {
    text-align: end;
  }
  
  .left-footer p {
    cursor: pointer;
  }
  
  .left-footer p:hover {
    color: #00f7ff;
    transition: 0.2s ease-in-out;
  }
  
  .logo-sosmed {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 20px;
    justify-content: end;
  }
  
  .logo-sosmed img {
    width: 30px;
    cursor: pointer;
  }
  
  .logo-sosmed img:hover {
    transform: scale(1.2);
    transition: 0.2s ease-in-out;
  }
  
  .line {
    width: 80%;
    height: 1px;
    background-color: #fff;
    margin-top: 20px;
  }
  
  /* ======================================================= */
  /* MEDIA QUERIES - MOBILE RESPONSIVE */
  /* ======================================================= */
  @media (max-width: 768px) {
    /* Navigation Mobile */
    .nav {
      width: calc(100% - 20px);
      margin: 10px;
      padding: 15px 20px;
    }
  
    .logo h2 {
      display: none;
    }
  
    /* Show Hamburger */
    .hamburger {
      display: flex;
      z-index: 1001;
    }
  
    /* Hide and Position Main Menu on Mobile */
    .nav-menu {
      position: fixed;
      right: -120%;
      top: 0;
      flex-direction: column;
      border-radius: 0;
      background-color: rgba(10, 10, 10, 0.736);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 80px 30px 30px;
      width: 100%;
      height: 100vh;
      text-align: center;
      justify-content: flex-start;
      align-items: center;
      transition: all 0.3s ease-in-out;
      gap: 20px;
    }
  
    .nav-menu li {
      margin: 10px 0;
    }
  
    .nav-menu li a {
      font-size: 1.5em;
      padding: 15px 30px;
      display: block;
    }
  
    /* Active Class for Toggle */
    .nav-menu.active {
      right: 0;
    }
  
    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
  
    /* Main Content Adjustments */
    
  
    .home-marquee h1 {
      font-size: 18vw;
    }
  
    .container-footer {
      width: 100%;
      gap: 1rem;
      margin-top: 2rem;
    }
  
    .footer {
      flex-direction: column;
      align-items: baseline;
      width: 90%;
      gap: 2rem;
    }
  
    .left-footer {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
  
    .right-footer {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
    }
  
    .line {
      width: 90%;
    }

    .content-about {
        margin-top: -5rem;
        width: 90%;
  
    }

    .container-about p {
      margin-bottom: 4rem;
    }

    .container-about img {
        height: 500px;
    }
    
    .container-roadmaps {
      width: 90%;
    }
    
  
  
    
  }
  