/* Style 1: Modern Card Design */
.video-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    transition: transform 0.3s ease;
}


.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Style 2: Gradient Border */
.gradient-border {
    padding: 4px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 15px;
    margin: 5rem 20rem 0 20rem;
    /*8rem 20rem 2rem 20rem*/
    animation: gradient-rotate 3s ease infinite;
}

.gradient-border .video-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Style 3: Glassmorphism */
.glass-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

/* Style 4: Neon Glow */
.neon-video {
    position: relative;
    margin: 2rem 0;
}

.neon-video .video-wrapper {
    border-radius: 10px;
    box-shadow:
        0 0 20px #00ffff,
        0 0 40px #00ffff,
        0 0 60px #00ffff;
    animation: neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    from {
        box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff;
    }

    to {
        box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    }
}

/* Style 5: Floating with Shadow */
.floating-video {
    margin: 2rem 0;
    animation: float 3s ease-in-out infinite;
}

.floating-video .video-wrapper {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Style 6: Minimalist with Accent */
.minimalist-video {
    position: relative;
    margin: 2rem 0;
}

.minimalist-video::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    z-index: -1;
}

.minimalist-video .video-wrapper {
    border-radius: 15px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
    .gradient-border {
        margin: 6rem;
    }
}

@media (max-width: 500px) {
    .gradient-border {
        margin: 3rem 2rem 0;
    }
}

.parent-div {
    padding: 2rem 0;
    background-image:
        url('../img/Ellipse\ 14.png'),
        url('../img/Group\ 133.png');
    background-repeat: no-repeat, no-repeat;
    background-size: 200px 200px;
    /* First image: 200x200px, second image: 100% width, 50% height */
    background-position: top left, bottom right;
    /* Position each image */
}