.gallery {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-top: var(--header-height);
    padding-bottom: var(--floating-buttons-height);
}

.gallery-card {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--card-padding);
    background: var(--color-bg);
}

.case-logo {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.case-logo.visible {
    opacity: 1;
}

.case-logo img {
    height: 40px;
    width: auto;
    display: block;
}