/* Fullscreen overlay */
.shp-popup-overlay{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.7);
  z-index:99999;
  padding:20px;
}

/* Panel */
.shp-popup-panel{
  max-width:720px;
  width:100%;
  border-radius:12px;
  background:#0b1020;
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.shp-popup-inner{
  padding:28px;
  text-align:left;
}

.shp-popup-title{
  margin:0 0 12px 0;
  font-size:22px;
  text-align:center;
}

.shp-popup-body p{
  line-height:1.5;
  margin:0 0 18px 0;
}

.shp-popup-actions{
  display:flex;
  justify-content:center;
}

.shp-btn-agree{
  background:#e53935;
  color:#fff;
  padding:12px 26px;
  border-radius:8px;
  border:none;
  font-size:16px;
  cursor:pointer;
}

@media (max-width:480px){
  .shp-popup-inner{ padding:18px }
  .shp-popup-title{ font-size:18px }
}
