/* ===== Start Header ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #374151; /* Tailwind: border-gray-700 */
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  width: 10.5rem; /* 6 Tailwind units */
  height: 2.5rem;
}

.site-title {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600; /* font-semibold */
}

.login-button,
.daftar-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0; /* Tidak ada jarak antar tombol */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.login-button {
  background: linear-gradient(to right, #ef4444, #dc2626);
  color: #fff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.daftar-button {
  background: linear-gradient(to right, #ec4899, #c026d3);
  color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* ===== End Header ===== */

/* ===== Start Box ===== */
.login-box {
  background-color: #111827; /* Tailwind: bg-gray-900 */
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}

.login-text {
  font-size: 0.875rem; /* text-sm */
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.login-button {
  background-color: #e700a2;
  color: #ffffff;
  padding: 0.3rem 1rem; /* lebih kecil dari 0.5rem 1.5rem */
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem; /* perkecil font */
  border: none;
  cursor: pointer;
}

.daftar-button {
  background-color: #e700a2;
  color: #ffffff;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}
/* ===== End Box ===== */

/* ===== Link Gacor ===== */
.gacor-links-wrapper {
  background: #111827;
  padding: 1rem 1.5rem;
  border-radius: none;
  margin-top: 1rem;
  overflow-x: auto;
}

.gacor-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.gacor-links::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.gacor-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: transparent;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1); /* lebih halus */
  font-size: 0.875rem;
  font-weight: 600;
  color: #e700a2; /* span/teks putih */
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

/* Pastikan ikon berwarna putih */
.gacor-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* untuk gambar PNG/SVG hitam agar jadi putih */
}

/* Jika kamu memakai SVG inline (bukan <img>), bisa tambah: */
.gacor-item svg {
  stroke: #ffffff;
  fill: #ffffff;
}
/* ===== End link gacor ===== */

/* ===== Start Paket Item ===== */
.paket-item {
  background-color: #111111;
  border: 1px solid #ffffff; /* border-yellow-500 */
  border-radius: 0.75rem; /* rounded-xl */
  margin: 1rem;
  padding: 1rem;
}

.paket-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.label-best {
  font-size: 0.75rem;
  color: #facc15;
  background-color: #78350f; /* yellow-900 */
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.label-custom {
  font-size: 0.75rem;
  color: #ec4899;
  background-color: #831843; /* pink-900 */
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.paket-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.paket-desc {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.paket-limit {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.paket-bonus {
  color: #facc15;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.paket-image {
  border-radius: 0.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}
/* ===== End Paket Item ===== */

/* ===== Start Mini Popup ===== */
.paket-price {
  text-align: center;
  background-color: #ec4899; /* yellow-500 */
  color: #ffffff;
  font-weight: bold;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup.active {
  display: flex;
}

.popup-inner {
  background: #ffffff;
  color: #1e293b;
  border-radius: 8px;
  padding: 1.5rem;
  width: 90%;
  max-width: 320px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.popup-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.popup-code {
  font-family: monospace;
  font-size: 0.95rem;
  background: #f3f4f6;
  padding: 0.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: inline-block;
}

.popup-close {
  background-color: #1e293b;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

.popup-close:hover {
  background-color: #111827;
}

.popup-inner {
  background: #ffffff;
  color: #1e293b;
  border-radius: 8px;
  padding: 1.5rem;
  width: 90%;
  max-width: 320px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;

  /* Animasi masuk */
  opacity: 0;
  transform: translateY(20px);
  animation: popupFadeIn 0.4s forwards ease-out;
}

.popup.active .popup-inner {
  /* Reset animasi biar jalan tiap muncul */
  animation: popupFadeIn 0.4s forwards ease-out;
}

@keyframes popupFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== End Mini Popup ===== */

/* ===== Start Choice RTP ===== */
.pilih-barang {
  margin: 1rem;
}

.judul-barang {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.container-barang {
  background-color: #111827;
  padding: 1rem;
  border-radius: 0.5rem;
}

.teks-subjudul {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.grid-barang {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .grid-barang {
    grid-template-columns: repeat(4, 1fr);
  }
}

.btn-barang {
  background-color: #ec4899;
  color: white;
  padding: 0.5rem 0;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-barang:hover {
  background-color: #ffffff;
  color: #ec4899;
}
/* ===== End Choice RTP ===== */

/* ===== Start Artikel ===== */
.slot-article {
  max-width: 100%;
  padding: 2rem 1rem;
  margin: 0;
  background-color: none;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  color: #ffffff;
}

/* Main Title */
.main-title {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  color: #ec4899;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* Section Title */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ec4899;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

/* Sub Title */
.sub-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

/* Paragraph */
.paragraph {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

/* List Styles */
.list,
.list-numbered {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.list li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.list-numbered li {
  list-style: decimal;
  margin-bottom: 0.5rem;
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(to right, #f43f5e, #db2777);
  color: #fff;
  font-weight: bold;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 1.125rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-top: 2rem;
}

.cta-button:hover {
  transform: scale(1.02);
  opacity: 0.9;
}
/* ===== End Artikel ===== */

/* ===== Start Game Provider ===== */
.game-selection {
  background-color: #111827;
  border: 1px solid #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* shadow-inner */
}

.game-selection .title {
  font-size: 1.125rem; /* text-lg */
  font-weight: bold; /* font-bold */
  color: #ffffff; /* text-gray-700 */
  margin-bottom: 0.5rem; /* mb-2 */
}

.game-selection .subtitle {
  font-size: 0.875rem; /* text-sm */
  color: #6b7280; /* text-gray-500 */
  margin-bottom: 0.75rem; /* mb-3 */
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem; /* gap-3 */
}

@media (min-width: 640px) {
  .game-grid {
    grid-template-columns: repeat(4, 1fr); /* sm:grid-cols-4 */
  }
}

.game-card {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* space-x-2 */
  padding: 0.5rem 1rem; /* px-4 py-2 */
  background-color: #ec4899;
  border: 1px solid #ffffff; /* border-gray-300 */
  border-radius: 0.5rem; /* rounded-lg */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  color: #ffffff;
  transition: background-color 0.3s;
}

.game-card:hover {
  background-color: #ffffff;
  color: #e700a2;
}

.game-card img {
  width: 1.5rem; /* w-6 */
  height: 1.5rem; /* h-6 */
}
/* ===== End Game Provider ===== */
