```css
/* Add custom CSS styles below */ 

/* =========================================================
   1) PLUSPASSTV Blog Articles only
   اللينكات داخل نص المقال فقط
   - body#app فيه class="blog-single"
   - المحتوى داخل .main-content.blog-category > article
========================================================= */

#app.blog-single .main-content.blog-category > article a[href],
#app.blog-single .main-content.blog-category > article a[href] *{
  color: #ff0000 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

/* إزالة أي underline / bottom line من لينكات المقال */
#app.blog-single .main-content.blog-category > article a[href]{
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

#app.blog-single .main-content.blog-category > article a[href]:hover{
  opacity: 0.85;
}


/* =========================================================
   2) PLUSPASSTV Product Pages only
   اللينكات داخل وصف المنتج فقط
   - body#app فيه class="product-single"
   - الوصف داخل .product__description و #more-content
========================================================= */

#app.product-single .product__description #more-content a[href],
#app.product-single .product__description #more-content a[href] *{
  color: #ff0000 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

/* إزالة أي underline / bottom line من لينكات وصف المنتج */
#app.product-single .product__description #more-content a[href]{
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

#app.product-single .product__description #more-content a[href]:hover{
  opacity: 0.85;
}
```