* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow-x: hidden;
  background: #000000; /* Warna hitam */
  color: white; /* agar teks tetap terlihat di atas background hitam */
}

.slider-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 500vw;
}

.slide {
  width: 100vw;
  height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  max-width: 500px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.logo {
  width: 100px;
  margin-bottom: 1rem;
  border-radius: 50%;
}

h2 {
  margin: 1rem 0;
  color: #ccc;
}

p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.slide-hint {
  margin-top: 1rem;
  font-size: 1rem;
  color: #aaa;
}

.action-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: #ccc;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.rules-box {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .content {
    padding: 1rem;
  }

  p {
    font-size: 0.85rem;
  }

  .rules-box {
    font-size: 0.9rem;
  }
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: white;
  border: none;
  border-radius: 999px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.content img.logo {
  width: 120px;
  max-width: 80%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
}

.content-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
  margin: 20px auto 0;
}

@media (max-width: 768px) {
  .arrow {
    top: auto;
    bottom: 20px;
    transform: translateY(0);
  }

  .arrow.left {
    left: 25%;
  }

  .arrow.right {
    right: 25%;
  }
}

.arrow-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.arrow {
  width: 50px;
  height: 50px;
  background-color: white;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

