
        :root {
            --jungle-night: #0a100d;
            --canopy-dark: #122119;
            --amber-glow: #fbb03b;
            --amber-light: #fce2a8;
            --leaf-shadow: #1e3a2b;
        }

        body.kinkajou-page {
            background: var(--jungle-night);
            color: #d1d9e6;
            margin: 0;
            overflow-x: hidden;
            font-family: 'Outfit', sans-serif;
        }

        /* Flashlight Reveal Hero */
        .flashlight-hero {
            position: relative;
            height: 100vh;
            background: var(--jungle-night);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            cursor: none; /* Hide default cursor to use a custom flashlight one if desired, or just let the interaction guide it */
        }

        /* The hidden vibrant image */
        .spotlight {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('../assets/kinkajou_canopy_real.png');
            background-size: cover;
            background-position: center;
            pointer-events: none;
            /* Start with a central spotlight before mouse moves */
            --cursor-x: 50%;
            --cursor-y: 50%;
            --spotlight-size: 250px;
            -webkit-mask-image: radial-gradient(circle var(--spotlight-size) at var(--cursor-x) var(--cursor-y), black 20%, transparent 80%);
            mask-image: radial-gradient(circle var(--spotlight-size) at var(--cursor-x) var(--cursor-y), black 20%, transparent 80%);
            transition: opacity 0.5s ease;
        }

        /* A subtle base image so it's not pure black, just very dark */
        .base-canopy {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('../assets/kinkajou_canopy_real.png');
            background-size: cover;
            background-position: center;
            filter: brightness(0.08) grayscale(0.8) blur(4px);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 2rem;
            max-width: 900px;
            pointer-events: none; /* Let pointer events pass through to hero for mouse tracking */
        }

        /* Ambient text glow */
        .kinkajou-title {
            font-family: 'Abril Fatface', cursive;
            font-size: clamp(3.5rem, 10vw, 7rem);
            color: var(--amber-glow);
            text-shadow: 0 4px 30px rgba(251, 176, 59, 0.4), 0 0 100px #000;
            margin-bottom: 1rem;
            line-height: 1;
        }

        .kinkajou-subtitle {
            font-size: 1.4rem;
            color: var(--amber-light);
            letter-spacing: 6px;
            text-transform: uppercase;
            font-weight: 400;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }

        .cursor-hint {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            pointer-events: none;
            z-index: 10;
            animation: pulse-op 2s infinite;
        }

        @keyframes pulse-op {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        /* Info Sections */
        .nocturnal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            padding: 8rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nocturnal-grid.reversed {
            direction: rtl;
        }
        .nocturnal-grid.reversed > * {
            direction: ltr; /* Reset direction for content */
        }

        .jungle-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.8);
            border: 1px solid rgba(251, 176, 59, 0.1);
        }

        .jungle-text h2 {
            font-family: 'Abril Fatface', cursive;
            font-size: 3rem;
            color: var(--amber-glow);
            margin-bottom: 1.5rem;
        }

        .jungle-text p {
            font-size: 1.25rem;
            line-height: 1.8;
            color: #a0b0c6;
            margin-bottom: 1.5rem;
        }

        /* Details Cards */
        .details-section {
            background: linear-gradient(to bottom, var(--jungle-night), var(--canopy-dark));
            padding: 8rem 2rem;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .detail-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .detail-card:hover {
            transform: translateY(-10px);
            border-color: rgba(251, 176, 59, 0.3);
            background: rgba(251, 176, 59, 0.05);
        }

        .detail-icon {
            color: var(--amber-glow);
            margin-bottom: 1.5rem;
            width: 40px;
            height: 40px;
        }

        .detail-card h3 {
            font-family: 'Abril Fatface', cursive;
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .detail-card p {
            color: #a0b0c6;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        /* Call to Action */
        .night-cta {
            padding: 10rem 2rem;
            text-align: center;
            background: var(--canopy-dark);
        }

        .cta-btn {
            display: inline-block;
            padding: 1.5rem 4rem;
            background: transparent;
            border: 2px solid var(--amber-glow);
            color: var(--amber-glow);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            border-radius: 50px;
            transition: all 0.4s ease;
        }

        .cta-btn:hover {
            background: var(--amber-glow);
            color: var(--jungle-night);
            box-shadow: 0 0 40px rgba(251, 176, 59, 0.3);
            transform: scale(1.05);
        }

        @media (max-width: 900px) {
            .nocturnal-grid, .nocturnal-grid.reversed {
                grid-template-columns: 1fr;
                gap: 3rem;
                direction: ltr; /* Reset reverse on mobile */
            }
            .cards-container { grid-template-columns: 1fr; }
            .kinkajou-title { font-size: 4rem; }
            .spotlight { --spotlight-size: 200px; }
        }
    