body {
            margin: 0;
            overflow: hidden;
            background-color: #000000;
            font-family: 'Geist Mono', monospace;
            text-transform: uppercase;
        }
        canvas { display: block; }

        #vignette {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.95) 100%);
            box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9);
            pointer-events: none;
            z-index: 5;
        }



        body.architecture-scene-active #vignette {
            background:
                radial-gradient(circle at center, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0.45) 68%, rgba(0, 0, 0, 0.96) 100%),
                linear-gradient(to bottom, rgba(143, 143, 143, 0) 38%, rgba(143, 143, 143, 0.24) 62%, rgba(31, 31, 31, 0.42) 100%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.72));
            box-shadow:
                inset 0 0 180px rgba(0, 0, 0, 0.96),
                inset 0 0 420px rgba(0, 0, 0, 0.72),
                inset 0 40px 120px rgba(0, 0, 0, 0.9),
                inset 0 -52px 150px rgba(0, 0, 0, 0.92);
        }

        #welcome-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9990;
            color: #D8D8D8;
            transition: opacity 2.5s ease-in-out;
            overflow: hidden;
        }

        @keyframes floorCrawl {
            0% { background-position: 0 0; }
            100% { background-position: 0 192px; }
        }

        .welcome-floor {
            position: absolute;
            top: 50%;
            bottom: 0;
            left: -100%;
            width: 300%;
            background-color: #050505;
            background-image: conic-gradient(from 0deg, #D8D8D8 90deg, transparent 90deg 180deg, #D8D8D8 180deg 270deg, transparent 270deg);
            background-size: 192px 192px;
            background-position: 0 0;
            transform-origin: top center;
            transform: perspective(350px) rotateX(78deg);
            z-index: 1;
            opacity: 0.85;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 90%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 90%);
            animation: floorCrawl 7s linear infinite;
        }

        .slide-container {
            width: 100%;
            height: 100%;
            padding: 10%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .slide-wrapper {
            position: relative;
            width: 100%;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }

        .slide {
            position: absolute;
            width: 100%;
            opacity: 0;
            pointer-events: none;
            transform: translateY(30px) scale(0.95);
            filter: blur(12px);
            transition: opacity 1.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                        transform 2.2s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
            text-align: center;
        }

        .slide.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0) scale(1);
            filter: blur(0px);
        }

        .slide-body {
            font-family: 'Jacquard 24', serif;
            font-size: clamp(2.3rem, 10vw, 4rem);
            line-height: 0.9;
            font-weight: 400;
            letter-spacing: normal;
            color: #D8D8D8;
            text-transform: none;
            text-shadow: 0px 4px 15px rgba(0,0,0,0.8);
        }

        .slide-nav {
            position: absolute;
            bottom: 10%;
            width: 90%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
            padding-top: 25px;
        }

        .loading-status {
            font-size: 0.7rem;
            color: rgba(216, 216, 216, 0.55);
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
            text-shadow: 0px 2px 5px rgba(0,0,0,0.8);
        }
        .loading-status.loaded {
            color: #D8D8D8;
        }

        .nav-btn {
            padding: 4px 16px;
            background: transparent;
            color: #D8D8D8;
            border: none;
            cursor: pointer;
            font-family: 'Jacquard 24', serif;
            font-weight: normal;
            font-size: 4rem;
            transition: all 0.2s ease;
            letter-spacing: 0.05em;
            text-transform: none;
        }

        .nav-btn:hover {
            color: #D8D8D8;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.45);
        }

        .nav-btn:focus,
        .nav-btn:focus-visible,
        .hud-action-btn:focus,
        .hud-action-btn:focus-visible,
        .about-modal button:focus,
        .about-modal button:focus-visible {
            outline: none;
            box-shadow: none;
        }

        @media (max-width: 640px) {
            .slide-container {
                padding: 8vw;
                justify-content: flex-start;
                padding-top: 18vh;
            }

            .slide-wrapper {
                min-height: 46vh;
                margin-bottom: 24px;
            }

            .slide-body {
                font-size: clamp(2rem, 13vw, 3.25rem);
                line-height: 0.95;
            }

            .slide-nav {
                bottom: 7%;
            }

            .nav-btn {
                font-size: clamp(2.75rem, 15vw, 4rem);
            }
        }

        #hud {
            position: absolute;
            top: 24px;
            right: 24px;
            color: #D8D8D8;
            background: transparent;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 20px;
            border: 1px solid rgba(216, 216, 216, 0.25);
            border-radius: 0;
            pointer-events: none;
            z-index: 10;
            font-size: 0.75rem;
            width: 310px;
            box-sizing: border-box;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
            display: none;
            opacity: 0;
        }

        .hud-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            row-gap: 12px;
            column-gap: 16px;
            align-items: center;
            margin: 0 -20px 18px;
            border-bottom: 1px solid rgba(216, 216, 216, 0.15);
            padding: 0 20px 16px;
        }

        .hud-label {
            color: #D8D8D8;
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            font-weight: 400;
        }

        .hud-value {
            color: #D8D8D8;
            font-weight: 400;
            text-align: right;
        }

        #landmark-tracker {
            position: relative;
            width: 100%;
            height: 130px;
            margin: -4px 0 18px;
            background:
                linear-gradient(rgba(0, 255, 102, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 102, 0.08) 1px, transparent 1px);
            background-size: 16px 16px;
            border: 1px solid rgba(0, 255, 102, 0.34);
            box-shadow:
                inset 0 0 18px rgba(0, 255, 102, 0.08),
                0 0 12px rgba(216, 216, 216, 0.12);
            overflow: hidden;
            pointer-events: none;
        }

        #landmark-tracker::before,
        #landmark-tracker::after {
            content: "";
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            pointer-events: none;
        }

        #landmark-tracker::before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 1px;
        }

        #landmark-tracker::after {
            top: 0;
            left: 50%;
            width: 1px;
            height: 100%;
        }

        #landmark-marker,
        #player-marker,
        .guard-marker {
            position: absolute;
            left: 50%;
            top: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
        }

        #landmark-marker {
            width: 15px;
            height: 15px;
            border: 2px solid #D8D8D8;
            border-radius: 50%;
            background: #D8D8D8;
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.72);
        }

        #landmark-marker::before,
        #landmark-marker::after {
            content: "";
            position: absolute;
            inset: -2px;
            border: 1px solid rgba(216, 216, 216, 0.78);
            border-radius: 50%;
            animation: coreMarkerRadiate 1.8s ease-out infinite;
        }

        #landmark-marker::after {
            animation-delay: 0.9s;
        }

        @keyframes coreMarkerRadiate {
            0% {
                opacity: 0.85;
                transform: scale(1);
            }
            100% {
                opacity: 0;
                transform: scale(2.9);
            }
        }

        #player-marker {
            width: 10px;
            height: 10px;
            border: 1px solid #00ff66;
            background: rgba(0, 255, 102, 0.85);
            box-shadow: 0 0 10px rgba(0, 255, 102, 0.7);
        }

        .guard-marker {
            width: 7px;
            height: 7px;
            border: 1px solid #0096FF;
            border-radius: 50%;
            background: rgba(0, 150, 255, 0.85);
            box-shadow: 0 0 8px rgba(0, 150, 255, 0.65);
        }


        .hud-action-row {
            display: flex;
            justify-content: stretch;
            gap: 0;
            width: 100%;
            pointer-events: auto;
        }

        .hud-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1 1 0;
            min-width: 0;
            height: 40px;
            position: relative;
            pointer-events: auto;
            padding: 8px;
            background: rgba(216, 216, 216, 0.05);
            color: #D8D8D8;
            border: 1px solid rgba(216, 216, 216, 0.45);
            border-radius: 0;
            cursor: pointer;
            font-family: 'Geist Mono', monospace;
            font-weight: 600;
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: center;
            text-transform: uppercase;
        }
        .hud-action-btn + .hud-action-btn {
            margin-left: -1px;
        }
        .hud-action-btn__icon {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            stroke-width: 1px;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
            pointer-events: none;
            display: none;
        }
        .hud-action-btn[data-icon-button="user-round"] [data-icon="user-round"],
        .hud-action-btn[data-icon-button="camera"] [data-icon="camera"],
        .hud-action-btn[data-icon-button="globe"] [data-icon="globe"],
        .hud-action-btn[data-icon-button="volume"] [data-icon="volume"],
        .hud-action-btn[data-icon-button="volume-off"] [data-icon="volume-off"],
        .hud-action-btn[data-icon-button="expand"] [data-icon="expand"],
        .hud-action-btn[data-icon-button="shrink"] [data-icon="shrink"] {
            display: block;
        }
        .hud-action-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            left: 50%;
            top: calc(100% + 10px);
            transform: translateX(-50%) translateY(-4px);
            padding: 0;
            background: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            color: #D8D8D8;
            border: 0;
            box-shadow: none;
            font-family: 'Geist Mono', monospace;
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 0.12em;
            line-height: 1;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            z-index: 20;
        }
        .hud-action-btn:hover::after {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .hud-action-btn__label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .hud-action-btn:hover {
            background: rgba(216, 216, 216, 0.05);
            color: #D8D8D8;
            border-color: #D8D8D8;
            box-shadow: none;
        }


        body.architecture-scene-active #hud {
            color: #D8D8D8;
            border-color: rgba(216, 216, 216, 0.35);
        }

        body.architecture-scene-active .hud-grid,
        body.architecture-scene-active #artist-credit {
            border-bottom-color: rgba(216, 216, 216, 0.22);
        }

        body.architecture-scene-active .hud-label,
        body.architecture-scene-active .hud-value,
        body.architecture-scene-active #active-guard-count-display,
        body.architecture-scene-active #artist-credit {
            color: #D8D8D8;
        }

        body.architecture-scene-active #landmark-tracker {
            box-shadow:
                inset 0 0 18px rgba(0, 255, 102, 0.08),
                0 0 12px rgba(255, 255, 255, 0.14);
        }

        body.architecture-scene-active #landmark-tracker::before,
        body.architecture-scene-active #landmark-tracker::after {
            background: rgba(255, 255, 255, 0.3);
        }

        body.architecture-scene-active #landmark-marker {
            border-color: #D8D8D8;
            background: #D8D8D8;
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.72);
        }

        body.architecture-scene-active #landmark-marker::before,
        body.architecture-scene-active #landmark-marker::after {
            border-color: rgba(216, 216, 216, 0.78);
        }

        body.architecture-scene-active .hud-action-btn {
            background: rgba(216, 216, 216, 0.05);
            color: #D8D8D8;
            border-color: rgba(216, 216, 216, 0.45);
        }

        body.architecture-scene-active .hud-action-btn::after {
            color: #D8D8D8;
        }

        body.architecture-scene-active .hud-action-btn:hover {
            background: rgba(216, 216, 216, 0.05);
            color: #D8D8D8;
            border-color: #D8D8D8;
        }


        #patrol-boundary-notice,
        #patrol-collision-notice {
            position: absolute;
            left: 50%;
            bottom: 12px;
            transform: translate(-50%, 12px);
            width: min(760px, calc(100vw - 32px));
            box-sizing: border-box;
            padding: 12px 18px;
            color: #D8D8D8;
            background: none;
            border: 0;
            box-shadow: none;
            font-size: 0.72rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            line-height: 1.4;
            text-align: center;
            opacity: 0;
            pointer-events: none;
            z-index: 20;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        #patrol-boundary-notice.is-visible,
        #patrol-collision-notice.is-visible {
            opacity: 1;
            transform: translate(-50%, 0);
        }

        #patrol-boundary-notice {
            top: 28px;
            bottom: auto;
            transform: translate(-50%, -12px);
        }

        #patrol-boundary-notice.is-visible {
            transform: translate(-50%, 0);
        }

        #patrol-collision-notice {
            bottom: 34px;
            color: #D8D8D8;
            z-index: 22;
        }

        #patrol-nav-notice {
            position: absolute;
            left: 50%;
            bottom: 58px;
            transform: translate(-50%, 12px);
            width: min(760px, calc(100vw - 32px));
            box-sizing: border-box;
            padding: 11px 16px;
            color: #D8D8D8;
            background: none;
            border: 0;
            box-shadow: none;
            font-size: 0.68rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            line-height: 1.4;
            text-align: center;
            opacity: 0;
            pointer-events: none;
            z-index: 21;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        #patrol-nav-notice.is-visible {
            opacity: 1;
            transform: translate(-50%, 0);
        }

        body.architecture-scene-active #patrol-boundary-notice,
        body.architecture-scene-active #patrol-nav-notice {
            color: #D8D8D8;
        }

        body.architecture-scene-active .about-modal,
        body.architecture-scene-active .about-modal p,
        body.architecture-scene-active .about-modal__caption {
            color: #D8D8D8;
        }

        body.architecture-scene-active .about-modal {
            border-color: rgba(216, 216, 216, 0.45);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75), 0 0 24px rgba(216, 216, 216, 0.16);
        }

        #plaque-interaction-notice {
            position: absolute;
            left: 50%;
            top: 28px;
            transform: translate(-50%, -12px);
            width: min(760px, calc(100vw - 32px));
            box-sizing: border-box;
            padding: 11px 16px;
            color: #D8D8D8;
            background: none;
            border: 0;
            box-shadow: none;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            line-height: 1.4;
            text-align: center;
            opacity: 0;
            pointer-events: none;
            text-shadow: 0 0 12px rgba(0, 255, 102, 0.75), 0 2px 10px rgba(0, 0, 0, 0.95);
            z-index: 23;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        #plaque-interaction-notice.is-visible {
            opacity: 1;
            transform: translate(-50%, 0);
        }

        #plaque-fullscreen-view {
            position: fixed;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            z-index: 10020;
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.9s;
            will-change: opacity;
        }

        #plaque-fullscreen-view.is-visible {
            opacity: 1;
            visibility: visible;
            transition-delay: 0s;
        }

        #plaque-fullscreen-view:focus,
        #plaque-fullscreen-view:focus-visible {
            outline: none;
        }

        .plaque-fullscreen-view__object-panel {
            position: fixed;
            top: 24px;
            right: 24px;
            width: min(260px, calc(100vw - 48px));
            max-height: calc(100vh - 96px);
            padding: 16px;
            background: rgba(0, 0, 0, 0.62);
            color: #D8D8D8;
            font-size: 0.66rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            overflow: auto;
            pointer-events: auto;
            box-shadow: none;
        }

        .plaque-fullscreen-view__object-panel h2 {
            margin: 0 0 10px;
            color: #D8D8D8;
            font-size: 0.72rem;
            letter-spacing: 0.16em;
        }

        .plaque-fullscreen-view__object-panel ol {
            margin: 0;
            padding-left: 18px;
        }

        .plaque-fullscreen-view__object-panel li {
            color: #D8D8D8;
        }

        .plaque-fullscreen-view__object-panel li + li {
            margin-top: 7px;
        }

        .plaque-fullscreen-view__exit-hint {
            position: fixed;
            left: 50%;
            bottom: 24px;
            transform: translateX(-50%);
            color: #D8D8D8;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-align: center;
            text-shadow: 0 0 12px rgba(0, 255, 102, 0.78), 0 2px 10px rgba(0, 0, 0, 0.95);
            text-transform: uppercase;
            pointer-events: none;
        }

        body.plaque-fullscreen-active #hud,
        body.plaque-fullscreen-active #vignette,
        body.plaque-fullscreen-active #patrol-boundary-notice,
        body.plaque-fullscreen-active #patrol-collision-notice,
        body.plaque-fullscreen-active #patrol-nav-notice,
        body.plaque-fullscreen-active #plaque-interaction-notice,
        body.plaque-fullscreen-active #mobile-experience-notice {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }

        .landmark-distance-panel {
            display: none;
            margin: -14px 0 18px;
            padding-bottom: 14px;
            text-align: left;
        }

        .landmark-distance-panel .hud-value {
            display: block;
            text-align: left;
        }

        #active-guard-count-display {
            text-transform: none;
        }

        .landmark-distance-panel.is-visible {
            display: block;
        }

        #landmark-distance-display,
        #active-guard-count-display {
            font-size: 0.58rem;
            letter-spacing: 0.1em;
        }

        #active-guard-count-display {
            margin-top: 6px;
            color: #D8D8D8;
        }

        #artist-credit {
            grid-column: 1 / -1;
            color: #D8D8D8;
            opacity: 0.72;
            font-size: 0.64rem;
            line-height: 1.35;
            letter-spacing: 0.12em;
            margin: 0 -20px 14px;
            padding: 0 20px 14px;
            border-bottom: 1px solid rgba(216, 216, 216, 0.15);
            pointer-events: none;
            text-align: left;
            text-shadow: 0px 2px 10px rgba(0,0,0,0.8);
        }



        @media (hover: none) and (pointer: coarse), (max-width: 767px) {
            #hud {
                top: 16px;
                right: 16px;
                width: auto;
                padding: 0;
                border: 0;
                box-shadow: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                pointer-events: none;
            }

            #hud .hud-grid,
            #hud #landmark-tracker,
            #hud .landmark-distance-panel {
                display: none !important;
            }

            #hud .hud-action-row {
                width: auto;
                pointer-events: auto;
            }

            #hud .hud-action-btn {
                flex: 0 0 auto;
                width: 42px;
                height: 42px;
                padding: 9px;
                background: transparent;
            }

            #hud .hud-action-btn::after {
                display: none;
            }
        }

        #mobile-experience-notice {
            position: absolute;
            left: 50%;
            bottom: 24px;
            transform: translateX(-50%);
            display: none;
            width: min(420px, calc(100vw - 32px));
            box-sizing: border-box;
            padding: 12px 14px;
            color: #D8D8D8;
            background: none;
            border: 0;
            box-shadow: none;
            font-size: 0.66rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            line-height: 1.45;
            text-align: center;
            pointer-events: none;
            z-index: 25;
        }

        @media (hover: none) and (pointer: coarse), (max-width: 767px) {
            #mobile-experience-notice {
                display: block;
            }
        }

        #cinematic-curtain {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at center, rgba(0, 0, 0, 0.92) 0%, #000000 72%);
            opacity: 0;
            pointer-events: none;
            z-index: 9995;
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity;
        }

        .modal-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            box-sizing: border-box;
            background: transparent;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 320ms ease, visibility 0s linear 320ms;
        }

        .modal-overlay.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transition: opacity 320ms ease, visibility 0s;
        }

        .about-modal {
            width: min(33.333vw, 760px);
            color: #D8D8D8;
            background: transparent;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(216, 216, 216, 0.45);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75), 0 0 24px rgba(216, 216, 216, 0.16);
            padding: 24px;
            text-align: left;
            opacity: 0;
            transform: translateY(14px) scale(0.985);
            transition: opacity 320ms ease, transform 320ms ease;
        }

        .modal-overlay.is-open .about-modal {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .about-modal h2 {
            margin: 0 0 14px;
            font-family: 'Jacquard 24', serif;
            font-size: 3rem;
            font-weight: 400;
            line-height: 0.9;
            text-transform: none;
        }

        .about-modal p {
            margin: 0 0 18px;
            color: #D8D8D8;
            font-size: 0.8rem;
            line-height: 1.6;
        }

        .about-modal__figure {
            margin: 0 0 18px;
        }

        .about-modal__image {
            display: block;
            width: 100%;
            height: min(62vh, 560px);
            object-fit: cover;
            filter: grayscale(1);
            border: 0;
            outline: 0;
            background: transparent;
        }

        @media (max-width: 900px) {
            .about-modal {
                width: min(100%, 420px);
            }
        }

        .about-modal__caption {
            margin-top: 10px;
            color: #D8D8D8;
            font-size: 0.56rem;
            line-height: 1.35;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
