/* YouTube Video Section Styles */
.youtube-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0e1b2b 0%, #00375c 100%);
    position: relative;
    overflow: hidden;
}

.youtube-video-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.youtube-video-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.youtube-video-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.youtube-video-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.youtube-video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.youtube-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .youtube-video-section {
        padding: 60px 0;
    }

    .youtube-video-header h2 {
        font-size: 2rem;
    }

    .youtube-video-header p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .youtube-video-wrapper {
        padding: 0 15px;
    }

    .youtube-video-container {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .youtube-video-section {
        padding: 40px 0;
    }

    .youtube-video-header h2 {
        font-size: 1.75rem;
    }

    .youtube-video-header {
        margin-bottom: 30px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
