* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: underline;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.header {
  position: fixed;
  width: 100%;
  background-color: transparent;
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  top: 0;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.nav-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #25d366;
}

.main-content {
  padding-top: 80px;
}

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #6366f1 0%, #2563eb 100%);
  color: white;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: white;
  color: #2563eb;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.image-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
}

.scroll-image {
  width: 100%;
  height: auto;
  display: block;
}

.daftar-button {
  position: absolute;
  background-color: white;
  color: #000000;
  border: none;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  padding: 4px 16px;
}

.daftar-button.store-button {
  bottom: 33.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  font-size: 10px;
  padding: 3px 12px;
}

.daftar-button.top-right {
  top: 7%;
  right: 25%;
  width: auto;
  font-size: 10px;
  padding: 3px 12px;
}

.daftar-button.bottom {
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  font-size: 10px;
  padding: 3px 12px;
}

.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: bounce 2s ease-in-out infinite;
}

.whatsapp-button:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Video Section */
.video-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.scroll-video {
  width: 100%;
  height: auto;
  display: block;
  background: black;
}

/* Animation Keyframes */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  * {
    margin: 0 !important;
    padding: 0 !important;
  }

  .header {
    padding: 6px 0 !important;
    height: 35px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-container {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    padding: 0 12px !important;
  }

  .nav-link {
    font-size: 11px !important;
    color: #000;
    font-weight: 500;
    background-color: white;
    padding: 4px 10px !important;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .footer {
    margin-top: 0 !important;
    padding: 1rem 0 !important;
  }

  .whatsapp-button {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .daftar-button {
    padding: 4px 10px;
    font-size: 9px;
  }

  .daftar-button.store-button {
    bottom: 33.5%;
    width: 80px;
    font-size: 10px;
    padding: 3px 12px;
  }

  .daftar-button.top-right {
    top: 7%;
    width: 96px;
    right: 10%;
    font-size: 13px;
  }

  .daftar-button.top-left {
    top: 7%;
    right: 25%;
    font-size: 10px;
    padding: 3px 12px;
  }
  .daftar-button.bottom {
    bottom: 11%;
    width: 90px;
    font-size: 10px;
    padding: 3px 12px;
  }

  body {
    background-color: white;
  }

  .image-container {
    padding: 0;
    gap: 0;
    max-width: 100%;
    margin: 0;
  }

  .image-wrapper {
    margin: 0;
    border-radius: 0;
  }

  .scroll-image {
    border-radius: 0;
    margin: 0;
    display: block;
  }

  .image-scroll-section {
    padding: 0;
    margin: 0;
  }

  .video-section {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    background: black;
  }

  .scroll-video {
    width: 100%;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 480px) {
  .daftar-button {
    padding: 2px 8px;
    font-size: 8px;
  }

  .daftar-button.store-button {
    width: 96px;
    left: 19%;
    transform: translateX(-50%);
    bottom: 37.5%;
    font-size: 1rem;
  }
  .daftar-button.top-right1 {
    top: 7%;
    width: 89px;
    right: 1%;
    font-size: 13px;
  }
  .daftar-button.top-right2 {
    top: 54%;
    width: 103px;
    right: 60%;
    font-size: 13px;
  }
  .daftar-button.top-right3 {
    top: 3%;
    width: 103px;
    right: 40%;
    font-size: 13px;
  }
  .daftar-button.top-right4 {
    top: 14%;
    width: 103px;
    right: 17%;
    font-size: 13px;
  }
  .daftar-button.top-right5 {
    top: 32%;
    width: 103px;
    right: 36%;
    font-size: 13px;
  }
  .daftar-button.top-left {
    width: 124px;
    right: 61%;
    font-size: 11px;
  }
  .daftar-button.top-left1 {
    top: 8%;
    width: 89px;
    right: 75%;
    font-size: 13px;
  }

  .daftar-button.bottom {
    width: 125px;
    bottom: 3%;
    font-size: 1rem;
  }
  .daftar-button.bottom1 {
    width: 100px;
    right: 61%;
    bottom: 71%;
    font-size: 12px;
  }
  .daftar-button.bottom2 {
    width: 121px;
    right: 66%;
    bottom: 14%;
    font-size: 1rem;
  }
  .daftar-button.bottom3 {
    width: 120px;
    right: 34%;
    bottom: 40%;
    font-size: 1rem;
  }
  .daftar-button.bottom4 {
    width: 120px;
    right: 66%;
    bottom: 23%;
    font-size: 13px;
  }
  .daftar-button.bottom5 {
    width: 120px;
    right: 37%;
    bottom: 0%;
    font-size: 13px;
  }
  .daftar-button.bottom6 {
    width: 120px;
    right: 36%;
    bottom: 1%;
    font-size: 13px;
  }
  .daftar-button.bottom7 {
    width: 120px;
    right: 65%;
    bottom: 93%;
    font-size: 13px;
  }
  .daftar-button.bottom8 {
    width: 120px;
    right: 3%;
    bottom: 93%;
    font-size: 13px;
  }
  .daftar-button.bottom8 {
    width: 120px;
    right: 3%;
    bottom: 93%;
    font-size: 13px;
  }
  .daftar-button.bottom9 {
    width: 120px;
    right: 13%;
    bottom: 24%;
    font-size: 13px;
  }
  .daftar-button.nohp {
    width: 90px;
    bottom: 11%;
    font-size: 10px;
  }
}

@media (min-width: 769px) {
  .video-section {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .scroll-video {
    width: 100%;
    max-height: 889px; /* This maintains the aspect ratio similar to images */
    object-fit: contain;
  }
}
