/* ===== پاپ‌آپ اصلی ===== */
.story-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease, backdrop-filter 0.6s ease, background 0.6s ease;
}
.story-popup.active {
  display: flex !important;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  opacity: 1;
}

/* ===== قاب داخلی با انیمیشن حرکت ===== */
.story-popup-inner {
  position: relative;
  transform: translateY(50px) scale(0.9);
  opacity: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transition: transform 0.7s cubic-bezier(0.25,0.8,0.25,1), opacity 0.7s ease;
}
.story-popup.active .story-popup-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ===== iframe ===== */
.story-popup iframe {
  width: 380px;
  height: 680px;
  border: none;
  background: #000;
  border-radius: 18px;
  display: block;
}

/* ===== دکمه بستن ===== */
.story-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.25);
  color: #fff;
  border: none;
  font-size: 26px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 30;
  transition: all 0.25s ease;
}
.story-close:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
}

/* ===== متن روی ویدیو ===== */
.story-overlay {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 20px;
  z-index: 25;
  text-align: center;
}
.story-overlay h3,
.story-overlay p {
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.9);
  font-family: inherit;
  line-height: 1.4;
  display: inline-block;
  max-width: 90%;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
}
.story-overlay h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.story-overlay p {
  font-size: 13px;
  font-weight: 400;
}

/* ===== واکنش‌گرا ===== */
@media (max-width: 600px) {
  .story-popup iframe {
    width: 90vw;
    height: 80vh;
  }
  .story-overlay h3 { font-size: 15px; }
  .story-overlay p { font-size: 12px; }
}
