
        :root {
            --sloth-green: #2d5a27;
            --sloth-moss: #5d7a59;
            --sloth-bark: #4a3728;
            --sloth-sun: #fff9c4;
            --sloth-accent: #8d6e63;
        }

        body.sloth-page {
            background: #0f1a0d;
            color: #e0e7e1;
            margin: 0;
            overflow-x: hidden;
            font-family: 'Outfit', sans-serif;
        }

        /* Canopy Hero */
        .sloth-hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(to bottom, rgba(15, 26, 13, 0.4), #0f1a0d), 
                        url('../assets/sloth_close_up_canopy_1775436642468.png');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .dappled-light {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(255, 249, 196, 0.1), transparent 40%),
                        radial-gradient(circle at 80% 70%, rgba(255, 249, 196, 0.05), transparent 30%);
            animation: sun-shimmer 8s infinite alternate ease-in-out;
            pointer-events: none;
        }

        @keyframes sun-shimmer {
            0% { opacity: 0.3; transform: translate(0, 0); }
            100% { opacity: 0.7; transform: translate(20px, 20px); }
        }

        .sloth-title {
            font-family: 'Abril Fatface', cursive;
            font-size: clamp(3.5rem, 12vw, 7rem);
            color: #fff;
            text-shadow: 0 0 30px rgba(93, 122, 89, 0.5);
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .sloth-subtitle {
            font-size: 1.5rem;
            color: var(--sloth-sun);
            letter-spacing: 6px;
            text-transform: uppercase;
            font-weight: 300;
        }

        /* Spot the Sloth Interaction */
        .spotting-section {
            padding: 8rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .canopy-box {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 550px;
            margin: 4rem auto;
            border-radius: 40px;
            overflow: hidden;
            cursor: none;
            box-shadow: 0 40px 80px rgba(0,0,0,0.6);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .canopy-camo {
            position: absolute;
            width: 100%; height: 100%;
            background: url('../assets/sloth_finding_game_canopy_1775436670374.png') no-repeat center;
            background-size: cover;
            filter: brightness(0.5) saturate(0.7);
        }

        .magnifier {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid var(--sloth-sun);
            box-shadow: 0 0 30px rgba(255,249,196,0.3);
            background: url('../assets/sloth_finding_game_canopy_1775436670374.png') no-repeat;
            pointer-events: none;
            display: none;
            z-index: 10;
        }

        /* Slow Motion Timeline */
        .slow-container {
            padding: 4rem 1rem;
        }

        .slow-stage {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s ease;
            max-width: 1100px;
            margin: 4rem auto;
        }

        .slow-stage.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slow-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: center;
            background: rgba(45, 90, 39, 0.1);
            padding: 5rem;
            border-radius: 50px;
            border: 1px solid rgba(93, 122, 89, 0.2);
            backdrop-filter: blur(10px);
        }

        .slow-image {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .slow-info h2 {
            font-family: 'Abril Fatface', cursive;
            font-size: 3.5rem;
            color: var(--sloth-sun);
            margin-bottom: 2rem;
        }

        .slow-info p {
            font-size: 1.4rem;
            line-height: 1.9;
            color: #c9d6ca;
        }

        /* Sighting Widget */
        .sighting-grid {
            padding: 8rem 2rem;
            background: linear-gradient(to bottom, transparent, rgba(45, 90, 39, 0.15));
            text-align: center;
        }

        .sighting-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 2.5rem;
            border-radius: 25px;
            transition: all 0.4s ease;
        }

        .sighting-card:hover {
            transform: translateY(-10px);
            background: rgba(93, 122, 89, 0.1);
            border-color: var(--sloth-sun);
        }

        .sighting-title {
            font-family: 'Abril Fatface', cursive;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--sloth-sun);
        }

        .moss-btn {
            display: inline-block;
            margin-top: 3rem;
            padding: 1.5rem 4.5rem;
            background: var(--sloth-sun);
            color: #1a2e18;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            border-radius: 100px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 249, 196, 0.2);
        }

        .moss-btn:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 20px 50px rgba(255, 249, 196, 0.4);
        }

        @media (max-width: 768px) {
            .slow-content { grid-template-columns: 1fr; padding: 2.5rem; gap: 3rem; }
            .sloth-title { font-size: 3.5rem; }
            .canopy-box { height: 350px; }
            .magnifier { display: none !important; } /* Magnifier doesn't work well on mobile touch */
        }
    