/* Simple gallery modal */
.gallery-modal{position:fixed;inset:0;background:rgba(0,0,0,.9);display:none;align-items:center;justify-content:center;z-index:2000;flex-direction:column}
.gallery-modal.active{display:flex}
.gallery-content{background:#111;color:#fff;border-radius:10px;width:90vw;max-width:900px;position:relative;padding:12px}
.gallery-close{position:fixed;top:20px;right:20px;color:#ff6700;background:rgba(0,0,0,.8);border:3px solid #ff6700;border-radius:50%;padding:8px 12px;cursor:pointer;font-size:26px;font-weight:bold;width:48px;height:48px;display:flex;align-items:center;justify-content:center;transition:all 0.3s;z-index:2001;line-height:1}
.gallery-close:hover{background:#ff6700;color:#fff}
.gallery-modal:not(.active) .gallery-close{display:none}
.gallery-container{position:relative;display:flex;align-items:center;justify-content:center}
.gallery-strip{display:flex;gap:10px;max-height:70vh;align-items:center;justify-content:center}
.gallery-item{flex:0 0 auto;max-height:70vh;max-width:80vw;border-radius:8px;background:#000}
.gallery-item img{display:block;max-width:80vw;max-height:70vh;border-radius:8px;object-fit:contain}
.gallery-item video{max-width:80vw;max-height:70vh;border-radius:8px;object-fit:contain}
.gallery-nav{position:absolute;top:50%;z-index:10;background:rgba(255,107,0,.8);color:#fff;border:none;border-radius:50%;width:45px;height:45px;font-size:24px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 0.3s}
.gallery-nav:hover{background:#ff6700}
.gallery-prev{left:10px}
.gallery-next{right:10px}

@media(max-width:768px){
.gallery-close{top:15px;right:15px;width:44px;height:44px;padding:6px 10px;font-size:22px;border-width:2px}
.gallery-nav{width:40px;height:40px;font-size:20px}
.gallery-item img, .gallery-item video{max-width:95vw;max-height:60vh}
}
