/* الكلاسات الجديدة لضمان عدم التعارض */
.vps-new-grid {
    display: grid !important;
    grid-template-columns: repeat(var(--vps-cols, 4), 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
}

.vps-new-item {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    aspect-ratio: 9 / 16 !important;
    background: #000 !important;
}

.vps-new-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.vps-new-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%) !important;
    z-index: 99 !important;
    pointer-events: none !important;
}

.vps-new-content {
    width: 100% !important;
    z-index: 100 !important;
    pointer-events: auto !important;
    text-align: center !important;
}

.vps-new-title {
    font-size: 1.2rem;
    margin-bottom: 5px !important;
    font-weight: bold !important;
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
}

.vps-new-price {
    font-size: 1rem;
    margin-bottom: 15px !important;
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
}

.vps-new-button {
    display: inline-block !important;
    padding: 10px 15px !important;
    background: #fff !important;
    color: #000 !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    width: 100% !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    text-align: center !important;
}

@media (max-width: 768px) {
    .vps-new-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .vps-new-overlay { padding: 10px !important; }
    .vps-new-title { font-size: 0.95rem !important; }
    .vps-new-price { font-size: 0.85rem !important; }
    .vps-new-button { padding: 8px 10px !important; font-size: 0.8rem !important; }
}
