/* Add custom CSS styles below */ 
/* ===== مربعات الأقسام - Soccer Pro ===== */

.soccer-category-cards {
    width: 100% !important;
}

/* المربع */
.soccer-category-cards a {
    border: 3px solid #222 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: block !important;
    background: #fff !important;
    transition: all 0.25s ease !important;
}

/* الصورة */
.soccer-category-cards img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* المسافة بين المربعات */
.soccer-category-cards .swiper-slide {
    padding: 7px !important;
}

/* عند تمرير الماوس */
.soccer-category-cards a:hover {
    border-color: #ff7f01 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 7px 18px rgba(0,0,0,0.15) !important;
}

/* اللابتوب والكمبيوتر */
@media (min-width: 1024px) {
    .soccer-category-cards .swiper-slide {
        padding: 8px !important;
    }
}

/* الجوال */
@media (max-width: 767px) {
    .soccer-category-cards a {
        border-width: 2px !important;
        border-radius: 12px !important;
    }

    .soccer-category-cards .swiper-slide {
        padding: 5px !important;
    }
}