/* تخصيصات إضافية فوق Tailwind */
body {
    scroll-behavior: smooth;
}
.hero-gradient {
    background: linear-gradient(135deg, #1306ad 0%, #3131c1 100%);
}
.glass-nav {
    backdrop-filter: blur(20px);
    background-color: rgba(250, 249, 255, 0.8);
}
.ambient-shadow {
    box-shadow: 0 10px 30px -5px rgba(25, 27, 35, 0.04), 0 20px 60px -10px rgba(25, 27, 35, 0.08);
}
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}
/* تنسيق التقييم بنجمة */
.rating-star {
    cursor: pointer;
    transition: color 0.2s;
}
.rating-star:hover,
.rating-star.active {
    color: #f5b301 !important;
}
/* تنسيق شريط التمرير */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}