/* Video Player Styles */
.video-container {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.video-container h3 {
    margin: 0 0 16px 0;
    color: #1f2937;
}

.video-container video {
    background: #000;
    display: block;
    margin: 0 auto;
}

/* Download Section */
.download-section {
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}

.download-section h3 {
    margin: 0 0 16px 0;
    color: #166534;
}

.download-note {
    margin-top: 12px;
    color: #166534;
    font-size: 14px;
}

/* Progress Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-content h3 {
    margin: 0 0 24px 0;
    color: #1f2937;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 24px;
    font-weight: bold;
    color: #6366f1;
    margin: 12px 0;
}

.progress-info {
    color: #6b7280;
    font-size: 14px;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .video-container,
    .download-section {
        padding: 16px;
    }
    
    .modal-content {
        padding: 24px;
    }
}
