/* ===== Land – Promo Video (two columns) ===== */
.ms-promo-video{
  --container: min(1200px, 92vw);
  font-family: "IRANSans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color:#111827;
}
.ms-promo-video__container{
  width: var(--container);
  margin-inline: auto;
  padding: 28px 0;
}

/* دو ستون: راست 25% (info) ، چپ 75% (video) */
.ms-promo-video__grid{
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 980px){
  .ms-promo-video__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ستون راست (اطلاعات) */
.ms-promo-video__info{ text-align: right; }
.ms-promo-video__title{
  margin:0 0 6px;
  font-family:"Lalezar","IRANSans",sans-serif;
  color:#8b5cf6;
  font-size: clamp(22px, 2.6vw, 30px);
}
.ms-promo-video__subtitle{
  margin:0 0 12px;
  color:#6b7280;
}
.ms-promo-video__bullets{
  list-style:none; margin:0 0 14px; padding:0; display:grid; gap:8px;
}
.ms-promo-video__bullets li{
  display:flex; align-items:flex-start; gap:8px;
  color:#374151; line-height:1.9; font-size:14px;
}
.ms-promo-video__bullets i{
  flex:0 0 18px; width:18px; height:18px;
  display:grid; place-items:center; border-radius:6px;
  background:rgba(139,92,246,.12); color:#7c3aed; font-size:12px; margin-top:2px;
}
.ms-promo-video__cta{ margin-top: 8px; }
.btn-cta{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px; border-radius:999px; border:0; cursor:pointer;
  color:#fff; text-decoration:none; font-weight:800;
  background:linear-gradient(90deg, #ec4899, #8b5cf6);
  box-shadow:0 12px 26px rgba(139,92,246,.28), 0 4px 10px rgba(236,72,153,.18);
}
.btn-cta i{ font-size:14px; }

/* ستون چپ (قاب ویدئو) — حتی بدون پوستر هم نمایش دارد */
.ms-promo-video__frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  background:
    radial-gradient(40% 40% at 50% 30%, rgba(139,92,246,.10), transparent 70%),
    radial-gradient(40% 40% at 50% 80%, rgba(236,72,153,.10), transparent 70%),
    #f8fafc;
}
/* پوستر قاب را کامل بپوشاند */
.ms-promo-video__poster{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; display:block;
}
/* دکمه پلی مرکز قاب */
.ms-promo-video__play{
  position:absolute; inset:0; margin:auto;
  width:72px; height:72px; border-radius:999px; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(90deg,#ec4899,#8b5cf6); color:#fff; font-size:26px;
  box-shadow:0 8px 22px rgba(139,92,246,.35);
}

/* مودال (روی همه چیز) + دکمه بستن */
.ms-promo-video__modal[hidden]{ display:none; }
.ms-promo-video__modal{ position:fixed; inset:0; z-index:2147483646; }
.ms-promo-video__backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.75); }
.ms-promo-video__dialog{ position:absolute; inset:0; display:grid; place-items:center; padding:20px; }
.ms-promo-video__body{
  width:min(960px, 94vw); aspect-ratio:16/9;
  background:#000; border-radius:12px; overflow:hidden;
  box-shadow:0 22px 60px rgba(0,0,0,.45); position:relative;
}
.ms-promo-video__body video, .ms-promo-video__body iframe{ width:100%; height:100%; display:block; }
.ms-promo-video__close{
  position:absolute; top:10px; right:10px;
  width:40px; height:40px; border:none; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background:#fff; color:#111827;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
  cursor:pointer; z-index:2147483647;
}
.ms-promo-video__close i{ font-size:18px; line-height:1; }

/* Dark mode */
