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

html {
    scroll-behavior: auto;
    image-rendering: pixelated;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
}

body {
    background: #0a0a0f;
    color: #e8e0f0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.3vw, 1.15rem);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CRT Scan-line overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

a {
    color: #00f0ff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    transition: text-shadow 0.3s;
}
a:hover {
    text-shadow: 0 0 8px #00f0ff, 0 0 20px rgba(0, 240, 255, 0.4);
}

/* === SCENE 1: LOADING SCREEN === */
#loading-screen {
    width: 100%;
    height: 100vh;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
}

#typewriter-cursor {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(0.8rem, 1.1vw, 1rem);
    letter-spacing: 0.05em;
    color: #39ff14;
    text-shadow: 0 0 8px #39ff14, 0 0 20px rgba(57, 255, 20, 0.4);
}

#cursor-blink {
    animation: blink 0.6s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Loading complete state */
#loading-screen.loaded {
    animation: fadeToNight 1.5s ease forwards;
}

@keyframes fadeToNight {
    to {
        background: #0d0b1a;
    }
}

/* === SCENE 2: SKYLINE === */
#skyline-scene {
    width: 100%;
    min-height: 150vh;
    background: linear-gradient(to bottom, #0d0b1a 0%, #0d0b1a 60%, #151226 100%);
    position: relative;
    overflow: hidden;
}

/* Pixel rain */
#pixel-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.rain-drop {
    position: absolute;
    width: 1px;
    height: 1px;
    background: #00f0ff;
    opacity: 0.3;
    animation: fall linear infinite;
}

@keyframes fall {
    0% { transform: translateY(-10px); }
    100% { transform: translateY(100vh); }
}

/* Clouds */
.cloud {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.15;
}

.cloud-1 {
    top: 8%;
    width: 1px;
    height: 1px;
    transform: scale(4);
    box-shadow:
        0px 0px 0 0 #6b6380,
        1px 0px 0 0 #6b6380,
        2px 0px 0 0 #6b6380,
        3px 0px 0 0 #6b6380,
        -1px 1px 0 0 #6b6380,
        0px 1px 0 0 #6b6380,
        1px 1px 0 0 #6b6380,
        2px 1px 0 0 #6b6380,
        3px 1px 0 0 #6b6380,
        4px 1px 0 0 #6b6380,
        -2px 2px 0 0 #6b6380,
        -1px 2px 0 0 #6b6380,
        0px 2px 0 0 #6b6380,
        1px 2px 0 0 #6b6380,
        2px 2px 0 0 #6b6380,
        3px 2px 0 0 #6b6380,
        4px 2px 0 0 #6b6380,
        5px 2px 0 0 #6b6380;
    animation: driftCloud 12s linear infinite;
}

.cloud-2 {
    top: 14%;
    width: 1px;
    height: 1px;
    transform: scale(3);
    box-shadow:
        0px 0px 0 0 #6b6380,
        1px 0px 0 0 #6b6380,
        2px 0px 0 0 #6b6380,
        -1px 1px 0 0 #6b6380,
        0px 1px 0 0 #6b6380,
        1px 1px 0 0 #6b6380,
        2px 1px 0 0 #6b6380,
        3px 1px 0 0 #6b6380;
    animation: driftCloud 8s linear infinite;
    animation-delay: -3s;
}

.cloud-3 {
    top: 6%;
    width: 1px;
    height: 1px;
    transform: scale(3);
    box-shadow:
        0px 0px 0 0 #6b6380,
        1px 0px 0 0 #6b6380,
        2px 0px 0 0 #6b6380,
        3px 0px 0 0 #6b6380,
        4px 0px 0 0 #6b6380,
        -1px 1px 0 0 #6b6380,
        0px 1px 0 0 #6b6380,
        1px 1px 0 0 #6b6380,
        2px 1px 0 0 #6b6380,
        3px 1px 0 0 #6b6380,
        4px 1px 0 0 #6b6380,
        5px 1px 0 0 #6b6380;
    animation: driftCloud 15s linear infinite;
    animation-delay: -7s;
}

@keyframes driftCloud {
    0% { left: -60px; }
    100% { left: calc(100% + 60px); }
}

/* Skyline layer */
#skyline-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    z-index: 3;
    will-change: transform;
}

.building {
    position: relative;
    image-rendering: pixelated;
}

.b1 { width: 24px; height: 120px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 4px 20px 0 0 #ff2d95, 4px 40px 0 0 #00f0ff, 4px 70px 0 0 #f0c040; }
.b2 { width: 32px; height: 180px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 6px 30px 0 0 #00f0ff, 6px 60px 0 0 #ff2d95, 6px 100px 0 0 #f0c040, 6px 140px 0 0 #00f0ff; }
.b3 { width: 20px; height: 100px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 4px 20px 0 0 #f0c040, 4px 50px 0 0 #39ff14; }
.b4 { width: 40px; height: 240px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 8px 40px 0 0 #ff2d95, 8px 80px 0 0 #00f0ff, 8px 120px 0 0 #f0c040, 8px 160px 0 0 #ff2d95, 8px 200px 0 0 #00f0ff; }
.b5 { width: 28px; height: 160px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 5px 30px 0 0 #00f0ff, 5px 70px 0 0 #f0c040, 5px 110px 0 0 #ff2d95; }
.b6 { width: 48px; height: 300px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 10px 40px 0 0 #ff2d95, 10px 80px 0 0 #00f0ff, 10px 130px 0 0 #f0c040, 10px 180px 0 0 #39ff14, 10px 230px 0 0 #ff2d95; }
.b7 { width: 28px; height: 140px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 5px 25px 0 0 #f0c040, 5px 60px 0 0 #00f0ff, 5px 100px 0 0 #ff2d95; }
.b8 { width: 36px; height: 200px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 7px 35px 0 0 #00f0ff, 7px 75px 0 0 #ff2d95, 7px 120px 0 0 #f0c040, 7px 160px 0 0 #00f0ff; }
.b9 { width: 20px; height: 90px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 4px 20px 0 0 #ff2d95, 4px 50px 0 0 #39ff14; }
.b10 { width: 32px; height: 170px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 6px 30px 0 0 #f0c040, 6px 70px 0 0 #00f0ff, 6px 120px 0 0 #ff2d95; }
.b11 { width: 24px; height: 130px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 4px 25px 0 0 #00f0ff, 4px 60px 0 0 #f0c040, 4px 95px 0 0 #ff2d95; }
.b12 { width: 28px; height: 110px; background: #151226; box-shadow: inset 0 0 0 1px #1a1530, 5px 20px 0 0 #ff2d95, 5px 55px 0 0 #00f0ff; }

/* Neon window flicker */
.building::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #f0c040;
    top: 15px;
    left: 50%;
    animation: windowFlicker 3s steps(2) infinite;
    opacity: 0.8;
}

@keyframes windowFlicker {
    0%, 45% { opacity: 0.8; }
    50%, 55% { opacity: 0.2; }
    60%, 100% { opacity: 0.8; }
}

/* Neon sign */
#neon-sign {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
}

.neon-title {
    font-family: 'Silkscreen', cursive;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 7rem);
    color: #ff2d95;
    text-shadow:
        0 0 8px #ff2d95,
        0 0 20px rgba(255, 45, 149, 0.6),
        0 0 40px rgba(255, 45, 149, 0.3),
        0 0 8px #00f0ff,
        0 0 20px rgba(0, 240, 255, 0.2);
    animation: neonFlicker 4s ease-in-out infinite;
    -webkit-font-smoothing: none;
}

@keyframes neonFlicker {
    0%, 4% { opacity: 1; text-shadow: 0 0 8px #ff2d95, 0 0 20px rgba(255,45,149,0.6), 0 0 40px rgba(255,45,149,0.3); }
    5%, 6% { opacity: 0.85; text-shadow: 0 0 4px #ff2d95, 0 0 10px rgba(255,45,149,0.4); }
    7%, 49% { opacity: 1; text-shadow: 0 0 8px #ff2d95, 0 0 20px rgba(255,45,149,0.6), 0 0 40px rgba(255,45,149,0.3); }
    50%, 51% { opacity: 0.88; text-shadow: 0 0 14px #ff2d95, 0 0 28px rgba(255,45,149,0.7); }
    52%, 100% { opacity: 1; text-shadow: 0 0 8px #ff2d95, 0 0 20px rgba(255,45,149,0.6), 0 0 40px rgba(255,45,149,0.3); }
}

/* Floating elements */
.floater {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    font-size: 16px;
    animation: float 10s ease-in-out infinite;
    animation-delay: calc(var(--i) * 1.7s);
}

.star-floater { color: #f0c040; opacity: 0.5; }
.note-floater { color: #00f0ff; opacity: 0.4; }
.code-floater { color: #39ff14; opacity: 0.35; font-family: 'Share Tech Mono', monospace; font-size: 14px; }
.heart-floater { color: #ff2d95; opacity: 0.45; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

/* === SCENE 3: THE ROOM === */
#room-scene {
    width: 100%;
    min-height: 200vh;
    background: linear-gradient(to bottom, #151226 0%, #151226 80%, #0d0b1a 100%);
    position: relative;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#room-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin-bottom: 80px;
}

/* Desk */
#desk {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

#monitor {
    width: 80px;
    height: 56px;
    background: #1a1530;
    border: 3px solid #6b6380;
    position: relative;
    margin: 0 auto;
}

#monitor-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding: 4px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px;
    color: #39ff14;
}

.monitor-cursor {
    animation: blink 0.8s step-end infinite;
    font-size: 8px;
}

#desk-surface {
    width: 120px;
    height: 8px;
    background: #6b6380;
    margin-top: 4px;
}

#desk-leg-left, #desk-leg-right {
    width: 4px;
    height: 32px;
    background: #6b6380;
    position: absolute;
}

#desk-leg-left { bottom: -40px; left: 8px; }
#desk-leg-right { bottom: -40px; right: 8px; }

/* Cat sprite - simplified pixel art */
#cat-sprite {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 1px;
    height: 1px;
    transform: scale(4);
    image-rendering: pixelated;
    box-shadow:
        /* ears */
        2px 0px 0 0 #6b6380,
        5px 0px 0 0 #6b6380,
        1px 1px 0 0 #6b6380,
        2px 1px 0 0 #6b6380,
        3px 1px 0 0 #6b6380,
        4px 1px 0 0 #6b6380,
        5px 1px 0 0 #6b6380,
        6px 1px 0 0 #6b6380,
        /* head */
        1px 2px 0 0 #6b6380,
        2px 2px 0 0 #e8e0f0,
        3px 2px 0 0 #6b6380,
        4px 2px 0 0 #6b6380,
        5px 2px 0 0 #e8e0f0,
        6px 2px 0 0 #6b6380,
        1px 3px 0 0 #6b6380,
        2px 3px 0 0 #6b6380,
        3px 3px 0 0 #ff2d95,
        4px 3px 0 0 #ff2d95,
        5px 3px 0 0 #6b6380,
        6px 3px 0 0 #6b6380,
        /* body */
        0px 4px 0 0 #6b6380,
        1px 4px 0 0 #6b6380,
        2px 4px 0 0 #6b6380,
        3px 4px 0 0 #6b6380,
        4px 4px 0 0 #6b6380,
        5px 4px 0 0 #6b6380,
        6px 4px 0 0 #6b6380,
        7px 4px 0 0 #6b6380,
        0px 5px 0 0 #6b6380,
        1px 5px 0 0 #6b6380,
        2px 5px 0 0 #6b6380,
        3px 5px 0 0 #6b6380,
        4px 5px 0 0 #6b6380,
        5px 5px 0 0 #6b6380,
        6px 5px 0 0 #6b6380,
        7px 5px 0 0 #6b6380,
        /* tail */
        7px 3px 0 0 #6b6380,
        8px 2px 0 0 #6b6380,
        9px 1px 0 0 #6b6380;
    animation: catIdle 2s steps(3) infinite;
}

@keyframes catIdle {
    0%, 66% { transform: scale(4) translateY(0); }
    33% { transform: scale(4) translateY(-1px); }
}

/* Desk lamp */
#desk-lamp {
    position: absolute;
    bottom: 112px;
    left: 100px;
}

.lamp-shade {
    width: 20px;
    height: 8px;
    background: #f0c040;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.lamp-light {
    position: absolute;
    top: 8px;
    left: -4px;
    width: 28px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(240, 192, 64, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.lamp-arm {
    width: 2px;
    height: 20px;
    background: #6b6380;
    margin: 0 auto;
}

.lamp-base {
    width: 16px;
    height: 4px;
    background: #6b6380;
    margin: 0 auto;
}

/* Coffee mug */
#coffee-mug {
    position: absolute;
    bottom: 80px;
    left: 180px;
    width: 1px;
    height: 1px;
    transform: scale(3);
    box-shadow:
        1px 0px 0 0 #e8e0f0,
        2px 0px 0 0 #e8e0f0,
        3px 0px 0 0 #e8e0f0,
        0px 1px 0 0 #e8e0f0,
        1px 1px 0 0 #6b6380,
        2px 1px 0 0 #6b6380,
        3px 1px 0 0 #e8e0f0,
        4px 1px 0 0 #e8e0f0,
        0px 2px 0 0 #e8e0f0,
        1px 2px 0 0 #6b6380,
        2px 2px 0 0 #6b6380,
        3px 2px 0 0 #e8e0f0,
        4px 2px 0 0 #e8e0f0,
        0px 3px 0 0 #e8e0f0,
        1px 3px 0 0 #e8e0f0,
        2px 3px 0 0 #e8e0f0,
        3px 3px 0 0 #e8e0f0;
}

/* Shelf */
#shelf {
    position: absolute;
    top: 40px;
    right: 40px;
}

.shelf-board {
    width: 60px;
    height: 4px;
    background: #6b6380;
}

.book {
    display: inline-block;
    width: 8px;
    margin-right: 2px;
    vertical-align: bottom;
}

.book-1 { height: 28px; background: #ff2d95; }
.book-2 { height: 24px; background: #00f0ff; }
.book-3 { height: 30px; background: #f0c040; }
.book-4 { height: 22px; background: #39ff14; }
.book-5 { height: 26px; background: #ff2d95; }

/* Room window */
#room-window {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 64px;
    height: 48px;
    border: 3px solid #6b6380;
    background: #0d0b1a;
    overflow: hidden;
}

.window-pane {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #6b6380;
}

.window-buildings {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, #151226 0%, #1a1530 25%, #151226 50%, #1a1530 75%, #151226 100%);
}

/* Dialogue boxes */
.dialogue-box {
    max-width: 560px;
    width: 100%;
    margin: 40px auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: calc(var(--i) * 120ms);
}

.dialogue-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.dialogue-inner {
    border: 3px solid #e8e0f0;
    background: rgba(13, 11, 26, 0.9);
    padding: 24px 28px;
    position: relative;
    /* Pixel notched corners */
    clip-path: polygon(
        4px 0%, calc(100% - 4px) 0%,
        100% 4px, 100% calc(100% - 4px),
        calc(100% - 4px) 100%, 4px 100%,
        0% calc(100% - 4px), 0% 4px
    );
}

.dialogue-heading {
    font-family: 'Silkscreen', cursive;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    margin-bottom: 12px;
}

.dialogue-inner p {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    color: #e8e0f0;
    line-height: 1.7;
}

/* === SCENE 4: GALLERY === */
#gallery-scene {
    width: 100%;
    height: 300vh;
    position: relative;
    background: #0d0b1a;
}

#gallery-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#gallery-track {
    display: flex;
    gap: 60px;
    padding: 0 80px;
    will-change: transform;
}

.gallery-frame {
    flex-shrink: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(var(--i) * 150ms);
}

.gallery-frame.visible {
    opacity: 1;
    transform: translateY(0);
}

.frame-border {
    width: 200px;
    height: 150px;
    border: 3px solid #f0c040;
    box-shadow: 0 0 8px rgba(240, 192, 64, 0.3);
    overflow: hidden;
    background: #0a0a0f;
}

.frame-art {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Pixel art pieces for gallery */
.frame-art-1 {
    background: linear-gradient(to bottom, #0d0b1a 0%, #151226 100%);
}
.frame-art-1::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 1px;
    transform: scale(3) translateX(-50%);
    box-shadow:
        0 0 0 0 #00f0ff, 1px 0 0 0 #00f0ff, 2px 0 0 0 #00f0ff, 3px 0 0 0 #00f0ff,
        0 -1px 0 0 #f0c040, 1px -1px 0 0 #f0c040, 2px -1px 0 0 #f0c040,
        0 -2px 0 0 #e8e0f0, 1px -2px 0 0 #e8e0f0,
        5px -3px 0 0 #ff2d95, 6px -3px 0 0 #ff2d95;
}

.frame-art-2 {
    background: #0a0a0f;
}
.frame-art-2::before {
    content: '♪ ♫ ♪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #ff2d95;
    text-shadow: 0 0 8px rgba(255, 45, 149, 0.5);
}

.frame-art-3 {
    background: linear-gradient(135deg, #0d0b1a, #151226);
}
.frame-art-3::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00f0ff;
    box-shadow: 0 8px 0 #e8e0f0, 0 16px 0 #e8e0f0, 0 24px 0 #6b6380;
}

.frame-art-4 {
    background: #0a0a0f;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 1px;
    padding: 12px;
}
.frame-art-4::before {
    content: '';
    grid-column: 2 / 5;
    grid-row: 2 / 5;
    background: #39ff14;
}
.frame-art-4::after {
    content: '';
    grid-column: 5 / 8;
    grid-row: 3 / 6;
    background: #ff2d95;
}

.frame-art-5 {
    background: #151226;
}
.frame-art-5::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid #6b6380;
    background: #0a0a0f;
}
.frame-art-5::after {
    content: '//';
    position: absolute;
    top: 35px;
    left: 35px;
    color: #39ff14;
    font-family: 'Share Tech Mono', monospace;
    font-size: 20px;
}

.frame-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: #6b6380;
    margin-top: 12px;
    letter-spacing: 0.02em;
}

/* === SCENE 5: CREDITS === */
#credits-scene {
    width: 100%;
    height: 100vh;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#credits-content {
    text-align: center;
    animation: creditsScroll 12s linear infinite;
}

@keyframes creditsScroll {
    0% { transform: translateY(100vh); }
    100% { transform: translateY(-100%); }
}

.credit-line {
    font-family: 'Silkscreen', cursive;
    font-weight: 400;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    color: #e8e0f0;
    margin-bottom: 16px;
    -webkit-font-smoothing: none;
}

.credit-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ff2d95;
    text-shadow: 0 0 8px #ff2d95, 0 0 20px rgba(255, 45, 149, 0.4);
    margin-bottom: 32px;
}

.credit-spacer {
    height: 24px;
}

.credit-link a {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* Pixel heart */
#credit-heart {
    margin: 32px auto 0;
    width: 1px;
    height: 1px;
    transform: scale(4);
    box-shadow:
        1px 0px 0 0 #ff2d95,
        2px 0px 0 0 #ff2d95,
        4px 0px 0 0 #ff2d95,
        5px 0px 0 0 #ff2d95,
        0px 1px 0 0 #ff2d95,
        1px 1px 0 0 #ff2d95,
        2px 1px 0 0 #ff2d95,
        3px 1px 0 0 #ff2d95,
        4px 1px 0 0 #ff2d95,
        5px 1px 0 0 #ff2d95,
        6px 1px 0 0 #ff2d95,
        0px 2px 0 0 #ff2d95,
        1px 2px 0 0 #ff2d95,
        2px 2px 0 0 #ff2d95,
        3px 2px 0 0 #ff2d95,
        4px 2px 0 0 #ff2d95,
        5px 2px 0 0 #ff2d95,
        6px 2px 0 0 #ff2d95,
        1px 3px 0 0 #ff2d95,
        2px 3px 0 0 #ff2d95,
        3px 3px 0 0 #ff2d95,
        4px 3px 0 0 #ff2d95,
        5px 3px 0 0 #ff2d95,
        2px 4px 0 0 #ff2d95,
        3px 4px 0 0 #ff2d95,
        4px 4px 0 0 #ff2d95,
        3px 5px 0 0 #ff2d95;
}

/* === STAGGER ANIMATION BASE === */
.stagger-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(var(--i, 0) * 120ms);
}

.stagger-in.visible {
    opacity: 1;
    transform: translateY(0);
}
