/* ===== تصميم الكمبيوتر الاحترافي ===== */

/* للشاشات الكبيرة فقط */
@media (min-width: 1024px) {
    /* ===== MOVIE GRID للكمبيوتر ===== */
    .movies-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 25px;
        padding: 40px;
    }
    
    .movie-card {
        background: #1a1a1a;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        aspect-ratio: 2/3;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .movie-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(229,9,20,0.3);
    }
    
    .movie-poster {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .movie-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        padding: 15px;
        transform: translateY(100%);
        transition: all 0.3s ease;
    }
    
    .movie-card:hover .movie-info {
        transform: translateY(0);
    }
    
    .movie-title {
        color: white;
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 16px;
    }
    
    .movie-year {
        color: #ccc;
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .movie-rating {
        background: #e50914;
        color: white;
        padding: 3px 6px;
        border-radius: 4px;
        font-size: 10px;
        font-weight: bold;
    }
    
    .watch-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(229,9,20,0.9);
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 5px;
        font-size: 11px;
        cursor: pointer;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .movie-card:hover .watch-btn {
        opacity: 1;
    }
}
