            -webkit-text-stroke: 1px black;
            color: transparent;
        }
        .dark .text-outline-thick {
            -webkit-text-stroke: 1px white;
        }
        .scribble-path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: dash 2s linear forwards;
        }
        @keyframes dash {
            to {
                stroke-dashoffset: 0;
            }
        }
        .collage-shadow {
            box-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
        }
        .dark .collage-shadow {
            box-shadow: 8px 8px 0px 0px rgba(255,255,255,0.9);
        }
        .polaroid-shadow {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 5px 5px 0px 0px rgba(0,0,0,1);
        }
        .dark .polaroid-shadow {
             box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3), 5px 5px 0px 0px rgba(242, 70, 13, 1);
        }.texture-overlay {
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
            opacity: 0.4;
            pointer-events: none;
        }
        .sticker-nav {
            transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .sticker-nav:hover {
            transform: scale(1.05) rotate(2deg);
        }
        .sticker-nav:active {
            transform: scale(0.95);
        }
