.gallery-stage {
    position: relative;
    min-height: min(70vh, 720px);
    margin: 0 0 2rem;
    padding: 1rem;
    background:
        radial-gradient(circle at 20% 10%, rgba(196, 162, 74, 0.18), transparent 45%),
        linear-gradient(160deg, #12151a 0%, #1c232c 55%, #0f1216 100%);
    color: #f4f1ea;
    overflow: hidden;
}

.gallery-stage--kiosk,
.gallery-kiosk .gallery-stage {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.gallery-kiosk .public-topbar,
.gallery-kiosk .mobile-menu,
.gallery-kiosk .public-page-head,
.gallery-kiosk .public-footer,
.gallery-kiosk .public-legal,
.gallery-kiosk .achocup-social {
    display: none !important;
}

.gallery-kiosk main,
.gallery-kiosk .public-content {
    padding: 0;
    max-width: none;
    width: 100%;
}

.gallery-stage__frame {
    position: relative;
    width: 100%;
    height: min(62vh, 640px);
    background: #000;
}

.gallery-stage--kiosk .gallery-stage__frame,
.gallery-kiosk .gallery-stage__frame {
    height: 100vh;
}

.gallery-stage__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.gallery-stage__image.is-active {
    opacity: 1;
}

.gallery-stage__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0.25rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.gallery-stage--kiosk .gallery-stage__meta,
.gallery-kiosk .gallery-stage__meta {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 4.5rem;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.gallery-stage__controls {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 0 0.25rem;
}

.gallery-stage--kiosk .gallery-stage__controls,
.gallery-kiosk .gallery-stage__controls {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-stage--kiosk:hover .gallery-stage__controls,
.gallery-kiosk .gallery-stage:hover .gallery-stage__controls,
.gallery-stage--kiosk:focus-within .gallery-stage__controls,
.gallery-kiosk .gallery-stage:focus-within .gallery-stage__controls {
    opacity: 1;
}

.gallery-stage__btn {
    display: inline-grid;
    place-items: center;
    min-width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(244, 241, 234, 0.35);
    background: rgba(18, 21, 26, 0.72);
    color: #f4f1ea;
    font-size: 1.1rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.gallery-stage__btn:hover,
.gallery-stage__btn:focus-visible {
    border-color: #c4a24a;
    outline: none;
    color: #f4f1ea;
}

.gallery-stage__btn--download {
    font-weight: 700;
}

.gallery-stage__empty {
    display: grid;
    place-items: center;
    min-height: 40vh;
    margin: 0;
    opacity: 0.85;
}

@media (max-width: 720px) {
    .gallery-stage__meta {
        flex-direction: column;
        align-items: flex-start;
    }
}
