#fw-section-custom-html-c3e9fe6b-cbd1-48d3-9e89-80c25bae2f2f {

/* العنوان */
.playlist-title {
  text-align: center;
  font-size: 28px;
  color: #ffd35f;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 189, 66, 0.6);
}

/* الحاوية */
.playlist-wrapper {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 18px;
  background: linear-gradient(145deg, #1c1c1c, #262626);
  border-radius: 18px;
  border: 2px solid #574b2a;
  box-shadow: 0 0 25px rgba(0,0,0,0.45);
  flex-wrap: wrap;
}

/* الفيديو الرئيسي */
.main-video-frame {
  flex: 2;
  min-width: 300px;
}

.main-video-frame iframe {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  border: 2px solid #3b3b3b;
}

/* القائمة الجانبية */
.sidebar-videos {
  flex: 1;
  min-width: 230px;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 5px;
}

/* عنصر الفيديو */
.video-item {
  display: flex;
  gap: 10px;
  padding: 8px;
  cursor: pointer;
  background: #2e2b23;
  border-radius: 10px;
  border: 1px solid #6b5c39;
  transition: 0.25s;
}

.video-item:hover {
  background: #3a352b;
  transform: scale(1.03);
}

.thumb {
  width: 110px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.video-title {
  font-size: 14px;
  color: #fff8dd;
  line-height: 1.3;
}

/* موبايل */
@media (max-width: 600px) {

  .playlist-title {
    font-size: 22px;
  }

  .main-video-frame iframe {
    height: 250px;
  }

  .sidebar-videos {
    max-height: 220px;
  }

  .thumb {
    width: 90px;
    height: 55px;
  }

  .video-title {
    font-size: 12px;
  }
}

}

#fw-section-custom-html-f1cfab13-ef6b-4f65-a32e-dfc0cbcd2d87 {

/* الكونتينر العام */
.logo-wave-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(to bottom right, #ffffff, #f8f8f8);
  border-radius: 25px;
  box-shadow: 0px 5px 20px rgba(255, 0, 0, 0.25);
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

/* كل بلوك (صورة + اسم) */
.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  flex: 0 0 auto;
  width: 14%;
  min-width: 50px;
  transition: transform 0.3s ease;
  font-size: 12px;
}

/* Hover على البلوك كله */
.logo-box:hover {
  transform: scale(1.15);
  color: #ff0000;
  text-shadow: 0px 0px 6px rgba(255,0,0,0.6);
}

/* اللوجو */
.logo-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

/* Hover على اللوجو */
.logo-box:hover img {
  box-shadow: 0px 4px 20px rgba(255,0,0,0.5);
}

/* Responsive للشاشات المتوسطة */
@media (max-width: 1200px) {
  .logo-box {
    width: 13%;
    font-size: 11px;
  }
}

/* Responsive للموبايل */
@media (max-width: 800px) {
  .logo-box {
    width: 12%;
    font-size: 10px;
  }
}

/* Responsive للشاشات الصغيرة جدًا */
@media (max-width: 600px) {
  .logo-box {
    width: 11%;
    font-size: 9px;
  }
}

@media (max-width: 400px) {
  .logo-box {
    width: 10%;
    font-size: 8px;
  }
}

@media (max-width: 350px) {
  .logo-box {
    width: 9%;
    font-size: 7px;
  }
}

}