.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    transition: 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(214, 164, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Freeze scrolling while lightbox is open */

body.no-scroll {
    overflow: hidden;
}

/* =========================================
   KONAMI IMAGE
========================================= */

#konami-image {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 999999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
}


