* {
  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-community {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.container-community img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.com-content {
  width: 80%;
}

.container-community h2 {
    font-family: wavacorp;
    width: 100%;
    text-align: left;
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.container-community p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  text-align: justify;
  color: #ffffff;
  line-height: 2em;
}

.statistic {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.statistic h2{
  font-family: wavacorp;
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-header h3 {
  margin: 0;
  width: 40%;
  color: #00f7ff;
  font-size: 20px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: #444;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 20px;
}

/* Progress Fill */
.progress-fill {
  height: 100%;
  background: linear-gradient(to right, #006366, #03e9f4);
  border-radius: 10px;
  transition: width .3s ease;
}

.statistic h4 {
  background-color: #00f7ff;
  padding: 10px;
  border-radius: 10px;
  text-align: right;
  color: #0a0a0a;
  font-weight: bold;
}

.influencer {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.influencer h2 {
  font-family: wavacorp;
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.grid-influencer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.card-influencer {
  background-color: #0a0a0a;
  border-radius: 10px;
  height: 400px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  padding: 20px;
  align-items: center;
  transition: 0.2s ease-in-out;
}

.card-influencer h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00f7ff;
  text-align: center;
}

.contact-container {
  background: #00f7ff;
  padding: 50px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  color: #000000;
  margin-bottom: 5px;
  font-weight: bold;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  background-color: #000000;
  color: #fff;
  font-size: 14px;
}

textarea {
  resize: vertical;
  height: 120px;
}

.btn {
  display: flex;
  width: 100%;
  justify-content: end;
}

button {
  padding: 12px 50px;
  
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #00f7ff;
  color: #000000;
  border: 1px solid #000000;
}

.alert {
  margin-top: 15px;
  display: none;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}

.alert.success {
  background: #d4edda;
  color: #155724;
}

.alert.error {
  background: #f8d7da;
  color: #721c24;
}

.contact-us {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.contact-us h2 {
  font-family: wavacorp;
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 2rem;
  padding-bottom: 20px;
  border-bottom: #00f7ff 1px solid;
}






.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%;
  }
  
  .com-content {
    width: 90%;
  }

  .statistic {
    width: 90%;
  }

  .influencer {
    width: 90%;
  }

  .contact-us {
    width: 90%;
  }

  .contact-container {
    padding: 20px;
  }

  .container-community img {
    height: 500px;
  }


  
}
