.screenbank-wrap {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.screenbank-image {
    width: 100%;
    display: block;
    height: auto;
}

/* OVERLAY SCREEN EXAMPLE */
.screen-slot {
    background: linear-gradient(
	    to bottom,
	    #1a2026 0%,
	    #0c0f12 100%
	);

    position: absolute;
    width: 10.4%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-sizing: border-box;
    
    z-index: 10;
}

/* ROW 1 */
.slot-01 { left: 3.5%;  top: 4.7%; }
.slot-02 { left: 17.0%; top: 4.7%; }
.slot-03 { left: 30.7%; top: 4.7%; }
.slot-04 { left: 44.3%; top: 4.7%; }
.slot-05 { left: 58.0%; top: 4.7%; }
.slot-06 { left: 71.8%; top: 4.7%; }
.slot-07 { left: 85.5%; top: 4.7%; }

/* ROW 2 */
.slot-08 { left: 3.5%;  top: 20.2%; }
.slot-09 { left: 17.0%; top: 20.2%; }
.slot-10 { left: 30.7%; top: 20.2%; }
.slot-11 { left: 44.3%; top: 20.2%; }
.slot-12 { left: 58.0%; top: 20.2%; }
.slot-13 { left: 71.8%; top: 20.2%; }
.slot-14 { left: 85.5%; top: 20.2%; }

/* ROW 3 */
.slot-15 { left: 3.5%;  top: 35.7%; }
.slot-16 { left: 17.0%; top: 35.7%; }
.slot-17 { left: 30.7%; top: 35.7%; }
.slot-18 { left: 44.3%; top: 35.7%; }
.slot-19 { left: 58.0%; top: 35.7%; }
.slot-20 { left: 71.8%; top: 35.7%; }
.slot-21 { left: 85.5%; top: 35.7%; }

/* ROW 4 */
.slot-22 { left: 3.5%;  top: 51.2%; }
.slot-23 { left: 17.0%; top: 51.2%; }
.slot-24 { left: 30.7%; top: 51.2%; }
.slot-25 { left: 44.3%; top: 51.2%; }
.slot-26 { left: 58.0%; top: 51.2%; }
.slot-27 { left: 71.8%; top: 51.2%; }
.slot-28 { left: 85.5%; top: 51.2%; }


.screen-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.archive-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.archive-button {
    color: #b7c6d9;
    text-decoration: none;
    border: 1px solid rgba(120,140,160,0.18);
    padding: 0.75rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.archive-button:hover {
    background: rgba(120,160,255,0.08);
}

.archive-page-indicator {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.archive-video-slot {
    cursor: pointer;
}

.screen-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.archive-video-slot.playing .screen-video {
    opacity: 1;
}

.archive-video-slot.playing .screen-thumb {
    opacity: 0;
}






/* JOYSTICK CLICK AREA */
.operator-button {
    position: absolute;
    left: 47%;
    bottom: 12%;
    width: 8%;
    height: 18%;
    display: block;
    z-index: 20;
    cursor: pointer;
}

.retrieval-slot {
    background: linear-gradient(
        to bottom,
        #1b2229 0%,
        #11161b 55%,
        #0d1115 100%
    );

    border: 1px solid rgba(120,140,160,0.06);

    box-shadow:
        inset 0 0 18px rgba(120,160,255,0.025),
        inset 0 0 2px rgba(255,255,255,0.03);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 0.5vw;
    box-sizing: border-box;
}

.retrieval-inner {
    width: 100%;
}

.retrieval-status {
    font-size: 0.78vw;
    letter-spacing: 0.08em;
    color: #b7c6d9;
    margin-bottom: 0.35vw;
    text-transform: uppercase;
}

.retrieval-detail {
    font-size: 0.62vw;
    line-height: 1.4;
    color: rgba(255,255,255,0.45);
}