/* Base styles */
:root {
    --primary: #0070f3;
}

.gradient-bg {
    background: linear-gradient(to right, var(--primary), #00ff95);
}

.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        padding-top: 75%; /* 4:3 for mobile */
    }
}
