        .exploded-gallery { font-family: Segoe UI, sans-serif; }
        .exploded-main iframe {
            width: 85%;
            height: 600px;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .exploded-thumbs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .exploded-thumb {
            width: 180px;
            height: 120px;
            border: 1px solid #000 ;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            transition: border 0.2s, box-shadow 0.2s;
        }
        .exploded-thumb.active {
            border: 2px solid #c0392b ;

            
        }
        .exploded-thumb iframe {
            width: 100%;
            height: 100%;
            pointer-events: none;
            border: none;
        } 