  :root {
            --bg-cream: #FDF6E3;
            --coral: #FF6F61;
            --purple: #6B5B95;
            --green: #88B04B;
            --dark: #333333;
        }

        body {
            font-family: 'Fredoka One', cursive;
            background-color: var(--bg-cream);
            color: var(--dark);
            margin: 0;
            overflow-x: hidden;
        }

        /* --- Animations --- */
        @keyframes bounceSequence {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-30px); }
            60% { transform: translateY(-15px); }
        }

        .letter-bounce {
            display: inline-block;
            animation: bounceSequence 2s infinite;
        }

        @keyframes floating {
            0% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(10px, -20px) rotate(2deg); }
            66% { transform: translate(-10px, -10px) rotate(-2deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }

        .float-anim { animation: floating 6s ease-in-out infinite; }

        @keyframes bubbleUp {
            0% { transform: translateY(110vh) scale(0.5); opacity: 0; }
            50% { opacity: 0.3; }
            100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
        }

        .bg-bubble {
            position: fixed;
            background: radial-gradient(circle, rgba(255,111,97,0.2) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: -1;
            pointer-events: none;
            animation: bubbleUp 15s linear infinite;
        }

        /* --- UI Elements --- */
        .nav-item {
            background: white;
            padding: 10px 24px;
            border-radius: 30px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.05);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }
        .nav-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); color: var(--coral); }

        .tilt-card {
            transition: transform 0.5s ease;
            transform-style: preserve-3d;
        }
        .tilt-card:hover { transform: rotateX(10deg) rotateY(-10deg) scale(1.05); }

        .comic-border-glow:hover {
            box-shadow: 0 0 25px var(--coral);
            border-color: var(--coral);
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .masonry-item:hover { transform: scale(1.03) translateY(-5px); }

        .page-node { display: none; }
        .page-node.active { display: block; }

        .no-scrollbar::-webkit-scrollbar { display: none; }
        
        /* Modal Custom Styles */
        #main-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(51, 51, 51, 0.85);
            backdrop-filter: blur(8px);
            padding: 20px;
            align-items: center;
            justify-content: center;
        }

        .modal-inner {
            background: white;
            width: 100%;
            max-width: 1000px;
            max-height: 90vh;
            border-radius: 40px;
            overflow-y: auto;
            position: relative;
            padding: 40px;
        }
    