/* === إعداد الجسم الرئيسي === */
body {
    max-width: 1024px;
    margin: auto;
    padding: 0;
    width: 100%;
    background: #1E262A;
    font-family: Arial, sans-serif;
    color: #fff;
}
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c2f33;
  padding: 15px 20px;
}

.logo {
  font-size: 48px;
  font-weight: bold;
  color: #00bfff;
  font-family: Arial, sans-serif;
}

.nav-icons {
  display: flex;
  gap: 15px;
}

.nav-icons img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.nav-icons img:hover {
  transform: scale(1.1);
}

/* === الرأس والقائمة === */
header {
    color: #ccc;
}
nav {
    background-color: #27313b;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px;
}
nav a {
    padding: 8px;
    display: block;
    text-align: center;
}

/* === وحدة الإعلانات === */
.ads {
    background: #000;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 6px;
    margin: 5px 0;
}

/* === مشغل الفيديو === */
.player-container {
    margin: 0 auto;
    background: #1c1c1c;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 10px;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* === الأزرار والمكونات الثانوية === */
button {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background: #45a049;
}

/* === قسم القنوات والتواصل الاجتماعي === */
.sosiales,
.canawat,
.contact {
    background: #000;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
}
.sosiales img,
.canawat img,
.contact img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 3px solid #d2d2d2;
    border-radius: 5px;
    margin: 5px auto;
}

/* === الوصف والمحتوى النصي === */
.Descrip {
    background: #000;
    padding: 15px;
    text-align: justify;
    font-size: 18px;
    line-height: 1.6;
}

/* === التذييل === */
.Footer {
    background: #111;
    border-top: 2px solid #a940a2;
    padding: 10px;
    font-size: 12px;
    text-align: center;
    color: bisque;
}
.Footer a {
    color: #3be6e8;
    text-decoration: none;
}

/* === تجاوب الهواتف === */
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }
    .Descrip {
        font-size: 16px;
        text-align: center;
    }
    .sosiales img,
    .canawat img,
    .contact img {
        max-width: 150px;
    }
    .Footer {
        font-size: 10px;
    }
}
