<style>
:root{
  --bg:#0b0f1a;
  --card:#12172a;
  --border:rgba(255,255,255,.08);
  --text:#e9eefc;
  --muted:#9aa4c7;
  --primary:#ffb62a;
}

body.modal-open .mobile-footer,
body.modal-open .chat-mobile,
body.modal-open .slot-controls-bottom,
body.modal-open .slot-info{
  display: none !important;
}

/* =========================
   OVERLAY (FULL SCREEN)
========================= */
.modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.modal.show{
  display: flex;
}

/* =========================
   BOX (FULL MODE)
========================= */
.modal-box{
  width: 96%;
  max-width: 1200px;
  height: 90vh;              /* FULL TINGGI */
  background: #0b0f1a;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* =========================
   HEADER (STICKY)
========================= */
.modal-header{
  height: 52px;
  background: #12172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

/* =========================
   CLOSE BUTTON
========================= */
.close-btn{
  background: var(--primary);
  color: #000;
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   BODY
========================= */
.modal-body{
  flex: 1;
  position: relative;
}

/* =========================
   IFRAME FULL
========================= */
.modal-body iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width:768px){
  .modal-box{
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}

</style>