body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #100028;
  color: #fff;
}

header {
  background: #1a0033;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #FFD700;
}

.banner {
  position: relative;
  text-align: center;
  margin-bottom: 2em;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFD700;
  text-shadow: 1px 1px 5px #000;
  width: 90%;
  text-align: center;
}

.btn-daftar {
  display: inline-block;
  margin-top: 1em;
  padding: 0.9em 2em;
  background: #ff0055;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-daftar:hover {
  background: #cc0044;
}

.latest {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 2em 1em;
  background: #1a0033;
  gap: 2em;
  align-items: flex-start;
}

.latest-deposit, .latest-withdraw {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 480px;
}

.latest table {
  width: 100%;
  border-collapse: collapse;
}

.latest table th,
.latest table td {
  text-align: left;
  padding: 0.5em;
}

#testimoni {
  background: #18002a;
  padding: 3em 1em;
  max-width: 1100px;
  margin: auto;
}

.testimoni-card {
  background: #220044;
  padding: 1.2em;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  box-shadow: 0 0 10px #00000044;
}

.testimoni-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.testimoni-card p {
  margin: 0;
  font-size: 0.95em;
}

#benefit, #artikel {
  padding: 2em 1em;
  background: #19002a;
  max-width: 900px;
  margin: 0 auto;
}

footer {
  background: #0d0017;
  padding: 2em 1em;
  text-align: center;
  color: #aaa;
}

.footer-links a {
  margin: 0 1em;
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
}
