/* 1️⃣ تحسين CLS - منع تغييرات التخطيط المفاجئة */
img, video {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* منع تغييرات التخطيط بسبب الإعلانات */
.ad-banner {
  min-height: 250px;
  display: block;
}

/* 2️⃣ تحسين FCP - تحميل الخطوط بذكاء */
@font-face {
  font-family: 'CustomFont';
  src: url('font.woff2') format('woff2');
  font-display: swap;
}

/* 3️⃣ تحسين SEO */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

body {
  font-display: swap;
  overflow-x: hidden;
}

/* 4️⃣ تحسين ظهور الصور في Google Image */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 5️⃣ تحسين الروابط */
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  color: #007bff;
}

/* 6️⃣ تحسين تجربة المستخدم في الأقسام */
.category-card img {
  transition: transform 0.3s ease-in-out;
}
.category-card:hover img {
  transform: scale(1.05);
}

h1.index-title{
  display: none !important;
}