* {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background: transparent;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================
   ACCESSIBILITY HELPERS
============================================ */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

/* ============================================
   FINISHER HEADER BACKGROUND
============================================ */

.finisher-header-container {
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.finisher-header .fh-canvas {
    opacity: 0.3 !important;
}

/* ============================================
   PAGE STRUCTURE
============================================ */

.artwork-stage {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    min-height: 100vh;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.15);
}

.back-nav {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 1000;
}

.back-link {
    color: #333;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.back-link:hover {
    background: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.feature {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background: #000000;
}

.content {
    position: relative;
    z-index: 1;
    padding: 50px 30px;
    background: #ffffff;
}

/* ============================================
   TYPOGRAPHY AND CONTENT
============================================ */

h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3.5rem;
    margin: 25px 0;
    color: #111111;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.artist-info {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eeeeee;
}

.artist-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
    border: 3px solid #222222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.artist-name {
    font-weight: 700;
    margin: 0;
    font-size: 24px;
    color: #222222;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 1px;
}

.artist-location {
    margin: 10px 0 0;
    font-size: 16px;
    color: #666666;
    font-weight: 500;
}

.artwork-description {
    font-size: 18px;
    margin-bottom: 60px;
    color: #444444;
    line-height: 1.8;
}

.artwork-description .lead {
    font-size: 14px;
    color: #c66d00;
    margin-bottom: 30px;
    font-weight: 700;
}

.technical-details {
    background: #f8f8f8;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 60px;
    border-left: 5px solid #222222;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.technical-details h3,
.related-artworks h3 {
    color: #222222;
    margin-top: 0;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 28px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.technical-details p {
    margin: 0;
    color: #555555;
    font-size: 17px;
    line-height: 1.8;
}

.technical-details ul {
    padding-left: 30px;
    margin: 0;
}

.technical-details li {
    margin-bottom: 15px;
    color: #555555;
    font-size: 17px;
}

/* ============================================
   CINEMATIC IMAGE EXPLORER
============================================ */

.image-explorer {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
    -webkit-tap-highlight-color: transparent;
}

.explorer-viewport {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.explorer-image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform;
    transform-origin: center center;
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.explorer-image:active {
    cursor: grabbing;
}

/* ============================================
   IMAGE PREVIEW PLACEHOLDERS (All 7 Artworks)
============================================ */

.image-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(15px);
    transform: scale(1.02);
    transition: opacity 0.8s ease-out, filter 0.8s ease-out;
    z-index: 1;
}

/* Vineyard Dreaming */
.vineyard-dreaming-preview {
    background-image: url("vineyard_dreaming_preview.jpg");
}

/* Blues - file is misnamed as bones_preview.jpg in blues folder */
.blues-preview {
    background-image: url("../blues/bones_preview.jpg");
}

/* Bones */
.bones-preview {
    background-image: url("../bones/bones_preview.jpg");
}

/* First Racers */
.first-racers-preview {
    background-image: url("../first_racers/first_racers_preview.jpg");
}

/* Gretchen - file is misnamed as bones_preview.jpg in gretchen folder */
.gretchen-preview {
    background-image: url("../gretchen/bones_preview.jpg");
}

/* Redemption at the Crossroads */
.redemption-at-the-crossroads-preview {
    background-image: url("../redemption_at_the_crossroads/redemption_at_the_crossroads_preview.jpg");
}

/* Still a Man - file is misnamed as bones_preview.jpg in still_a_man folder */
.still-a-man-preview {
    background-image: url("../still_a_man/bones_preview.jpg");
}

.image-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-out;
    z-index: 2;
}

.image-loaded .image-preview {
    opacity: 0;
    filter: blur(0);
}

.image-loaded .image-full {
    opacity: 1;
}

.image-loading .image-preview {
    animation: pulseLoad 2s infinite;
}

@keyframes pulseLoad {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================
   ASPECT RATIO HANDLING PER ARTWORK
============================================ */

/* Landscape images (wider than tall) */
.artwork-landscape .image-full {
    object-fit: contain;
    background: #000;
}

.artwork-landscape .explorer-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blues: 987×654 (1.51) */
[data-artwork-id="blues"] .explorer-viewport {
    background: #0a0a0a;
}

/* Bones: 1144×849 (1.35) */
[data-artwork-id="bones"] .explorer-viewport {
    background: #000;
}

/* Square images */
.artwork-square .image-full {
    object-fit: cover;
}

/* First Racers: 907×907 (1.0) */
[data-artwork-id="first_racers"] .feature {
    max-height: 80vh;
}

/* Portrait images (taller than wide) */
.artwork-portrait .image-full {
    object-fit: cover;
}

.artwork-portrait .feature {
    height: 70vh;
}

/* Gretchen: 1114×1503 (0.74) */
[data-artwork-id="gretchen"] .feature {
    height: 75vh;
}

[data-artwork-id="gretchen"] .image-full {
    object-position: center 20%;
}

/* Still a Man: 1105×1366 (0.81) */
[data-artwork-id="still_a_man"] .feature {
    height: 75vh;
}

[data-artwork-id="still_a_man"] .image-full {
    object-position: center 15%;
}

/* ============================================
   IMAGE LOAD PROGRESS
============================================ */

.image-load-progress {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    text-align: center;
    z-index: 30;
    display: none;
}

.image-load-progress.visible {
    display: block;
}

.image-load-progress .progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    border-radius: 2px;
    margin-bottom: 5px;
    overflow: hidden;
}

.image-load-progress .progress-fill {
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.9);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.image-load-progress .progress-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    display: block;
}

/* ============================================
   EXPLORER CONTROLS
============================================ */

.explorer-controls {
    position: absolute;
    margin-bottom: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    z-index: 20;
}

.explorer-btn {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
}

.explorer-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.explorer-play {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.explorer-play i {
    font-size: 16px;
}

.btn-label {
    display: inline;
}

.explorer-nav {
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    padding: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
}

.explorer-nav.visible {
    display: flex;
}

.explorer-nav .explorer-btn {
    background: transparent;
    padding: 10px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.shot-indicator {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 10px;
    min-width: 50px;
    text-align: center;
}

.current-shot {
    font-size: 18px;
    font-weight: 700;
}

.explorer-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    display: none;
}

.explorer-progress.visible {
    display: block;
}

.explorer-progress .progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.explorer-progress .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.1s linear;
}

.shot-labels {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    z-index: 5;
}

.shot-label {
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.shot-label.active {
    opacity: 1;
    transform: translateY(0);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   BARCODE
============================================ */

.image-barcode {
    position: absolute;
    bottom: 60px;
    right: 20px;
    z-index: 25;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.image-barcode:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.image-barcode img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 100px;
    object-fit: contain;
}

/* ============================================
   MUSIC CONTROLS
============================================ */

.audio-players {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.music-controls {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 25px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.music-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.music-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: width 0.3s ease;
}

.volume-slider:hover {
    width: 100px;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    width: 18px;
    height: 18px;
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    border: none;
}

.current-track {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    min-width: 100px;
}

.track-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
}

.music-playing .music-btn {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.music-playing .music-btn:hover {
    background: rgba(76, 175, 80, 0.4);
}

.music-muted .music-btn {
    background: rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.music-fading .music-btn,
.music-fading .current-track {
    animation: pulseFade 2s infinite;
}

.tour-active .music-controls {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes pulseFade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}


/* ============================================
   RELATED ARTWORK SLIDER
============================================ */

.related-artworks {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.related-artworks h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #222222;
    letter-spacing: 0.5px;
}

.artwork-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.artwork-slider {
    overflow: hidden;
    border-radius: 12px;
    flex: 1;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.25rem;
}

.slider-card {
    flex: 0 0 calc(33.333% - 0.85rem);
    min-width: calc(33.333% - 0.85rem);
    text-decoration: none;
    color: inherit;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.slider-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.slider-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1a1a;
}

.slider-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-card:hover .slider-card-image img {
    transform: scale(1.05);
}

.slider-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-card:hover .slider-card-overlay {
    opacity: 1;
}

.overlay-link {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.slider-card:hover .overlay-link {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.slider-card-info {
    padding: 1rem 1.25rem 1.25rem;
    background: #ffffff;
}

.slider-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #222222;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.3px;
}

.slider-card-desc {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.05);
    color: #222222;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.35);
    transform: scale(1.05);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    border-color: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.1);
}

.slider-dot.active {
    background: #222222;
    border-color: #222222;
    transform: scale(1.2);
}

/* ============================================
   HIDDEN ELEMENTS
============================================ */

.mobile-purchase-btn,
.barcode-overlay,
.barcode-container,
.barcode-actions,
.btn-download,
.btn-close,
.artwork-details,
.purchase-overlay,
.purchase-info,
.price,
.details,
.btn-purchase,
.btn-inquiry,
.barcode,
.barcode-img {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

@media (max-width: 768px) {
    .artwork-stage {
        max-width: 100%;
        margin: 0;
    }

    .feature {
        height: 50vh;
    }

    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .artwork-description {
        font-size: 16px;
        column-count: 1;
    }

    .artwork-description .lead {
        font-size: 14px;
    }

    .explorer-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .btn-label {
        font-size: 13px;
    }

    .shot-label {
        padding: 6px 12px;
        font-size: 11px;
    }

    .image-barcode {
        bottom: 15px;
        right: 15px;
        max-width: 90px;
        padding: 5px;
        z-index: 30;
    }

    .image-barcode img {
        max-height: 100%;
    }

    .explorer-controls {
        bottom: 70px;
    }

    .music-controls {
        bottom: 15px;
        left: 15px;
        padding: 8px 12px;
        gap: 8px;
    }

    .current-track {
        max-width: 80px;
        min-width: 60px;
        font-size: 12px;
    }

    .track-counter {
        font-size: 10px;
        padding: 1px 4px;
    }

    .volume-slider {
        width: 60px;
    }

    .volume-slider:hover {
        width: 80px;
    }

    .voiceover-indicator {
        padding: 12px 20px;
        font-size: 14px;
    }

    .voiceover-indicator i {
        font-size: 18px;
    }

    .image-load-progress {
        bottom: 60px;
        min-width: 100px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .artwork-stage {
        max-width: 95%;
    }

    .feature,
    .image-explorer {
        height: 70vh;
    }

    .image-barcode {
        max-width: 100px;
    }

    .image-barcode img {
        max-height: 100%;
    }
}

@media (min-width: 900px) {
    .artwork-stage {
        margin: 40px auto;
        border-radius: 20px;
        overflow: hidden;
    }

    .feature,
    .image-explorer {
        height: 80vh;
    }

    .image-explorer {
        border-radius: 8px;
    }

    .content {
        padding: 80px 60px;
    }

    h1 {
        font-size: 5rem;
    }

    .artwork-description {
        font-size: 19px;
        column-count: 2;
        column-gap: 60px;
    }

    .artwork-description .lead {
        font-size: 18px;
        column-span: all;
    }

    .explorer-controls {
        bottom: 25px;
    }

    .shot-label {
        font-size: 13px;
        padding: 10px 20px;
    }

    .image-barcode {
        max-width: 120px;
    }

    .image-barcode img {
        max-height: 100%;
    }
}

@media (min-width: 1400px) {
    .artwork-stage {
        max-width: 900px;
    }

    h1 {
        font-size: 6rem;
    }

    .content {
        padding: 100px 80px;
    }
}

@media (max-width: 1024px) {
    .slider-card {
        flex: 0 0 calc(50% - 0.65rem);
        min-width: calc(50% - 0.65rem);
    }
}

@media (max-width: 640px) {
    .slider-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .artwork-slider-container {
        gap: 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .image-preview,
    .image-full,
    .explorer-image,
    .explorer-btn,
    .image-barcode,
    .music-btn,
    .back-link,
    .volume-slider,
    .volume-slider::-webkit-slider-thumb,
    .slider-track,
    .slider-card,
    .slider-card-image img,
    .slider-card-overlay,
    .overlay-link,
    .slider-arrow,
    .slider-dot {
        transition: none;
    }

    .image-loading .image-preview,
    .music-fading .music-btn,
    .music-fading .current-track,
    .voiceover-indicator.visible {
        animation: none;
    }

    .explorer-btn:hover,
    .image-barcode:hover,
    .music-btn:hover,
    .back-link:hover,
    .slider-card:hover,
    .slider-card:hover .slider-card-image img,
    .slider-arrow:hover {
        transform: none;
    }
}