
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('images/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* overlay gelap */
  z-index: -1;
}


header {
  padding: 5px;
  background: rgba(0, 0, 0, 0.6); /* overlay gelap */
}

.logo {
  width: 120px;
  margin-bottom: 10px;
}

h1 {
  font-size: 20px;
  margin: 0;
  color: #fff000;
  text-shadow: 1px 1px 4px #000;
}

/* Slider */
.slider {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px #fddc21;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.slide {
  width: 100%;
  display: none;
}

.slide.active {
  display: block;
}

/* Jackpot marquee */
.jackpot-section {
  margin: 30px 10px;
  padding: 15px;
  background: rgba(0,0,0,0.6);
  border-radius: 10px;
}

.jackpot-marquee {
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  color: #0ff;
}

.jackpot-marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* CTA */
.cta {
  margin: 30px 0;
}

.btn {
  background: #fff000;
  color: black;
  padding: 15px 25px;
  margin: 10px;
  border: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px #1e90ff;
}

.btn:hover {
  background: #ffcc00;
}

/* Responsive */
@media (max-width: 600px) {
  .logo {
    width: 90px;
  }

  h1 {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 20px;
  }

}
.footer-links {
  display: flex;
  justify-content: center;
  font-size: 15px;
  gap: 20px;
  margin-top: 10px;
}

.footer-links a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 15px;
  margin-top: 10px;
}
