/* ===== MODAL IMAGE ===== */
.cover-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(20,22,32,0.85);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s;
}
.cover-modal.show { display: flex; }
.cover-modal-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 30px 8px rgba(0,0,0,0.23);
    background: #fff;
    border: 4px solid #eee;
}
.cover-modal-close {
    position: absolute;
    top: 18px;
    right: 28px;
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2200;
    text-shadow: 0 0 8px #000;
    transition: color 0.2s;
}
.cover-modal-close:hover { color: #f39c12; }
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
