 .custom-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .custom-modal-content {
            width: 90%;
            max-width: 1200px;
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .custom-modal-content iframe {
            width: 100%;
            height: 70vh;
            max-height: 800px;
            display: block;
        }

        .custom-close {
            position: fixed;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: white;
            background: rgba(0, 0, 0, 0.6);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            line-height: 1;
            transition: background 0.3s, transform 0.2s;
        }

        .custom-close:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }


        @media (max-width: 768px) {
            .custom-modal-content iframe {
                height: 50vh;
            }

            .custom-close {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 2rem;
            }
        }