* {
  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;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.marquee-content {
  display: flex;
  width: max-content;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  animation: marquee-seamless 20s linear infinite;
}

.home-marquee h1 {
  margin: 0;
  font-size: 20vw;
  font-family: "Wavacorp", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff5f;
  flex-shrink: 0;
  padding-right: 0.5em;
}

@keyframes marquee-seamless {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.container-one {
  display: flex;
  background-image: url(asset/sweg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  justify-content: center;
  align-items: end;
}

.content-one {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  width: 80%;
  height: 50vh;
  margin-bottom: 3rem;
}

.content-one h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: "Wavacorp", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  max-width: 70%;
  line-height: 2rem;
}

.content-one p {
  font-size: 1.2em;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  line-height: 2rem;
}

.container-roadmaps {
  display: flex;
  flex-direction: column;
  width: 80%;
  min-height: 100vh;
}

.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%;
  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-eco {
  width: 100%;
  min-height: 150vh;
  padding-block: 5rem;
  background-image: url(asset/eco-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container-eco h2 {
  font-family: "Wavacorp", sans-serif;
  text-align: left;
  color: #000;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: -3rem;
  width: 80%;
}

.eco-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  padding-block: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-track {
  display: flex;
  width: 80%;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
}

.card-eco {
  min-width: 100%;
  height: 400px;
  background-color: #000;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-image {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sub-image img {
  width: 50%;
}

.content-right-eco img {
  width: 18.5rem;
  position: relative;
  top: -60px;
}

/* Container */
.container-bank {
  width: 100%;
  padding-block: 3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* Title */
.container-bank h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: "Wavacorp", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  width: 90%;
  max-width: 1200px;
  text-align: left;
  margin-bottom: 1.5rem;
}

/* Slider wrapper */
.bank-slider {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: clamp(300px, 50vw, 650px);
  overflow: hidden;
  border-radius: 12px; /* OPTIONAL terlihat cantik */
}

/* Slide base */
.slide-bank {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(15px, 4vw, 40px);
  flex-direction: column;
  background-size: cover;
  background-position: center;
}

.slide-bank.active {
  opacity: 1;
}

/* Title inside slide */
.slide-bank h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.2em;
  font-family: "Wavacorp", sans-serif;
  text-transform: uppercase;
  color: #00f7ff;
  margin-bottom: 0.5rem;
}

/* Paragraph inside slide */
.slide-bank p {
  width: 70%;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: #ffffff;
  line-height: 1.5em;
}

/* Desktop backgrounds */
.slide-bank1 {
  background-image: url(asset/slide-bank1.webp);
}
.slide-bank2 {
  background-image: url(asset/slide-bank2.webp);
}
.slide-bank3 {
  background-image: url(asset/slide-bank3.webp);
}

.container-market-sosial {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.container-market-sosial img {
  width: 100%;
  z-index: -1;
}

.market-content {
  display: flex;
  width: 80%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-block: 2rem;
  gap: 2rem;
  margin-top: -15rem;
  min-height: 50vh;
}

.left-market-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.left-market-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: "Wavacorp", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  width: 90%;
  max-width: 1200px;
  text-align: left;
  margin-bottom: 1.5rem;
}

.left-market-content p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: #ffffff;
  line-height: 2em;
}

.right-market-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sosial-content {
  display: flex;
  min-height: 50vh;
  justify-content: end;
  width: 80%;
  flex-direction: column;
  padding-block: 2rem;
  margin-top: 2rem;
  gap: 2rem;
  z-index: 1;
}

.sosial-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: "Wavacorp", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  width: 90%;
  max-width: 1200px;
  text-align: left;
  margin-bottom: 1.5rem;
}

.sosial-content p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: #ffffff;
}

.grid-image {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.grid-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.container-entertainment {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 7rem;
  gap: 2rem;
  justify-content: center;
}

.container-entertainment h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: "Wavacorp", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.5em;
  color: #fff;
  width: 90%;
  max-width: 1200px;
  text-align: left;
  margin-bottom: 1.5rem;
}

.container-entertainment p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  width: 90%;
  max-width: 1200px;
  color: #ffffff;
  line-height: 2em;
}

.entertaiment-slide {
  position: relative;
  width: 80%;
  height: 80vh; /* tinggi banner */
  overflow: hidden;
}

/* Style dasar semua slide */
.entertaiment-slide div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Slide aktif */
.entertaiment-slide .active {
  opacity: 1;
}

/* TEXT */
.entertaiment-slide h3 {
  font-size: 2rem;
  font-family: "Wavacorp", sans-serif;
  color: #ffffff;
  margin-bottom: 1rem;
}

.entertaiment-slide p {
  font-size: 1rem;
  width: 50%;
  color: #fff;
}

/* Background per slide */
.slide-img1 {
  background-image: url("asset/ent1.webp");
}
.slide-img2 {
  background-image: url("asset/ent2.webp");
}
.slide-img3 {
  background-image: url("asset/ent3.webp");
}

.container-president {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-block: 7rem;
    gap: 2rem;
    justify-content: center;
}

.container-president h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: "Wavacorp", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    width: 90%;
    max-width: 1200px;
    text-align: left;
    margin-bottom: 1.5rem;
}

.container-president p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    width: 90%;
    max-width: 1200px;
    color: #ffffff;
    line-height: 2em;
}

.president-slide {
    position: relative;
    width: 80%;
    height: 80vh;
    overflow: hidden;
}

/* Semua slide di dalam president-slide */
.president-slide > div {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Slide aktif */
.president-slide .active {
    opacity: 1;
}

/* Text */
.president-slide h3 {
    font-size: 2rem;
    font-family: "Wavacorp", sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
}

.president-slide p {
    font-size: 1rem;
    width: 50%;
    color: #fff;
}

/* Background image */
.president-slide-img1 { background-image: url("asset/president1.webp"); }
.president-slide-img2 { background-image: url("asset/president2.webp"); }
.president-slide-img3 { background-image: url("asset/president3.webp"); }


.pow-youtube {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.pow-youtube iframe {
  width: 80%;
  height: 600px;
  border-radius: 10px;
}





.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);
  }

  

  .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%;
  }

  .slide-bank p {
    width: 90%;
  }

  .eco-slider {
    height: 50vh;
    padding-bottom: 0rem;
    align-items: center;
    
  }

  .eco-track {
    width: 100%;
    gap: 0rem;
  }

  .card-eco {
    flex-direction: row;
    width: 90%;
    height: auto;
    padding: 0px;
    align-items: end;
    text-align: center;
  }

  .sub-image {
    flex-direction: row;
  }

  .sub-image img {
    width: 50%;
  }

  .content-right-eco img {
    width: 100%;
    position: static; /* hilangkan top minus */
    margin-top: 1.5rem;
  }

  .content-left-eco {
    padding: 20px;
  }

  .content-left-eco h3 {
    font-size: 1.4rem;
    text-align: left;
  }

  .content-left-eco p {
    font-size: 0.95rem;
    line-height: 1.4rem;
    text-align: left;
  }

  .container-eco {
    min-height: 80vh;
    padding-bottom: 0rem;
  }

  .container-eco h2 {
    margin-bottom: 0rem;
    width: 90%;
  }

  .container-bank h2 {
    margin-bottom: 2rem;
  }

  .entertaiment-slide {
    height: 50vh;
    width: 90%;
  }

  .entertaiment-slide h3 {
    font-size: 1.4rem;
  }

  .entertaiment-slide p {
    width: 80%;
    font-size: 0.9rem;
  }

  .president-slide {
    height: 50vh;
    width: 90%;
}
.president-slide p {
    width: 80%;
    font-size: 0.9rem;
}
.president-slide h3 {
    font-size: 1.4rem;
}

.market-content {
  width: 90%;
  margin-top: -5rem;
  flex-direction: column;
}

.left-market-content {
  width: 100%;
}

.left-market-content p {
  text-align: justify;
}

.right-market-content {
  width: 100%;
}

.sosial-content {
  width: 90%;
}

.grid-image {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  width: 100%;

}

.content-one {
  width: 90%;
}

.content-one h2 {
  max-width: 100%;
}

.container-roadmaps {
  width: 90%;
}

.container-entertainment  {
  min-height: 80vh;
  padding-top: 5rem;
  padding-bottom: 0rem;
}

.pow-youtube iframe {
  width: 90%;
  height: 320px;
}

.sosial-content p {
  text-align: justify;
}

.container-entertainment h2 {
  margin-bottom: 0rem;
}

.container-entertainment p {
  text-align: justify;
}

.container-president h2 {
  margin-bottom: 0rem;
}

.container-president p {
  text-align: justify;
}

.entertaiment-slide div {
  padding: 20px;
}

.entertaiment-slide h3 {
  line-height: 1.7rem;
}

.president-slide div {
  padding: 20px;
}

.president-slide h3 {
  line-height: 1.7rem;
}





}