/* Overlay gelap */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
}

/* Box popup di tengah */
.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 340px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  box-sizing: border-box;
}

/* Hilangkan scrollbar tapi tetap bisa scroll */
.popup-content::-webkit-scrollbar { display: none; }
.popup-content { scrollbar-width: none; }

/* Logo */
.popup-logo {
  max-height: 80px;
  display: block;
  margin: 0 auto 15px auto;
}

/* Judul */
.popup-content h2 {
  text-align: center;
  margin-top: 0;
}

/* Teks aturan */
.popup-content p, 
.popup-content ol, 
.popup-content ul {
  text-align: left;
  line-height: 1.6;
  font-size: 14px;
  margin-top: 10px;
}

/* Tombol */
#agree-btn {
  padding: 10px 20px;
  border: none;
  margin-top: 15px;
  border-radius: 5px;
  background: #ffcc00;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#agree-btn:hover {
  background: #ffdd33;
}
.popup-content ol li {
  font-weight: bold;
}
.popup-content ol {
  text-align: left;
  line-height: 1.6;
  font-size: 14px;
  margin-top: 10px;
  font-weight: bold;      /* bikin bold */
  padding-left: 20px;     /* jarak angka dari kiri */
  margin-left: 0;         /* biar gak terlalu jauh */
}