:root {
    --primary: #ab151f;
    --white: #ffffff;
}

.cyvc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    direction: rtl;
}

.cyvc-large { grid-column: span 3; }
.cyvc-small { grid-column: span 2; }

@media (max-width: 768px) {
    .cyvc-large, .cyvc-small { grid-column: span 6; }
}

.cyvc-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.cyvc-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.cyvc-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* تأثير الهوفر على الصورة */
.cyvc-card:hover .cyvc-thumb {
    transform: scale(1.05);
}

/* الطبقة الشفافة */
.cyvc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    pointer-events: none;
}

.cyvc-title {
    color: var(--white);
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* زر التشغيل */
.cyvc-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.cyvc-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 5px;
    transition: all 0.3s ease;
}

.cyvc-card:hover .cyvc-play-btn {
    background: var(--primary);
    border-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.15);
    /* تم تعديل الظل ليكون أحمر بدلاً من الأخضر */
    box-shadow: 0 0 20px rgba(171, 21, 31, 0.6);
}

/* إخفاء الأجزاء عند تشغيل الفيديو */
.cyvc-card.is-playing .cyvc-thumb,
.cyvc-card.is-playing .cyvc-overlay,
.cyvc-card.is-playing .cyvc-play-btn {
    display: none;
}

.cyvc-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* الترقيم */
.cyvc-pagination { text-align: center; margin-top: 20px; }
.cyvc-pagination a, .cyvc-pagination span {
    padding: 10px 18px;
    margin: 0 5px;
    background: #f1f1f1;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
}
.cyvc-pagination span.current {
    background: var(--primary);
    color: var(--white);
}