/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    background: #F5EDE0;
    color: #4A3F2F;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.75;
}

/* === HORIZONTAL SCROLL CONTAINER === */
.chambers {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 600vw;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chambers::-webkit-scrollbar {
    display: none;
}

/* === CHAMBER BASE === */
.chamber {
    min-width: 100vw;
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #F5EDE0;
}

.chamber-label {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9B8A6E;
}

/* === TYPOGRAPHY === */
.chamber-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    letter-spacing: -0.02em;
    color: #4A3F2F;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.chamber-body {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.75;
    color: #4A3F2F;
    max-width: 38ch;
}

/* === PROGRESS TRACK === */
.horizontal-track {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 100;
    pointer-events: none;
}

.progress-line {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E8DCC8, #D4A03C, #3A8C7A);
    opacity: 0.5;
}

/* === NAVIGATION FISH === */
.fish {
    position: absolute;
    bottom: 8px;
    width: 28px;
    height: 16px;
    transition: left 0.3s ease-out;
}

.fish .fish-body {
    position: absolute;
    width: 20px;
    height: 14px;
    border-radius: 50%;
    left: 0;
    top: 1px;
}

.fish .fish-tail {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    right: 0;
    top: 3px;
}

.fish .fish-eye {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #4A3F2F;
    left: 4px;
    top: 5px;
}

.fish-1 .fish-body { background: #D4A03C; }
.fish-1 .fish-tail { border-left: 8px solid #D4A03C; }

.fish-2 .fish-body { background: #3A8C7A; }
.fish-2 .fish-tail { border-left: 8px solid #3A8C7A; }

.fish-3 .fish-body { background: #C47D5A; }
.fish-3 .fish-tail { border-left: 8px solid #C47D5A; }

.fish-4 .fish-body { background: #A89BB5; }
.fish-4 .fish-tail { border-left: 8px solid #A89BB5; }

.fish-1 { left: 5%; }
.fish-2 { left: 7%; }
.fish-3 { left: 3%; }
.fish-4 { left: 9%; }

/* === CHAMBER 0: ENTRY === */
.chamber-0 {
    flex-direction: column;
}

.hero-glyph {
    position: relative;
    z-index: 2;
}

.glyph-text {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: clamp(8rem, 22vw, 18rem);
    color: transparent;
    background: radial-gradient(ellipse at 40% 35%, #FBF3E4 0%, #E8DCC8 40%, #D4C4A8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 8px 16px rgba(46, 37, 24, 0.12)) drop-shadow(0 2px 4px rgba(46, 37, 24, 0.08));
    animation: breathe 4s ease-in-out infinite, glitchHero 8s steps(2) infinite;
    display: inline-block;
    text-shadow:
        1px 0 0 rgba(212, 160, 60, 0),
        -1px 0 0 rgba(58, 140, 122, 0);
    letter-spacing: 0.05em;
}

@keyframes breathe {
    0%, 100% { transform: scale(1.0); }
    50% { transform: scale(1.02); }
}

@keyframes glitchHero {
    0%, 89%, 93%, 100% {
        text-shadow: 0 0 0 transparent, 0 0 0 transparent;
        transform: scale(1.0) translateX(0);
    }
    90% {
        text-shadow: -1px 0 0 rgba(212, 160, 60, 0.5), 1px 0 0 rgba(58, 140, 122, 0.5);
        transform: scale(1.0) translateX(1px);
    }
    91% {
        text-shadow: 1px 0 0 rgba(212, 160, 60, 0.5), -1px 0 0 rgba(58, 140, 122, 0.5);
        transform: scale(1.0) translateX(-1px);
    }
    92% {
        text-shadow: -1px 0 0 rgba(212, 160, 60, 0.3), 1px 0 0 rgba(58, 140, 122, 0.3);
        transform: scale(1.0) translateX(0);
    }
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9B8A6E;
    margin-top: 1.5rem;
}

.ambient-fish {
    position: absolute;
    bottom: 30%;
    width: 36px;
    height: 20px;
    animation: swimAcross 25s linear infinite;
    z-index: 1;
}

.ambient-fish .fish-body {
    position: absolute;
    width: 24px;
    height: 16px;
    border-radius: 50%;
    background: #3A8C7A;
    left: 0;
    top: 2px;
}

.ambient-fish .fish-tail {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #3A8C7A;
    right: 0;
    top: 4px;
}

.ambient-fish .fish-eye {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #4A3F2F;
    left: 5px;
    top: 6px;
}

@keyframes swimAcross {
    0% { left: 110%; transform: scaleX(-1); }
    100% { left: -10%; transform: scaleX(-1); }
}

.scroll-hint {
    position: absolute;
    right: 3rem;
    bottom: 50%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulseHint 2s ease-in-out infinite;
}

.scroll-hint-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9B8A6E;
}

.scroll-hint-arrow {
    font-size: 1.2rem;
    color: #D4A03C;
}

@keyframes pulseHint {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.5; transform: translateX(5px); }
}

/* === CHAMBER CONTENT LAYOUT === */
.chamber-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 4rem;
}

.chamber-icon-area {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.chamber-text-area {
    flex: 0 0 40%;
    padding: 2rem 3rem;
}

.chamber-content-centered {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chamber-text-below {
    text-align: center;
    padding-top: 2rem;
}

.chamber-text-below .chamber-body {
    margin: 0 auto;
}

.chamber-text-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem 4rem;
}

.chamber-text-overlay {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    right: 4rem;
    text-align: center;
}

.chamber-text-overlay .chamber-body {
    margin: 0 auto;
}

/* === INFLATED 3D ICON TECHNIQUE === */
.inflated-icon {
    position: relative;
}

/* === PODIUM ICON (Chamber 1) === */
.podium-icon {
    width: 240px;
    height: 280px;
    transform: scale(0.85);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.podium-icon.visible {
    transform: scale(1.0);
}

.podium-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    border-radius: 40px;
    background: radial-gradient(ellipse at 35% 30%, #FBF3E4 0%, #E8DCC8 50%, #D4C4A8 100%);
    box-shadow:
        0 8px 16px rgba(46, 37, 24, 0.12),
        0 4px 8px rgba(46, 37, 24, 0.08),
        inset 0 -4px 12px rgba(46, 37, 24, 0.06);
}

.podium-stem {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 120px;
    border-radius: 25px;
    background: radial-gradient(ellipse at 40% 30%, #E8DCC8 0%, #D4C4A8 100%);
    box-shadow:
        0 8px 16px rgba(46, 37, 24, 0.10),
        inset 0 -2px 8px rgba(46, 37, 24, 0.05);
}

.podium-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 60px;
    border-radius: 30px;
    background: radial-gradient(ellipse at 40% 30%, #E8DCC8 0%, #D4C4A8 100%);
    box-shadow:
        0 8px 16px rgba(46, 37, 24, 0.12),
        0 4px 8px rgba(46, 37, 24, 0.08),
        inset 0 -4px 12px rgba(46, 37, 24, 0.06);
}

.podium-specular {
    position: absolute;
    top: 12px;
    left: calc(50% - 70px);
    width: 40px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(251, 243, 228, 0.8), transparent);
}

/* === SPEECH BUBBLE ICONS (Chamber 2) === */
.dual-icons {
    gap: 2rem;
    position: relative;
}

.speech-bubble-left,
.speech-bubble-right {
    width: 180px;
    height: 160px;
    position: relative;
}

.bubble-body {
    width: 160px;
    height: 120px;
    border-radius: 60px;
    background: radial-gradient(ellipse at 35% 30%, #FBF3E4 0%, #E8DCC8 50%, #D4C4A8 100%);
    box-shadow:
        0 8px 16px rgba(46, 37, 24, 0.12),
        0 4px 8px rgba(46, 37, 24, 0.08),
        inset 0 -4px 12px rgba(46, 37, 24, 0.06);
    position: relative;
}

.speech-bubble-left .bubble-tail {
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 0;
    height: 0;
    border-top: 20px solid #E8DCC8;
    border-right: 20px solid transparent;
    border-left: 10px solid transparent;
    filter: drop-shadow(0 4px 6px rgba(46, 37, 24, 0.08));
}

.speech-bubble-right .bubble-tail {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 0;
    height: 0;
    border-top: 20px solid #E8DCC8;
    border-left: 20px solid transparent;
    border-right: 10px solid transparent;
    filter: drop-shadow(0 4px 6px rgba(46, 37, 24, 0.08));
}

.bubble-specular {
    position: absolute;
    top: 15px;
    left: 25px;
    width: 35px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(251, 243, 228, 0.8), transparent);
}

.speech-bubble-right {
    transform: scaleX(-1);
}

.glitch-line-vertical {
    width: 2px;
    height: 200px;
    background: #D4A03C;
    opacity: 0.4;
    animation: glitchLine 3s steps(3) infinite;
}

@keyframes glitchLine {
    0%, 90%, 100% { opacity: 0.4; transform: translateX(0) scaleY(1); }
    92% { opacity: 0.8; transform: translateX(-2px) scaleY(1.02); }
    94% { opacity: 0.6; transform: translateX(3px) scaleY(0.98); }
    96% { opacity: 1; transform: translateX(-1px) scaleY(1.01); }
}

/* === SCALES ICON (Chamber 3) === */
.scales-icon {
    width: 320px;
    height: 220px;
    margin-bottom: 2rem;
}

.scales-beam {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    animation: scalesOscillate 6s ease-in-out infinite;
    transform-origin: center 40px;
}

@keyframes scalesOscillate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

.scales-fulcrum {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 80px;
    border-radius: 20px;
    background: radial-gradient(ellipse at 40% 30%, #E8DCC8 0%, #D4C4A8 100%);
    box-shadow:
        0 8px 16px rgba(46, 37, 24, 0.12),
        inset 0 -4px 12px rgba(46, 37, 24, 0.06);
    z-index: 2;
}

.scales-pan {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scales-pan-left {
    left: 20px;
}

.scales-pan-right {
    right: 20px;
}

.pan-chain {
    width: 2px;
    height: 40px;
    background: #D4C4A8;
}

.pan-orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 35% 30%, #FBF3E4 0%, #E8DCC8 50%, #D4C4A8 100%);
    box-shadow:
        0 8px 16px rgba(46, 37, 24, 0.12),
        0 4px 8px rgba(46, 37, 24, 0.08),
        inset 0 -6px 16px rgba(46, 37, 24, 0.06);
    position: relative;
}

.pan-specular {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 20px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(251, 243, 228, 0.9), transparent);
}

/* === HANDS ICON (Chamber 4) === */
.chamber-4 {
    background: #F0E4D0;
}

.hands-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    height: 50vh;
    padding-bottom: 2rem;
}

.hand-finger {
    border-radius: 30px;
    background: radial-gradient(ellipse at 40% 25%, #FBF3E4 0%, #E8DCC8 50%, #D4C4A8 100%);
    box-shadow:
        0 8px 16px rgba(46, 37, 24, 0.12),
        0 4px 8px rgba(46, 37, 24, 0.08),
        inset 0 -4px 12px rgba(46, 37, 24, 0.06);
}

.finger-1 {
    width: 36px;
    height: 160px;
    transform: rotate(-16deg);
    transform-origin: bottom center;
}

.finger-2 {
    width: 36px;
    height: 220px;
    transform: rotate(-8deg);
    transform-origin: bottom center;
}

.finger-3 {
    width: 36px;
    height: 260px;
    transform: rotate(0deg);
    transform-origin: bottom center;
}

.finger-4 {
    width: 36px;
    height: 220px;
    transform: rotate(8deg);
    transform-origin: bottom center;
}

.finger-5 {
    width: 36px;
    height: 160px;
    transform: rotate(16deg);
    transform-origin: bottom center;
}

/* Fish school in Chamber 4 */
.fish-school {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.school-fish {
    position: absolute;
    width: 28px;
    height: 16px;
    animation: schoolSwim 20s linear infinite;
}

.school-fish .fish-body {
    position: absolute;
    width: 20px;
    height: 12px;
    border-radius: 50%;
    left: 0;
    top: 2px;
}

.school-fish .fish-tail {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    right: 0;
    top: 3px;
}

.school-fish .fish-eye {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #4A3F2F;
    left: 4px;
    top: 5px;
}

.sf-1 { top: 15%; animation-delay: 0s; animation-duration: 22s; }
.sf-1 .fish-body { background: #D4A03C; }
.sf-1 .fish-tail { border-left: 8px solid #D4A03C; }

.sf-2 { top: 25%; animation-delay: -3s; animation-duration: 20s; }
.sf-2 .fish-body { background: #3A8C7A; }
.sf-2 .fish-tail { border-left: 8px solid #3A8C7A; }

.sf-3 { top: 20%; animation-delay: -6s; animation-duration: 24s; }
.sf-3 .fish-body { background: #C47D5A; }
.sf-3 .fish-tail { border-left: 8px solid #C47D5A; }

.sf-4 { top: 35%; animation-delay: -2s; animation-duration: 18s; }
.sf-4 .fish-body { background: #A89BB5; }
.sf-4 .fish-tail { border-left: 8px solid #A89BB5; }

.sf-5 { top: 10%; animation-delay: -8s; animation-duration: 26s; }
.sf-5 .fish-body { background: #D4A03C; }
.sf-5 .fish-tail { border-left: 8px solid #D4A03C; }

.sf-6 { top: 30%; animation-delay: -12s; animation-duration: 21s; }
.sf-6 .fish-body { background: #3A8C7A; }
.sf-6 .fish-tail { border-left: 8px solid #3A8C7A; }

.sf-7 { top: 18%; animation-delay: -5s; animation-duration: 23s; }
.sf-7 .fish-body { background: #C47D5A; }
.sf-7 .fish-tail { border-left: 8px solid #C47D5A; }

.sf-8 { top: 28%; animation-delay: -10s; animation-duration: 19s; }
.sf-8 .fish-body { background: #A89BB5; }
.sf-8 .fish-tail { border-left: 8px solid #A89BB5; }

@keyframes schoolSwim {
    0% { left: -5%; transform: scaleX(1); }
    100% { left: 105%; transform: scaleX(1); }
}

/* === CHAMBER 5: TERMINAL GALLERY === */
.chamber-5 {
    flex-direction: column;
}

.gallery-container {
    position: relative;
    width: 80%;
    height: 50vh;
}

.gallery-icon {
    position: absolute;
    transform: scale(0.3);
    opacity: 0.7;
}

.gallery-podium {
    top: 10%;
    left: 10%;
}

.gallery-podium .podium-top {
    width: 200px;
    height: 100px;
    border-radius: 40px;
    background: radial-gradient(ellipse at 35% 30%, #FBF3E4 0%, #E8DCC8 50%, #D4C4A8 100%);
    box-shadow: 0 8px 16px rgba(46, 37, 24, 0.12);
    position: relative;
}

.gallery-podium .podium-stem {
    width: 50px;
    height: 80px;
    border-radius: 25px;
    background: #E8DCC8;
    margin: -10px auto 0;
}

.gallery-podium .podium-base {
    width: 180px;
    height: 50px;
    border-radius: 25px;
    background: radial-gradient(ellipse at 35% 30%, #E8DCC8 0%, #D4C4A8 100%);
    box-shadow: 0 8px 16px rgba(46, 37, 24, 0.12);
    margin: -10px auto 0;
}

.gallery-bubble-l {
    top: 5%;
    left: 50%;
}

.gallery-bubble-l .bubble-body,
.gallery-bubble-r .bubble-body {
    width: 120px;
    height: 90px;
    border-radius: 45px;
    background: radial-gradient(ellipse at 35% 30%, #FBF3E4 0%, #E8DCC8 50%, #D4C4A8 100%);
    box-shadow: 0 8px 16px rgba(46, 37, 24, 0.12);
}

.gallery-bubble-l .bubble-tail {
    width: 0;
    height: 0;
    border-top: 15px solid #E8DCC8;
    border-right: 15px solid transparent;
    margin-left: 15px;
}

.gallery-bubble-r {
    top: 15%;
    left: 65%;
    transform: scale(0.3) scaleX(-1);
}

.gallery-bubble-r .bubble-tail {
    width: 0;
    height: 0;
    border-top: 15px solid #E8DCC8;
    border-right: 15px solid transparent;
    margin-left: 15px;
}

.gallery-scales {
    top: 40%;
    left: 35%;
}

.gallery-scales .scales-beam {
    width: 200px;
    height: 140px;
    display: flex;
    justify-content: center;
    position: relative;
    animation: scalesOscillate 6s ease-in-out infinite;
    transform-origin: center 30px;
}

.gallery-scales .scales-fulcrum {
    width: 30px;
    height: 60px;
    border-radius: 15px;
    background: #E8DCC8;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-scales .pan-orb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 35% 30%, #FBF3E4 0%, #E8DCC8 100%);
    box-shadow: 0 6px 12px rgba(46, 37, 24, 0.1);
}

.gallery-scales .scales-pan-left {
    position: absolute;
    left: 10px;
    top: 0;
}

.gallery-scales .scales-pan-right {
    position: absolute;
    right: 10px;
    top: 0;
}

.gallery-hands {
    top: 50%;
    right: 15%;
    display: flex;
    gap: 6px;
    align-items: flex-end;
}

.gallery-hands .hand-finger {
    width: 20px;
    border-radius: 15px;
    background: radial-gradient(ellipse at 40% 25%, #FBF3E4 0%, #E8DCC8 50%, #D4C4A8 100%);
    box-shadow: 0 6px 12px rgba(46, 37, 24, 0.1);
}

.gallery-hands .finger-1 { height: 80px; transform: rotate(-16deg); }
.gallery-hands .finger-2 { height: 110px; transform: rotate(-8deg); }
.gallery-hands .finger-3 { height: 130px; transform: rotate(0deg); }
.gallery-hands .finger-4 { height: 110px; transform: rotate(8deg); }
.gallery-hands .finger-5 { height: 80px; transform: rotate(16deg); }

.terminal-text {
    text-align: center;
    z-index: 2;
    margin-top: 2rem;
}

.terminal-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: #4A3F2F;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.terminal-domain {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9B8A6E;
}

/* === CHAMBER TRANSITION GLITCH === */
.chamber.glitch-active {
    animation: chamberGlitch 200ms steps(3) forwards;
}

@keyframes chamberGlitch {
    0% { filter: none; transform: translateX(0); }
    25% { filter: none; transform: translateX(2px); box-shadow: inset -3px 0 0 rgba(212, 160, 60, 0.3), inset 3px 0 0 rgba(58, 140, 122, 0.3); }
    50% { filter: none; transform: translateX(-3px); box-shadow: inset 4px 0 0 rgba(58, 140, 122, 0.3), inset -4px 0 0 rgba(212, 160, 60, 0.3); }
    75% { filter: none; transform: translateX(1px); box-shadow: inset -2px 0 0 rgba(212, 160, 60, 0.2), inset 2px 0 0 rgba(58, 140, 122, 0.2); }
    100% { filter: none; transform: translateX(0); box-shadow: none; }
}

/* === SHADOW COLOR REFERENCE: #2E2518 (Deep Honey) === */
.chambers {
    --shadow-deep-honey: #2E2518;
}

/* === DEPTH LAYERS === */
.chamber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(232, 220, 200, 0.3) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Floating ambient elements for depth */
.chamber::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 220, 200, 0.4), transparent 70%);
    filter: blur(1px);
    pointer-events: none;
    z-index: 0;
}

.chamber-0::after { top: 10%; right: 15%; }
.chamber-1::after { bottom: 20%; left: 10%; }
.chamber-2::after { top: 15%; right: 20%; }
.chamber-3::after { bottom: 15%; right: 10%; }
.chamber-4::after { top: 20%; left: 15%; }
.chamber-5::after { bottom: 25%; left: 30%; }
