/* =========================
   BOWL MODAL
========================= */
.bowl-modal-overlay{
  position:fixed;
  inset:0;
  background:#0b0f1a;
  z-index:9999999;
  display:none; /* PENTING */
  align-items:center;
  justify-content:center;
}

/* =========================
   MODAL CONTENT
========================= */
.bowl-container{
  max-width:420px;
  width:92%;
  padding:24px 16px 40px;
  color:#fff;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  position:relative;
}

.bowl-close{
  position:absolute;
  top:18px;
  right:18px;
  font-size:26px;
  cursor:pointer;
}

.bowl-badge{
  display:inline-block;
  background:#1f2937;
  color:#facc15;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
}

.bowl-title{
  font-size:26px;
  margin:16px 0;
}

.bowl-desc{
  color:#d1d5db;
  font-size:15px;
}

.bowl-card{
  background:#111827;
  border-radius:16px;
  padding:20px;
  margin-top:20px;
}

.bowl-list{
  list-style:none;
  padding:0;
  margin:0;
}

.bowl-list li{
  display:flex;
  gap:10px;
  margin-bottom:10px;
  font-size:14px;
}

.bowl-list .dot{
  width:8px;
  height:8px;
  background:#22c55e;
  border-radius:50%;
  margin-top:6px;
}

.bowl-cta{
  display:block;
  margin-top:24px;
  padding:16px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:#052e16;
  text-align:center;
  border-radius:14px;
  font-weight:600;
  text-decoration:none;
}

.bowl-cta-secondary{
  display:block;
  margin-top:12px;
  padding:14px;
  background:#1f2937;
  color:#fff;
  text-align:center;
  border-radius:14px;
  text-decoration:none;
}

.bowl-timer{
  margin-top:16px;
  color:#f87171;
  text-align:center;
  font-size:14px;
}

.bowl-trust{
  margin-top:20px;
  font-size:12px;
  color:#9ca3af;
  text-align:center;
}

/* =========================
   CPA PLAY BUTTON (SINGLE)
========================= */
.bowl-play-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:50;
  cursor:pointer;
}

.bowl-play-btn{
  width:96px;
  height:96px;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  position:relative;
  animation:bowlPulse 1.6s infinite;
}

/* segitiga play */
.bowl-play-btn::after{
  content:"";
  position:absolute;
  top:50%;
  left:52%;
  transform:translate(-50%,-50%);
  border-left:28px solid #fff;
  border-top:18px solid transparent;
  border-bottom:18px solid transparent;
}

/* mobile */
@media(max-width:768px){
  .bowl-play-btn{
    width:68px;
    height:68px;
  }
  .bowl-play-btn::after{
    border-left:20px solid #fff;
    border-top:14px solid transparent;
    border-bottom:14px solid transparent;
  }
}

@keyframes bowlPulse{
  0%{box-shadow:0 0 0 0 rgba(255,255,255,.4)}
  70%{box-shadow:0 0 0 18px rgba(255,255,255,0)}
  100%{box-shadow:0 0 0 0 rgba(255,255,255,0)}
}
