.video-section {
  color: #4b1f6f;
  background: #fff;
}

.video-subtitle {
  color: #3d1a5b;
  font-size: 1.05rem;
  max-width: 58ch;
  margin-inline: auto;
  line-height: 1.8;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  border-radius: 16px;
  overflow: hidden;
}

/* زر التشغيل */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--aqua);
  color: #2b2140;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: transform .2s ease, background .3s ease;
  z-index: 5;
}
.play-btn:hover {
  background: #35d6b6;
  transform: scale(1.1);
}

.video-container {
  background: #fff; /* خلي المحتوى أبيض أو شفاف حسب ذوقك */
  border-radius: 16px;
  padding: 2rem;
  margin-inline: auto;
  max-width: 1100px;

  /* إطار متدرج */
  border: 6px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image:
    linear-gradient(#fff, #fff), /* خلفية المحتوى */
    linear-gradient(135deg, var(--purple), var(--purple-2), var(--aqua));
}

@media (max-width: 576px) {
  .play-btn {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }
}
