/* ============================================
   إصلاح صفحة البطاقات على الجوال
   Cards Page Mobile Fix
   ============================================ */

@media (max-width: 768px) {
    /* تقليل حجم قائمة البطاقات */
    .games-list-tile {
        padding: 0.5rem 0 !important;
        margin-top: 0.75rem !important;
    }
    
    .games-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: clamp(0.5rem, 1.5vw, 0.75rem) !important;
        padding: 0 !important;
    }
    
    /* تقليل حجم بطاقات البطاقات */
    .game-item {
        border-radius: clamp(10px, 2.5vw, 12px) !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .game-img-box {
        height: clamp(80px, 20vw, 100px) !important;
        min-height: clamp(80px, 20vw, 100px) !important;
        border-radius: clamp(10px, 2.5vw, 12px) 0 0 0 !important;
    }
    
    .game-img-box i {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
    }
    
    .game-label {
        font-size: clamp(0.65rem, 1.8vw, 0.75rem) !important;
        padding: clamp(0.2rem, 0.6vw, 0.3rem) clamp(0.4rem, 1.2vw, 0.5rem) !important;
        border-radius: clamp(8px, 2vw, 10px) !important;
    }
    
    .game-label i {
        font-size: clamp(0.6rem, 1.6vw, 0.7rem) !important;
    }
    
    .game-label span {
        font-size: clamp(0.6rem, 1.6vw, 0.7rem) !important;
    }
    
    .game-name {
        padding: clamp(0.4rem, 1.2vw, 0.5rem) !important;
        min-height: auto !important;
    }
    
    .game-name-text {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem) !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    /* تقليل حجم عنوان القسم */
    .section-title-box {
        margin-top: clamp(0.75rem, 2vw, 1rem) !important;
        margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem) !important;
    }
    
    .section-title {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem) !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .games-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: clamp(0.4rem, 1.2vw, 0.6rem) !important;
    }
    
    .game-img-box {
        height: clamp(70px, 18vw, 90px) !important;
        min-height: clamp(70px, 18vw, 90px) !important;
    }
    
    .game-img-box i {
        font-size: clamp(1.3rem, 3.5vw, 1.7rem) !important;
    }
    
    .game-name-text {
        font-size: clamp(0.65rem, 1.6vw, 0.75rem) !important;
    }
    
    .section-title {
        font-size: clamp(1rem, 3.2vw, 1.2rem) !important;
    }
}

@media (max-width: 360px) {
    .games-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
    }
    
    .game-img-box {
        height: 65px !important;
        min-height: 65px !important;
    }
    
    .game-img-box i {
        font-size: 1.2rem !important;
    }
    
    .game-name-text {
        font-size: 0.65rem !important;
    }
}

























