/* Radar Pro anasayfa özet modalı */
.rp-modal-backdrop {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(11,27,51,0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px 16px;
  animation: rpFade 0.2s ease both;
}
.rp-modal-backdrop.acik { display: flex; }
@keyframes rpFade { from { opacity: 0 } to { opacity: 1 } }
.rp-modal-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: min(92vh, 900px);
  background: #F7F6F1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.55);
}
.rp-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(11,27,51,0.85); color: #fff;
  border: 0; font-size: 20px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.rp-modal-close:hover { background: #0B1B33; }
.rp-modal-iframe {
  display: block; width: 100%; height: 100%; border: 0;
  background: #F7F6F1;
}
body.rp-modal-lock { overflow: hidden; }
@media (max-width: 600px) {
  .rp-modal-backdrop { padding: 0; }
  .rp-modal-card { max-width: 100%; height: 100vh; border-radius: 0; }
}