 
        /* Overlay background */
        #overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 400px;
            background: rgba(0,0,0,0.6);
            z-index: 9998;
        }

        /* Popup box */
        #popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 10px;
            padding: 15px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
            z-index: 9999;
            text-align: center;
        }

  
/* Video responsive - reduced height */
#popup video {
    width: 100%;
    max-height: 400px; /* Limit height so title & close button are visible */
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover; /* Keeps video aspect ratio without distortion */
}

        /* Button & link styling */
        #popup a {
            display: inline-block;
            margin-top: 10px;
            padding: 10px 15px;
            background: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
        }

        #popup a:hover {
            background: #0056b3;
        }

        #popup button {
            margin-top: 10px;
            padding: 8px 12px;
            background: #777;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        #popup button:hover {
            background: #555;
        }
 