.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border: 4px solid var(--primary);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: var(--primary);
    color: var(--text);
    border: none;
    width: 40px;
    height: 40px;
    font-family: 'Press Start 2P', cursive;
    cursor: pointer;
}