 @media (max-width: 767px) {
        .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    .line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .reveal-ui { opacity: 0; transform: translateY(20px); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
    .reveal-ui.active { opacity: 1; transform: translateY(0); }
    .font-mono{
          font-family:Cairo,sans-serif;
    }


        /* الإعدادات الأساسية لضمان الفخامة */
        body {
            background-color: #16171a;
        }

        /* إخفاء شريط التمرير مع الحفاظ على السحب */
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }

        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* أنيميشن الظهور التدريجي (Reveal UI) */
        .reveal-ui {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .reveal-ui.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* تأثير ضغطة الأزرار */
        .btn-action:active {
            transform: scale(0.96);
        }

        body.modal-open {
            overflow: hidden;
        }

        /* تخصيصات القوائم الأنيقة */
        .spec-list-item::before {
            content: '';
            position: absolute;
            top: 10px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #e30613;
        }