
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at top left, #050505, #0a0a0a);
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}
header { padding: 30px 10px; }
h1 { font-size: 2em; color: #00ffff; text-shadow: 0 0 10px #00ffff; }
h2 { color: #ff00ff; text-shadow: 0 0 10px #ff00ff; }
.paket-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.paket-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid #0ff;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff inset;
  transition: transform 0.3s, box-shadow 0.3s;
}
.paket-item:hover { transform: scale(1.05); box-shadow: 0 0 25px #0ff; }
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #00ffff, #ff00ff, #00ff00);
  background-size: 400% 400%;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 25px;
  text-decoration: none;
  animation: rgbflow 3s infinite;
}
.btn.pesan {
  margin: 30px auto;
  display: inline-block;
  font-size: 1.1em;
}
@keyframes rgbflow {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
.menu-container { position: fixed; top: 10px; right: 10px; }
.menu-button {
  background: none;
  color: #00ffff;
  font-size: 24px;
  border: none;
  cursor: pointer;
}
.menu-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background: #111;
  border: 1px solid #0ff;
  border-radius: 10px;
}
.menu-dropdown a {
  display: block;
  padding: 10px;
  color: #0ff;
  text-decoration: none;
}
.menu-dropdown a:hover { background: #0ff2; }
.menu-dropdown.show { display: block; }
.rating-section { margin: 40px auto; width: 80%; max-width: 500px; }
.stars span { font-size: 30px; cursor: pointer; color: #555; }
.stars span.active { color: gold; text-shadow: 0 0 10px gold; }
textarea { width: 100%; height: 80px; margin-top: 10px; border-radius: 10px; padding: 10px; background: #111; color: white; border: 1px solid #0ff; }
.review { background: rgba(255,255,255,0.05); margin: 15px auto; padding: 10px; border-radius: 10px; width: 80%; max-width: 500px; box-shadow: 0 0 10px #0ff; }
