  /* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0f172a;
  color: white;
  overflow-x: hidden;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
  transition: .3s;
  font-weight: 500;
}

/* Stars Background */
.stars {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: moveStar linear infinite;
}
@keyframes moveStar {
  0% { transform: translate(0,0); }
  100% { transform: translate(-1000px,500px); }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(19,40,43,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
header h1 {
  color: #22c55e;
  font-size: 1.5em;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
}
nav {
  display: flex;
}
nav a {
  margin: 0 15px;
  color: #cbd5e1;
  font-size: 0.95em;
}
nav a:hover {
  color: #22c55e;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8em;
  cursor: pointer;
  margin-left: 12px;
  z-index: 1100;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  right: 16px;
  background: #1e293b;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  flex-direction: column;
  padding: 15px 0;
  min-width: 160px;
  z-index: 1200;
  transition: all .2s;
}
.mobile-menu a {
  display: block;
  color: #22c55e;
  padding: 10px 20px;
  font-weight: 600;
  border-bottom: 1px solid #374151;
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.mobile-menu a:hover {
  background: #22c55e20;
  color: #fff;
}
@media(max-width:768px){
  header { padding: 10px 20px; }
  header h1 { font-size:1.3em; }
  nav { display:none; }
  .menu-toggle { display:block; }
  .mobile-menu.active { display:flex; }
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.hero h2 {
  font-size: 2.4em;
  margin-bottom: 15px;
  color: #22c55e;
  font-family: 'Roboto', sans-serif;
}
.hero p {
  font-size: 1.05em;
  max-width: 600px;
  color: #cbd5e1;
  font-weight: 400;
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.btn {
  margin-top: 20px;
  padding: 10px 22px;
  background: #22c55e;
  color: #0f172a;
  border-radius: 30px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: .3s;
}
.btn:hover {
  background: #16a34a;
  transform: scale(1.05);
}

/* Produk cards */
.products {
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
}
.card {
  position: relative;
  background: #1e293b;
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  transition: .4s;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(34,197,94,0.5);
}
.card i {
  font-size: 36px;
  color: #22c55e;
  margin-bottom: 12px;
}
.card h3 {
  margin-bottom: 10px;
  color: #22c55e;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  font-size: 1.15em;
}
.card p {
  font-size: 0.95em;
  margin-bottom: 15px;
  color: #cbd5e1;
  font-weight: 400;
  line-height: 1.5;
}
.card.show {
  opacity: 1;
  transform: translateY(0);
}
.card:active {
  transform: scale(0.95);
  box-shadow: 0 4px 12px rgba(34,197,94,0.4);
}

/* Downloader title */
.downloader-title {
  text-align: center;
  font-size: 1.8em;
  font-weight: 700;
  color: #22c55e;
  margin: 40px 0;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
}

/* Downloader boxes */
.social-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
  gap: 20px;
  padding: 20px 40px;
}
.social-box {
  background: #1e293b;
  border-radius: 25px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(0,0,0,0.3);
  transition: .3s;
  opacity: 0;
  transform: translateY(20px);
}
.social-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(34,197,94,0.4);
}
.social-box.show {
  opacity: 1;
  transform: translateY(0);
}
.social-box i {
  font-size: 32px;
  color: #22c55e;
  margin-bottom: 8px;
}
.social-box p {
  color: #cbd5e1;
  margin-top: 5px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
}

/* Stempel Game Segera Rilis */
.stempel {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ef4444;
  color: white;
  font-size: 0.7em;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 6px;
}

/* FAQ */
.faq {
  padding: 40px 15px;
  max-width: 800px;
  margin: auto;
}
.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #22c55e;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4em;
}
details {
  background: #1e293b;
  margin: 8px 0;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
summary {
  font-weight: 600;
  font-size: 0.70em;
  color: #22c55e;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
}
details summary i {
  margin-right: 8px;
  transition: transform 0.3s ease;
  font-size: 0.9em;
}
details[open] summary i {
  transform: rotate(90deg);
}
details p {
  margin-top: 8px;
  color: #cbd5e1;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  font-size: 0.9em;
  opacity: 0;
  max-height: 0;
  transition: all 0.4s ease;
}
details[open] p {
  opacity: 1;
  max-height: 500px;
}

/* Footer */
footer {
  background: #0f172a;
  padding: 25px;
  text-align: center;
  border-top: 1px solid #1e293b;
}
.social-icons a {
  margin: 0 4px;
  font-size: 29px;
  color: #22c55e;
  transition: .3s;
}
.social-icons a:hover {
  color: #16a34a;
  transform: scale(1.2);
}

/* Responsive */
@media(max-width:768px){
  .hero h2 { font-size:2em; }
  .hero p { font-size:1em; }
  .btn { padding:8px 18px; font-size:.9em; }
  .products { padding:60px 12px 40px; }
  .social-boxes { padding:20px 12px; }
}

/* Animations */
@keyframes fadeZoomIn {
  0% { opacity:0; transform: scale(0.5); }
  100% { opacity:1; transform: scale(1); }
}
@keyframes fadeUp {
  0% { opacity:0; transform: translateY(20px); }
  100% { opacity:1; transform: translateY(0); }
}

/* Profile muncul dulu */
.profile-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #22c55e;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1e293b;
  animation: fadeZoomIn 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  position: relative;
}
.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.profile-circle .initials {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #1e293b;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: 1px;
  display: none;
}

/* Animasi muncul */
@keyframes fadeZoomIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Tagline muncul setelah profil */
.tagline {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
  display: inline-block;
  padding: 3px 12px;
  border: 2px solid #22c55e;
  border-radius: 18px;
  font-size: 0.96em;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #cbd5e1;
  margin-bottom: 20px;
  background: rgba(34,197,94,0.02);
}

/* Hero teks animasi */
.hero h2 {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1s;
  opacity: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.55);
}
.hero p {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.4s;
  opacity: 0;
}
.hero .btn {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.8s;
  opacity: 0;
}

/* Lirik */
.lyrics {
  padding: 60px 20px;
  text-align: center;
}
.lyrics h2 {
  margin-bottom: 15px;
  color: #22c55e;
}
.lyrics-box {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  margin: auto;
  max-height: 200px;
  overflow-y: auto;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* Kotak pesan */
.popup-box {
  background: #1e293b;
  padding: 20px 25px;
  border-radius: 12px;
  border: 2px solid #22c55e;
  text-align: center;
  max-width: 350px;
  color: #cbd5e1;
  animation: scaleIn 0.3s ease;
}
.popup-box h3 {
  margin-bottom: 8px;
  color: #22c55e;
}
.popup-box button {
  margin-top: 12px;
  padding: 6px 15px;
  border: none;
  border-radius: 6px;
  background: #22c55e;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
}
.popup-box button:hover {
  background: #16a34a;
}
@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Label Diskon */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3b3b;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Harga Asli Dicoret */
.old-price {
  color: #888;
  text-decoration: line-through;
  font-size: 14px;
}

/* Harga Diskon */
.card b {
  color: #27ae60;
  font-size: 16px;
}