* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

.background-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('https://media1.tenor.com/m/cKgOapMuyWcAAAAd/coding-developer-code.gif') center center / cover no-repeat;
  opacity: 0.15;
  background-color: #000;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

h1 {
  color: #ffcc00;
  text-align: center;
  font-size: 24px;
}

#pola-slot {
  font-weight: bold;
  color: #00bfff;
  line-height: 1.6;
  min-height: 150px;
  font-size: 16px;
}

.btn-lihat {
  display: block;
  margin: 30px auto 0;
  background: #ffcc00;
  color: #000;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

/* Info Box */
.info-section {
  margin: 20px 0 40px;
}

.info-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.info-box {
  flex: 1;
  background: #1c1c1c;
  padding: 15px;
  border-radius: 8px;
}

.info-box h3 {
  margin: 0 0 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.emoji {
  font-size: 18px;
}

.info-box ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
}

.full-width {
  flex: 100%;
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 200px;
  height: auto;
}

/* Link Alternatif */
.link-alternatif {
  text-align: center;
  margin: 30px auto 20px;
}

.link-alternatif a {
  color: #00ffcc;
  font-weight: bold;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  h1 { font-size: 20px; }
  #pola-slot { font-size: 14px; }
  .btn-lihat { font-size: 14px; padding: 10px 16px; }
  .info-box h3 { font-size: 14px; }
  .info-box ul { font-size: 13px; }
  .row-bawah { flex-direction: column; }
}

/* Testimonial */
#testimonial {
  text-align: left;
  font-size: 15px;
  padding: 15px;
  background: #1c1c1c;
  border-radius: 8px;
  margin-top: 30px;
  min-height: 100px;
  animation: fadeIn 0.5s ease-in-out;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

#testimonial.fade-in {
  opacity: 1;
}

#testimonial .konten {
  margin-bottom: 6px;
  line-height: 1.6;
}

#testimonial .identitas {
  margin-top: 4px;
  font-style: italic;
  font-size: 14px;
  color: #ccc;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === LINK STYLE UMUM === */
a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #ffff00;
  text-decoration: underline;
}

/* === LINK UTAMA KHUSUS === */
.link-utama {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}

.link-utama:hover {
  color: #ffcc00;
  text-decoration: underline;
}

/* === KEMBALI KE UTAMA === */
.link-kembali {
  display: inline-block;
  text-align: center;
  margin: 40px auto 20px;
  background-color: #1a1a1a;
  color: #00ffcc;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px #00ffcc33;
  cursor: pointer;
}

.link-kembali:hover {
  background-color: #00ffcc;
  color: #000;
  box-shadow: 0 0 8px #00ffcc88;
}

.link-kembali span {
  margin-left: 5px;
}

.lihat-juga-box {
  margin: 40px auto 30px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  text-align: left;
}

.lihat-juga-box h2 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lihat-juga-box span {
  color: #ffcc00;
}

.lihat-juga-box a.link-konten {
  color: #00ffcc;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
}

.lihat-juga-box a.link-konten:hover {
  color: #ffff00;
  text-decoration: underline;
}
