/* بخش دو ویدیو کنار هم */
.videos-section {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 15px;
}

.videos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.video-card {
    flex: 1;
    min-width: 300px;
    max-width: calc(50% - 15px);
    background: #ffffff1f;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* عنوان ویدیو */
.video-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    padding: 15px 20px 10px;
    margin: 0;
    text-align: center;
}

/* محفظه ویدیو */
.video-wrapper {
    position: relative;
    background: #000;
    padding-bottom: 56.25%; /* نسبت ابعاد 16:9 */
    height: 0;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* توضیحات ویدیو */
.video-description {
    padding: 15px 20px;
    color: #000;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* دکمه دانلود */
.download-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.download-btn i {
    margin-left: 8px;
}

.download-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46a0 100%);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

/* حالت واکنش‌گرا */
@media (max-width: 768px) {
    .videos-row {
        flex-direction: column;
    }
    
    .video-card {
        max-width: 100%;
    }
    
    .video-title {
        font-size: 1.2rem;
    }
}