.page-3 {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

.page-3__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Center 3D Video Blob & Title ---------- */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Video layer di belakang */
  pointer-events: none;
  user-select: none;
}

.orbit-center__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 29vw, 390px);
  height: clamp(260px, 29vw, 390px);
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.orbit-center__text {
  position: relative;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.orbit-center__title {
  font-family: 'DM Sans', var(--font-heading), -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1px;
}

.orbit-center__subtitle {
  font-family: 'DM Sans', var(--font-heading), -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 2.1rem);
  font-weight: 800;
  color: #ff3333;
  font-style: normal;
  line-height: 1.1;
  display: block;
  margin-top: 2px;
}

.orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.orbit-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ---------- Orbit Items ---------- */
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(80px, 8.5vw, 115px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 5;
  will-change: transform, opacity;
  transition: filter 0.3s ease;
  background: transparent;
  border: none;
  outline: none;
}

.orbit-item:hover {
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.85));
}

.orbit-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  pointer-events: none;
  border: none;
  background: transparent;
}

@media (max-width: 1024px) {
  .orbit-center__video {
    width: clamp(230px, 28vw, 320px);
    height: clamp(230px, 28vw, 320px);
  }

  .orbit-item {
    width: clamp(70px, 9vw, 95px);
  }
}

@media (max-width: 768px) {
  .orbit-center__video {
    width: clamp(190px, 32vw, 260px);
    height: clamp(190px, 32vw, 260px);
  }

  .orbit-item {
    width: clamp(55px, 10vw, 75px);
  }

  .orbit-center__title {
    font-size: 2rem;
  }

  .orbit-center__subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 540px) {
  .orbit-center__video {
    width: clamp(150px, 42vw, 190px);
    height: clamp(150px, 42vw, 190px);
  }

  .orbit-item {
    width: clamp(45px, 13vw, 62px);
  }

  .orbit-center__title {
    font-size: 1.6rem;
  }

  .orbit-center__subtitle {
    font-size: 1.05rem;
  }
}
