 /* Modal Video */
    .video-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .modal-container {
        position: relative;
        width: 90%;
        max-width: 900px;
        height: 80vh;
        margin: 10vh auto;
    }

    .close-btn {
        position: absolute;
        top: -40px;
        right: 0;
        color: white;
        font-size: 30px;
        cursor: pointer;
        z-index: 10000;
    }

    .video-wrapper {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    }

    #youtubeIframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Play Icon */
    .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        background: rgba(0, 0, 0, 0.6);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .video-preview-container:hover .play-icon {
        background: rgba(255, 0, 0, 0.8);
        transform: translate(-50%, -50%) scale(1.1);
    }

    @media (max-width: 768px) {
        .modal-container {
            width: 95%;
            height: auto;
            margin: 20px auto;
        }

        .close-btn {
            top: -30px;
            font-size: 25px;
        }
    }
