@charset "utf-8";
/* ============================================================
   FONT FACES - Neo Sans Arabic
   ============================================================ */
@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('../fonts/NeoSansArabic-Regular.woff2') format('woff2'), url('../fonts/NeoSansArabic-Regular.woff') format('woff'), url('../fonts/NeoSansArabic-Regular.ttf') format('truetype');
  font-weight: 400; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('../fonts/NeoSansArabic-Medium.woff2') format('woff2'), url('../fonts/NeoSansArabic-Medium.woff') format('woff'), url('../fonts/NeoSansArabic-Medium.ttf') format('truetype');
  font-weight: 500; /* Medium */
  font-style: normal;
}
@font-face {
  font-family: 'Neo Sans Arabic';
  src: url('../fonts/NeoSansArabic-Bold.woff2') format('woff2'), url('../fonts/NeoSansArabic-Bold.woff') format('woff'), url('../fonts/NeoSansArabic-Bold.ttf') format('truetype');
  font-weight: 700; /* Bold */
  font-style: normal;
}
/* ============================================================
   IRAQ 24 HD â€” Canal+ Inspired Design Language
   Pure black Â· cinematic Â· content-first Â· bold typography
   ============================================================ */ :root {
  /* Surfaces */
  --bg: #000000;
  --surface-1: #0a0a0a;
  --surface-2: #141414;
  --surface-3: #1c1c1c;
  --surface-hover: #262626;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  /* Text */
  --text: #ffffff;
  --text-2: #b3b3b3;
  --text-3: #777777;
  --text-4: #4d4d4d;
  /* Accents */
  --red: #c15246;
  --red-hover: #d4655a;
  --red-glow: rgba(193, 82, 70, 0.35);
  --live: #c15246;
  /* Effects */
  --radius: 8px;
  --radius-lg: 12px;
  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Neo Sans Arabic', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4 {
  font-family: 'Neo Sans Arabic', sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility-bar {
  background: #000;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.utility-bar .meta {
  display: flex;
  gap: 14px;
}
.utility-bar .meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.utility-bar .lang {
  display: flex;
  gap: 12px;
}
.utility-bar .lang a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.utility-bar .lang a:hover {
  color: var(--text);
}
.utility-bar .lang a.active {
  color: var(--text);
}
/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  height: 40px;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.ticker-label {
  background: var(--red);
  color: white;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ticker-dot {
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.35);
  }
}
.ticker-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 56px;
  animation: ticker-scroll 70s linear infinite;
  white-space: nowrap;
  padding-right: 56px;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.ticker-item {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-item::before {
  content: '';
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
}
/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.35s var(--easing);
}
.header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  animation: slide-down 0.3s var(--easing);
}
@keyframes slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  font-family: 'Neo Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--text);
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.logo-mark .plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0;
  margin-right: 4px;
}
.nav-main {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-main a {
  position: relative;
  display: block;
  padding: 10px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-main a:hover {
  color: var(--text-2);
}
.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 16px;
  left: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text);
}
.subscribe-btn {
  background: var(--red);
  color: white;
  padding: 11px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.subscribe-btn:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--red-glow);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 9px 11px;
  border-radius: 4px;
  cursor: pointer;
}
/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  background: var(--bg);
}
.slides-wrap {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--easing);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.slide-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.slide.active .slide-image {
  transform: scale(1);
  animation: kenburns 12s ease-out forwards;
}
@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%), linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 80%, var(--bg) 100%), radial-gradient(ellipse at left center, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}
[dir="rtl"] .slide-overlay {
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%), linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 80%, var(--bg) 100%), radial-gradient(ellipse at right center, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}
.slide-content {
  /* display: none; */ /* ðŸ‘ˆ Ù‡Ø°Ø§ Ø§Ù„Ø³Ø·Ø± Ø³ÙŠÙ‚ÙˆÙ… Ø¨Ø¥Ø®ÙØ§Ø¡ Ø¬Ù…ÙŠØ¹ Ø§Ù„Ù†ØµÙˆØµ ÙˆØ§Ù„Ø£Ø²Ø±Ø§Ø± Ø¨Ø§Ù„ÙƒØ§Ù…Ù„ */
  position: absolute;
  bottom: 14%;
  right: 0;
  left: 0;
  z-index: 3;
}
.slide-content .container {
  max-width: 760px;
  margin-left: auto;
  margin-right: 0;
  padding-right: 48px;
  padding-left: 48px;
}
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s 0.2s var(--easing);
}
.slide.active .slide-eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.slide-eyebrow .badge {
  background: var(--red);
  padding: 5px 11px;
  border-radius: 3px;
  font-weight: 700;
}
.slide-eyebrow .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--live);
  padding: 5px 11px;
  border-radius: 3px;
  font-weight: 700;
}
.slide-eyebrow .live-badge .dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
.slide-content h1 {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  color: white;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s 0.35s var(--easing);
}
.slide.active .slide-content h1 {
  opacity: 1;
  transform: translateY(0);
}
.slide-content .description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s 0.5s var(--easing);
}
.slide.active .slide-content .description {
  opacity: 1;
  transform: translateY(0);
}
.slide-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s 0.4s var(--easing);
}
.slide.active .slide-meta {
  opacity: 1;
  transform: translateY(0);
}
.slide-meta .sep {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.slide-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s 0.6s var(--easing);
}
.slide.active .slide-ctas {
  opacity: 1;
  transform: translateY(0);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s var(--easing);
  font-family: inherit;
}
.btn-primary {
  background: white;
  color: black;
}
.btn-primary:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border-color: transparent;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
}
.btn-red {
  background: var(--red);
  color: white;
}
.btn-red:hover {
  background: var(--red-hover);
}
/* ============================================================
   SLIDER CONTROLS
   ============================================================ */
.slider-controls {
  position: absolute;
  bottom: 38px;
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.slider-controls .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.slide-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
}
.indicator {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.indicator:hover {
  background: rgba(255, 255, 255, 0.4);
}
.indicator.active {
  width: 90px;
}
.indicator-fill {
  position: absolute;
  inset: 0;
  background: white;
  transform-origin: right;
  transform: scaleX(0);
}
.indicator.active .indicator-fill {
  animation: indicator-progress 7s linear forwards;
}
@keyframes indicator-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.slider-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}
.slide-count {
  font-family: 'Neo Sans Arabic', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.05em;
  min-width: 70px;
  text-align: center;
}
.slide-count .current {
  color: white;
  font-weight: 700;
}
.slide-count .total {
  color: rgba(255, 255, 255, 0.4);
}
.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.nav-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}
/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: 80px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 32px;
}
.section-head .left {
  flex: 1;
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-head .eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-head .sub {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 12px;
  max-width: 480px;
  line-height: 1.6;
}
.section-link {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.section-link:hover {
  color: var(--red);
}
/* ============================================================
   LIVE BROADCAST WIDGET
   ============================================================ */
.live-section {
  padding: 80px 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
}
.live-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.live-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-3);
  cursor: pointer;
  border: 1px solid var(--border);
}
.live-player .thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease-out;
}
.live-player .thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.live-player:hover .thumb {
  transform: scale(1.04);
}
.live-player .badges {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--live);
  color: white;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.live-pill .dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
.viewers-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.live-player .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--easing);
  z-index: 2;
}
.live-player .play-button::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: ripple 2.4s ease-out infinite;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.live-player:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--red);
  color: white;
}
.live-player .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  z-index: 2;
}
.live-player .info h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.live-player .info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.schedule-list h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
  margin-bottom: 24px;
  font-weight: 600;
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding 0.25s;
}
.schedule-item:hover {
  padding-right: 8px;
}
.schedule-item .time {
  font-family: 'Neo Sans Arabic', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  min-width: 56px;
  letter-spacing: 0.02em;
}
.schedule-item .info {
  flex: 1;
}
.schedule-item h5 {
  font-size: 15px;
  margin-bottom: 3px;
  color: var(--text);
  transition: color 0.2s;
}
.schedule-item:hover h5 {
  color: var(--red);
}
.schedule-item .category {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.schedule-item .live-now {
  background: var(--live);
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
/* ============================================================
   ROWS â€” Horizontal carousels
   ============================================================ */
.row-section {
  padding: 50px 0;
}
.row {
  margin-bottom: 56px;
}
.row:last-child {
  margin-bottom: 0;
}
.row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.row-head h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.row-head h3 .accent {
  color: var(--red);
}
.row-scroll-wrap {
  position: relative;
}
.row-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 0 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.row-scroll::-webkit-scrollbar {
  display: none;
}
.poster-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s var(--easing);
}
.poster-card:hover {
  transform: translateY(-4px);
}
.poster-img {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  transition: all 0.4s var(--easing);
}
.poster-card:hover .poster-img {
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.9), 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.poster-img .visual {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease-out;
}
.poster-card:hover .visual {
  transform: scale(1.06);
}
.poster-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.poster-img .badge-top {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  z-index: 2;
}
.poster-img .badge-top.live {
  background: var(--live);
}
.poster-img .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.poster-card:hover .play-overlay {
  opacity: 1;
}
.poster-img .play-overlay div {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s var(--easing);
}
.poster-card:hover .play-overlay div {
  transform: scale(1);
}
.poster-img .title-overlay {
  position: absolute;
  bottom: 12px;
  right: 14px;
  left: 14px;
  z-index: 2;
  font-family: 'Neo Sans Arabic', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: white;
  line-height: 1.2;
}
.poster-info {
  padding: 12px 4px 0;
}
.poster-info h4 {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 600;
}
.poster-info .meta {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  gap: 10px;
  align-items: center;
}
.poster-info .meta span:not(:last-child)::after {
  content: 'Â·';
  margin-right: 10px;
  color: var(--text-4);
}
.scroll-btn {
  position: absolute;
  top: 0;
  bottom: 28px;
  width: 56px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 30%, transparent);
  border: none;
  color: white;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.row-scroll-wrap:hover .scroll-btn {
  opacity: 1;
}
.scroll-btn.next {
  right: 0;
}
.scroll-btn.prev {
  left: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.85) 30%, transparent);
}
.scroll-btn:hover svg {
  transform: scale(1.2);
}
.scroll-btn svg {
  transition: transform 0.2s;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.chip {
  padding: 8px 18px;
  background: var(--surface-2);
  border: 1px solid transparent;
  color: var(--text-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.chip:hover {
  background: var(--surface-3);
  color: var(--text);
}
.chip.active {
  background: white;
  color: black;
  font-weight: 600;
}
.poster-bg-1 {
  background: linear-gradient(135deg, #2a1f15 0%, #14100a 100%);
}
.poster-bg-2 {
  background: linear-gradient(135deg, #1a2230 0%, #0c1018 100%);
}
.poster-bg-3 {
  background: linear-gradient(135deg, #251a25 0%, #140c14 100%);
}
.poster-bg-4 {
  background: linear-gradient(135deg, #1a2520 0%, #0c1410 100%);
}
.poster-bg-5 {
  background: linear-gradient(135deg, #2a1818 0%, #180c0c 100%);
}
.poster-bg-6 {
  background: linear-gradient(135deg, #15252a 0%, #0a1418 100%);
}
.poster-bg-7 {
  background: linear-gradient(135deg, #25201a 0%, #14100a 100%);
}
.poster-bg-8 {
  background: linear-gradient(135deg, #1f1a25 0%, #100c18 100%);
}
/* ============================================================
   PODCASTS
   ============================================================ */
.podcasts-section {
  padding: 80px 0;
  background: var(--surface-1);
}
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.podcast-card {
  position: relative;
  padding: 36px 32px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--easing);
  border: 1px solid transparent;
}
.podcast-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(193, 82, 70, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.podcast-card:hover {
  background: var(--surface-3);
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.podcast-card:hover::before {
  opacity: 1;
}
.podcast-num {
  font-family: 'Neo Sans Arabic', sans-serif;
  font-size: 12px;
  color: var(--red);
  margin-bottom: 22px;
  letter-spacing: 0.12em;
  font-weight: 600;
  position: relative;
}
.podcast-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 22px;
}
.wave span {
  display: block;
  width: 3px;
  background: var(--red);
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite;
}
.wave span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}
.wave span:nth-child(2) {
  height: 80%;
  animation-delay: 0.15s;
}
.wave span:nth-child(3) {
  height: 100%;
  animation-delay: 0.3s;
}
.wave span:nth-child(4) {
  height: 60%;
  animation-delay: 0.45s;
}
.wave span:nth-child(5) {
  height: 30%;
  animation-delay: 0.6s;
}
@keyframes wave {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.4);
  }
}
.podcast-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.podcast-card p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 26px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.podcast-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: var(--text-3);
}
.podcast-meta b {
  color: var(--text);
  font-family: 'Neo Sans Arabic', sans-serif;
  font-weight: 600;
}
.podcast-listen {
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* ============================================================
   NEWS
   ============================================================ */
.news-section {
  padding: 100px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  min-height: 580px;
}
.news-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s var(--easing);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.news-card:hover {
  background: var(--surface-3);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.news-card.featured {
  grid-row: span 2;
  flex-direction: column;
}
.news-image {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
}
.news-card.featured .news-image {
  aspect-ratio: 16 / 10;
}
.news-card:not(.featured) .news-image {
  aspect-ratio: 16 / 9;
}
.news-image .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease-out;
}
.news-card:hover .bg {
  transform: scale(1.06);
}
.news-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}
.news-category {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--red);
  color: white;
  padding: 5px 11px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 2;
}
.news-content {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card.featured .news-content {
  padding: 28px 32px 32px;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.news-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.2s;
}
.news-card.featured h3 {
  font-size: 28px;
  line-height: 1.15;
}
.news-card:hover h3 {
  color: var(--red);
}
.news-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card.featured p {
  font-size: 15px;
  -webkit-line-clamp: 3;
}
.read-more {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  letter-spacing: 0.02em;
}
.news-card:hover .read-more {
  color: var(--red);
}
.view-all-wrap {
  text-align: center;
  margin-top: 48px;
}
/* ============================================================
   IMPACT NUMBERS
   ============================================================ */
.impact-section {
  padding: 80px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.impact-item {
  padding: 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.impact-item:last-child {
  border-right: none;
}
.impact-item .num {
  font-family: 'Neo Sans Arabic', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.impact-item .num .plus {
  font-size: 0.55em;
  color: var(--red);
  vertical-align: top;
  font-weight: 500;
}
.impact-item .label {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section {
  padding: 80px 0;
}
.partners-head {
  text-align: center;
  margin-bottom: 40px;
}
.partners-head h3 {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.partners-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.partners-track {
  display: flex;
  width: max-content;
  /* يمكنك تغيير رقم 30s لزيادة أو تقليل سرعة الشريط */
  animation: partners-scroll 40s linear infinite;
}

/* تعديل اتجاه الحركة ليناسب المواقع العربية RTL */
@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%); /* القيمة موجبة ليتحرك الشريط لليمين بشكل متصل */
  }
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  min-width: 100px;
  margin: 0 32px; 
  border-radius: 50%;
  overflow: hidden; 
  background: white; 
  border: 2px solid var(--border);
  transition: all 0.3s var(--easing);
  cursor: grab;
  /* هذا السطر مهم جداً لمنع الصور من الانضغاط وتشويه الدائرة */
  flex-shrink: 0; 
}
/* باقي التنسيقات كما هي */
.partner-logo:hover {
  transform: scale(1.1);
  border-color: var(--red);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.partner-logo:hover {
  transform: scale(1.1);
  border-color: var(--red);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 4px;
}
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #000;
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-mark {
  margin-bottom: 18px;
}
.footer-brand p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 360px;
}
.footer-col h5 {
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: 'Neo Sans Arabic', sans-serif;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-col .contact-item {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.55;
}
.footer-col .contact-item svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}
.social-row {
  display: flex;
  gap: 8px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
  transform: translateY(-2px);
}


.social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    overflow: visible;
    flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: var(--text-3);
}
.footer-bottom .legal {
  display: flex;
  gap: 22px;
}
.footer-bottom .legal a {
  color: var(--text-3);
  text-decoration: none;
}
.footer-bottom .legal a:hover {
  color: var(--text);
}
/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--easing), transform 0.85s var(--easing);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1) {
  transition-delay: 0s;
}
.reveal-stagger.visible > *:nth-child(2) {
  transition-delay: 0.07s;
}
.reveal-stagger.visible > *:nth-child(3) {
  transition-delay: 0.14s;
}
.reveal-stagger.visible > *:nth-child(4) {
  transition-delay: 0.21s;
}
.reveal-stagger.visible > *:nth-child(5) {
  transition-delay: 0.28s;
}
.reveal-stagger.visible > *:nth-child(6) {
  transition-delay: 0.35s;
}
.reveal-stagger.visible > *:nth-child(7) {
  transition-delay: 0.42s;
}
.reveal-stagger.visible > *:nth-child(8) {
  transition-delay: 0.49s;
}
/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(24px);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 80px 40px 40px;
}
.mobile-drawer.open {
  display: flex;
}
.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: 'Neo Sans Arabic', sans-serif;
  font-size: 22px;
  text-decoration: none;
  font-weight: 500;
}
.mobile-drawer .close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}
/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--easing);
  z-index: 80;
  box-shadow: 0 10px 30px -10px var(--red-glow);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--red-hover);
  transform: translateY(-3px);
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .container {
    padding: 0 32px;
  }
  .hero-slider {
    height: 80vh;
    min-height: 580px;
  }
  .live-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .news-card.featured {
    grid-column: span 2;
    grid-row: auto;
  }
  .podcasts-grid {
    grid-template-columns: 1fr;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-item:nth-child(2) {
    border-right: none;
  }
  .impact-item:nth-child(1), .impact-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .section, .row-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .nav-main {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .subscribe-btn {
    display: none;
  }
  .utility-bar .meta span:nth-child(2) {
    display: none;
  }
  .hero-slider {
    height: 88vh;
    min-height: 520px;
  }
  .slide-content {
    bottom: 18%;
  }
  .slide-content .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .slider-controls {
    bottom: 24px;
  }
  .indicator {
    width: 24px;
  }
  .indicator.active {
    width: 60px;
  }
  .slide-ctas {
    flex-wrap: wrap;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card.featured {
    grid-column: span 1;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .impact-item:last-child {
    border-bottom: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .poster-card {
    width: 230px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Ø¥Ø®ÙØ§Ø¡ Ø§Ù„ÙƒØªØ§Ø¨Ø© ÙˆØ§Ù„ØªØ¸Ù„ÙŠÙ„ Ø¹Ù† Ø§Ù„Ø´Ø±ÙŠØ­Ø© Ø§Ù„Ø£ÙˆÙ„Ù‰ ÙÙ‚Ø· */
/* .slide[data-index="0"] .slide-content,
.slide[data-index="0"] .slide-overlay {
    display: none !important;
} */
/* ØªÙ†Ø³ÙŠÙ‚ Ù…Ø´ØºÙ„ Ø§Ù„ÙŠÙˆØªÙŠÙˆØ¨ Ù„Ù…Ù„Ø¡ Ø§Ù„Ù…Ø³Ø§Ø­Ø© */
.yt-live-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ù„ÙŠÙƒÙˆÙ† Ø§Ù„ÙÙŠØ¯ÙŠÙˆ ØªØ­Øª Ø§Ù„Ù†ØµÙˆØµ ÙˆØ§Ù„Ø´Ø§Ø±Ø§Øª */
}
/* ØªØ¹Ø¯ÙŠÙ„ Ø¹Ù„Ù‰ Ø§Ù„Ù†ØµÙˆØµ Ø§Ù„Ø³ÙÙ„ÙŠØ© Ù„ÙƒÙŠ Ù„Ø§ ØªÙ…Ù†Ø¹ Ø§Ù„Ù†Ù‚Ø± Ø¹Ù„Ù‰ Ø£Ø²Ø±Ø§Ø± Ø§Ù„ÙŠÙˆØªÙŠÙˆØ¨ */
.live-player .info {
  pointer-events: none; /* ÙŠØ³Ù…Ø­ Ø¨Ù…Ø±ÙˆØ± Ø§Ù„Ù†Ù‚Ø±Ø§Øª Ù„Ù„ÙÙŠØ¯ÙŠÙˆ Ø£Ø³ÙÙ„Ù‡ */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%); /* Ø¶Ù…Ø§Ù† ÙˆØ¶ÙˆØ­ Ø§Ù„Ù†Øµ */
}
/* Ø¥Ù„ØºØ§Ø¡ ØªÙØ¹ÙŠÙ„ Ø§Ù„Ù†Ù‚Ø±Ø§Øª Ù„Ù„Ø´Ø§Ø±Ø§Øª Ù„Ø¹Ø¯Ù… Ø§Ù„ØªØ¯Ø§Ø®Ù„ Ù…Ø¹ Ø§Ù„ÙŠÙˆØªÙŠÙˆØ¨ */
.live-player .badges {
  pointer-events: none;
}
/* Ù†Ù‚Ù„ Ø´Ø§Ø±Ø© Ø§Ù„Ø¨Ø« Ø§Ù„Ù…Ø¨Ø§Ø´Ø± (LIVE) Ø¥Ù„Ù‰ Ø§Ù„Ø¬Ù‡Ø© Ø§Ù„ÙŠØ³Ø±Ù‰ */
.live-player .badges {
  right: auto !important; /* Ø¥Ù„ØºØ§Ø¡ Ø§Ù„ØªÙ…ÙˆØ¶Ø¹ Ù…Ù† Ø§Ù„ÙŠÙ…ÙŠÙ† */
  left: 16px !important; /* ØªØ«Ø¨ÙŠØª Ø§Ù„Ø´Ø§Ø±Ø© Ø¹Ù„Ù‰ Ø§Ù„ÙŠØ³Ø§Ø± */
}
/* ØªÙƒØ¨ÙŠØ± Ø­Ø¬Ù… Ø®Ø· Ø¹Ø¨Ø§Ø±Ø© "Ø¹Ù„Ù‰ Ø§Ù„Ù‡ÙˆØ§Ø¡ Ø§Ù„Ø¢Ù†" ÙˆØ§Ù„Ø¹Ø¨Ø§Ø±Ø§Øª Ø§Ù„Ù…Ø´Ø§Ø¨Ù‡Ø© Ù„Ù‡Ø§ */
.section-head .eyebrow {
  font-size: 20px !important;
}
/* ØªÙ†Ø³ÙŠÙ‚Ø§Øª Ø§Ù„Ù…Ø´ØºÙ„ Ø§Ù„Ù…Ù†Ø¨Ø«Ù‚ (Video Popup) */
.video-modal {
  display: none; /* Ù…Ø®ÙÙŠ Ø§ÙØªØ±Ø§Ø¶ÙŠØ§Ù‹ */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9999; /* Ù„ÙŠÙƒÙˆÙ† ÙÙˆÙ‚ Ø§Ù„Ù‡ÙŠØ¯Ø± ÙˆÙƒÙ„ Ø´ÙŠØ¡ */
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.active {
  display: flex; /* Ø¥Ø¸Ù‡Ø§Ø± Ø¹Ù†Ø¯ Ø§Ù„Ù†Ù‚Ø± */
}
.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.close-video:hover {
  color: var(--red);
}
.iframe-container {
  position: relative;
  padding-bottom: 56.25%; /* Ù†Ø³Ø¨Ø© Ø§Ù„Ø¹Ø±Ø¶ Ù„Ù„Ø§Ø±ØªÙØ§Ø¹ 16:9 Ù„ÙÙŠØ¯ÙŠÙˆÙ‡Ø§Øª ÙŠÙˆØªÙŠÙˆØ¨ */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ØªÙ†Ø³ÙŠÙ‚ Ø±Ø§Ø¨Ø· (Ø´Ø§Ù‡Ø¯ Ø¬Ù…ÙŠØ¹ Ø§Ù„Ø­Ù„Ù‚Ø§Øª) Ø£Ø³ÙÙ„ Ø§Ù„Ø¨Ø·Ø§Ù‚Ø§Øª */
.playlist-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #ffffff; /* Ø§Ù„Ù„ÙˆÙ† Ø§Ù„Ø£Ø¨ÙŠØ¶ Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠ */
  text-decoration: none;
  font-weight: 600;
  margin-top: 4px;
  transition: color 0.2s ease-in-out; /* Ø­Ø±ÙƒØ© Ù†Ø§Ø¹Ù…Ø© Ù„ØªØºÙŠÙŠØ± Ø§Ù„Ù„ÙˆÙ† */
  position: relative;
  z-index: 10; /* Ù„Ø¶Ù…Ø§Ù† Ù‚Ø§Ø¨Ù„ÙŠØªÙ‡ Ù„Ù„Ø¶ØºØ· ÙˆØ¹Ø¯Ù… Ø§Ù„ØªØ¯Ø§Ø®Ù„ Ù…Ø¹ Ø§Ù„Ø¨Ø·Ø§Ù‚Ø© */
}
/* Ø§Ù„Ù„ÙˆÙ† Ø¹Ù†Ø¯ ÙˆÙ‚ÙˆÙ Ø§Ù„Ù…Ø§ÙˆØ³ Ø¹Ù„Ù‰ Ø§Ù„Ø±Ø§Ø¨Ø· */
.playlist-link:hover {
  color: var(--red); /* ÙŠØªØ­ÙˆÙ„ Ø¥Ù„Ù‰ Ù„ÙˆÙ† Ù‡ÙˆÙŠØ© Ø§Ù„Ù…ÙˆÙ‚Ø¹ (Ø§Ù„Ø¨Ø±ØªÙ‚Ø§Ù„ÙŠ/Ø§Ù„Ø£Ø­Ù…Ø±) */
}
/* ============================================================
   ØªÙ†Ø³ÙŠÙ‚ Ø²Ø± Ù…Ø´Ø§Ø±ÙƒØ© Ø§Ù„Ø£Ø®Ø¨Ø§Ø± (Share Button)
   ============================================================ */
.share-btn {
  background: transparent;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
}
.share-btn:hover {
  color: var(--red);
  background: rgba(193, 82, 70, 0.1);
  transform: scale(1.1);
}
/* ============================================================
   ØªÙ†Ø³ÙŠÙ‚Ø§Øª ØµÙØ­Ø© ÙƒÙ„ Ø§Ù„Ø£Ø®Ø¨Ø§Ø± (Ø§Ù„Ø£Ø±Ø´ÙŠÙ) - ØªÙˆØ­ÙŠØ¯ Ø§Ù„Ø­Ø¬Ù… ÙˆØ§Ù„Ø£Ù†ÙŠÙ…ÙŠØ´Ù†
   ============================================================ */
/* 1. Ø¶Ø¨Ø· Ø§Ù„Ø´Ø¨ÙƒØ© Ù„ØªÙƒÙˆÙ† Ù…ØªØ³Ø§ÙˆÙŠØ© ÙˆÙ…ØªØ¬Ø§ÙˆØ¨Ø© */
.page-news .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch; /* ØªÙˆØ­ÙŠØ¯ Ø§Ù„Ø§Ø±ØªÙØ§Ø¹ Ø§Ù„ØªÙ„Ù‚Ø§Ø¦ÙŠ Ù„Ø¬Ù…ÙŠØ¹ Ø§Ù„ØµÙ†Ø§Ø¯ÙŠÙ‚ ÙÙŠ Ù†ÙØ³ Ø§Ù„ØµÙ */
}
/* 2. ØªÙˆØ­ÙŠØ¯ Ø­Ø¬Ù… Ø§Ù„Ø¨Ø·Ø§Ù‚Ø§Øª ÙˆØ¥Ø¶Ø§ÙØ© Ø­Ø±ÙƒØ© (Ø£Ù†ÙŠÙ…ÙŠØ´Ù†) Ø§Ù„Ø¯Ø®ÙˆÙ„ */
.page-news .news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: fadeUpCard 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  border: 1px solid var(--border-strong);
}
/* 3. ØªØ£Ø«ÙŠØ± Ø§Ù„Ø¨Ø±ÙˆØ² ÙˆØ§Ù„Ù„Ù…Ø¹Ø§Ù† Ø§Ù„ØªÙØ§Ø¹Ù„ÙŠ Ø¹Ù†Ø¯ ØªÙ…Ø±ÙŠØ± Ø§Ù„Ù…Ø§ÙˆØ³ */
.page-news .news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--red);
  z-index: 2;
}
/* 4. ØªØ«Ø¨ÙŠØª Ø£Ø¨Ø¹Ø§Ø¯ ØµÙˆØ± Ø§Ù„Ø£Ø®Ø¨Ø§Ø± Ù„ØªÙØ§Ø¯ÙŠ Ø§Ù„Ø¹Ø´ÙˆØ§Ø¦ÙŠØ© */
.page-news .news-image {
  height: 220px;
  flex-shrink: 0;
}
/* 5. Ø¯ÙØ¹ Ù…Ù†Ø·Ù‚Ø© Ø§Ù„Ø£Ø²Ø±Ø§Ø± ÙˆØ§Ù„Ù…Ø´Ø§Ø±ÙƒØ© Ù„Ù„Ø£Ø³ÙÙ„ Ø¨Ø§Ù„ØªØ³Ø§ÙˆÙŠ */
.page-news .news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
/* 6. ØªÙˆØ­ÙŠØ¯ Ø£Ø³Ø·Ø± Ø§Ù„Ø¹Ù†Ø§ÙˆÙŠÙ† (Ø³Ø·Ø±ÙŠÙ† ÙƒØ­Ø¯ Ø£Ù‚ØµÙ‰) Ù„Ø¬Ù…Ø§Ù„ÙŠØ© Ø§Ù„Ù…Ø­Ø§Ø°Ø§Ø© */
.page-news .news-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px; /* ÙŠÙ…Ù†Ø¹ Ø§Ø®ØªÙ„Ø§Ù„ Ø§Ù„ØªÙˆØ§Ø²Ù† Ø¥Ø°Ø§ ÙƒØ§Ù† Ø§Ù„Ø¹Ù†ÙˆØ§Ù† Ù…Ù† Ø³Ø·Ø± ÙˆØ§Ø­Ø¯ */
  margin-bottom: 12px;
}
/* 7. ØªÙˆØ­ÙŠØ¯ Ø·ÙˆÙ„ Ø£Ø³Ø·Ø± Ø§Ù„ÙˆØµÙ (3 Ø£Ø³Ø·Ø± ÙƒØ­Ø¯ Ø£Ù‚ØµÙ‰) */
.page-news .news-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 24px;
}
/* 8. Ø£Ù†ÙŠÙ…ÙŠØ´Ù† ØµØ¹ÙˆØ¯ Ø§Ù„Ø¨Ø·Ø§Ù‚Ø§Øª Ø§Ù„Ù…Ù†Ø³Ø§Ø¨ */
@keyframes fadeUpCard {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* ============================================================
   ØªÙ†Ø³ÙŠÙ‚ Ø²Ø± Ù…Ø´Ø§Ø±ÙƒØ© Ø§Ù„Ø£Ø®Ø¨Ø§Ø± (Share Button)
   ============================================================ */
.share-btn {
  background: transparent;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
}
.share-btn:hover {
  color: var(--red);
  background: rgba(193, 82, 70, 0.1);
  transform: scale(1.1);
}

/* ============================================================
   ??????? ???? ????? ????? (Single News)
   ============================================================ */
.single-article-section .container {
  max-width: 900px; /* ????? ??????? ????? ????? ?? ??????? */
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-header .news-category {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.article-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  margin-bottom: 24px;
}

.article-meta-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--text-3);
  font-size: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.article-meta-share span {
  display: flex;
  gap: 10px;
}

.article-featured-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ????? ?????? ???? ????? ???? ?????? ???????? */
.article-content {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-2);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2, .article-content h3 {
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-content img {
  border-radius: var(--radius);
  margin: 30px 0;
  max-width: 100%;
  height: auto;
}


/* ============================================================
   تمييز برنامج البث المباشر الحالي في الجدول
   ============================================================ */
.schedule-item.active-live {
  background-color: rgba(193, 82, 70, 0.1); /* تظليل أحمر خفيف جداً */
  border-right: 3px solid var(--red); /* خط أحمر جانبي أنيق */
  padding-right: 15px; /* إبعاد النص عن الخط قليلاً */
  border-radius: 6px; /* زوايا ناعمة */
  margin: 5px 0; /* مسافة بسيطة لكي يبرز السطر عن البقية */
  transition: all 0.3s ease; /* حركة ناعمة عند انتقاله للبرنامج التالي */
}

/* تعديل بسيط لضمان عدم تداخل مسافات السطر العادي مع السطر المظلل */
.schedule-item {
  padding: 10px 0;
  border-right: 3px solid transparent; 
}

/* ============================================================
   إخفاء الزر الثاني (المزيد من المعلومات) فقط مع الحفاظ على (شاهد الآن)
   ============================================================ */
.hero-slider .slides-wrap a:nth-child(2),
.hero-slider .slides-wrap button:nth-child(2) {
  display: none !important;
}

/* ============================================================
   تنسيق شبكة صفحة "كل البرامج" (عرض أفقي متجاور)
   ============================================================ */
.programs-grid-page {
  display: grid !important;
  /* عرض الكروت بجانب بعضها، بعرض 280 بكسل كحد أدنى لكل كرت */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 30px !important;
  align-items: start;
}

.programs-grid-page .poster-card {
  width: 100% !important; /* إجبار الكرت على الالتزام بحجم الشبكة */
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  height: 100%; /* لجعل جميع الكروت بنفس الطول تقريباً */
}

/* تعديل بسيط للصورة داخل الكرت لتبدو متناسقة في الشبكة */
.programs-grid-page .poster-img {
  width: 100% !important;
  aspect-ratio: 16 / 9; /* الحفاظ على أبعاد الصورة التلفزيونية */
}

/* ============================================================
   تنسيق شبكة صفحة "كل البرامج" (عرض أفقي متجاور)
   ============================================================ */
.programs-grid-page {
  display: grid !important;
  /* عرض الكروت بجانب بعضها، بعرض 280 بكسل كحد أدنى لكل كرت */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 30px !important;
  align-items: start;
}

.programs-grid-page .poster-card {
  width: 100% !important; /* إجبار الكرت على الالتزام بحجم الشبكة */
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  height: 100%; /* لجعل جميع الكروت بنفس الطول تقريباً */
}

/* تعديل بسيط للصورة داخل الكرت لتبدو متناسقة في الشبكة */
.programs-grid-page .poster-img {
  width: 100% !important;
  aspect-ratio: 16 / 9; /* الحفاظ على أبعاد الصورة التلفزيونية */
}