.gallery-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(2px);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.gallery-modal.hidden{
    display:none;
}

.gallery-window{
    width:min(1200px,90vw);
    height:min(800px,85vh);
    background:#010201;
    border:1px solid var(--line-strong);
    box-shadow:
        0 0 25px rgba(0,255,120,.15),
        inset 0 0 20px rgba(0,255,120,.04);
    display:flex;
    flex-direction:column;
}

.gallery-header{
    height:50px;
    border-bottom:1px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 18px;
    color:var(--green-bright);
}

.gallery-header button{
    background:none;
    border:none;
    color:var(--green-bright);
    cursor:pointer;
    font-size:1.4rem;
}

.gallery-body{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--text);
    min-height:0;
    padding:18px;
}

.gallery-body img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    display:block;
}

.gallery-filename{
    height:32px;
    padding-bottom:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--green);
    font-size:.85rem;
    opacity:.7;
}

.gallery-footer{
    height:70px;
    border-top:1px solid var(--line);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 18px;
}

.gallery-footer button{
    background:none;
    border:1px solid var(--line-strong);
    color:var(--green-bright);
    padding:10px 18px;
    cursor:pointer;
}
