/* ==================================================
   HANA ACADEMY - FULL CSS (DARK + DRIVE BLOCK + WATERMARK) - FIXED
   ================================================== */

:root {
  --primary: #181818;
  --secondary: #00FF7F;
  --card-bg: #242424;
  --text-color: #F0F0F0;
}

/* =========================
   0) استثناءات مهمة (عشان CSS ما يخرب عناصر بصرية)
   ========================= */
/* لا تفرض خلفية على عناصر الوسائط */
body :is(img, picture, video, canvas, svg, object, embed, iframe) {
  background-color: transparent !important;
}
/* روابط/أيقونات أحيانًا تكون داخل عناصر عليها خلفيات خاصة */
body :is(svg, svg *, img) {
  color: inherit !important;
}

/* 1) التنسيق العام واللون الفحمي (مثل كودك) */
body,
body *,
.page-wrapper,
#app,
.main-content,
.container-fluid,
div[class*="header"],
section[class*="section"] {
  background-color: var(--primary) !important;
  color: var(--text-color) !important;
}

/* 2) إخفاء حقوق "صنع بإتقان في سلة" وأي عناصر زائدة */
footer > div:last-child,
.footer-copyright,
.salla-credit,
.testimonials-section,
.payment-methods,
header .search-bar,
.review-card {
  display: none !important;
}

/* 3) حماية المحتوى (خفيفة) */
body {
  user-select: none !important;
  -webkit-user-select: none !important;
}

/* 4) الهيدر والفوتر */
header,
#header,
.navbar,
footer {
  background-color: var(--card-bg) !important;
  border-bottom: 1px solid var(--secondary) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  color: var(--text-color) !important;
}

/* 5) الأكاديمية */
.academy-dashboard {
  display: flex;
  gap: 20px;
  flex-direction: row-reverse;
}

.lessons-sidebar {
  width: 380px;
  max-width: 100%;
  background: var(--card-bg) !important;
  border: 1px solid rgba(0, 255, 127, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.main-viewer {
  flex: 1;
  min-width: 0;
}

@media (max-width: 850px) {
  .academy-dashboard {
    flex-direction: column !important;
  }
  .main-viewer {
    order: 1;
    margin-bottom: 20px;
  }
  .lessons-sidebar {
    order: 2;
    width: 100%;
    max-height: 350px;
  }
}

/* 6) مشغل الفيديو */
.player-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000 !important;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--secondary);
  display: block !important;
}

/* iframe */
.player-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  z-index: 5;
  background: #000 !important;
}

/* 6.1) منع الضغط على علامة Google Drive أعلى اليمين */
.player-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 85px;
  z-index: 9999;
  background: transparent;
  pointer-events: auto;
}

/* 6.2) Watermark قوية فوق الفيديو */
.video-watermark {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
}

.video-watermark .wm {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: rgba(240, 240, 240, 0.92) !important;