
        :root {
            --night-bg: #05080c;
            --firefly-glow: #d4ff00;
            --firefly-soft: rgba(212, 255, 0, 0.4);
            --jungle-deep: #0a1f11;
        }

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

        /* Hero Section */
        .firefly-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(5, 8, 12, 0.2), var(--night-bg)),
                        url('../assets/fireflies_forest_night_1775511808690.png');
            background-size: cover;
            background-position: center;
        }

        #firefly-canvas {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 3;
        }

        .hero-content {
            position: relative;
            z-index: 4;
            padding: 2rem;
        }

        .firefly-title {
            font-family: 'Abril Fatface', cursive;
            font-size: clamp(3.5rem, 12vw, 8rem);
            color: #fff;
            text-shadow: 0 0 30px var(--firefly-soft);
            margin-bottom: 1rem;
            line-height: 1;
        }

        .firefly-subtitle {
            font-size: 1.4rem;
            color: var(--firefly-glow);
            letter-spacing: 8px;
            text-transform: uppercase;
            font-weight: 300;
            margin-bottom: 2rem;
        }

        /* Information Sections */
        .info-section {
            padding: 8rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .glow-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            margin-bottom: 8rem;
        }

        .glow-image-container {
            position: relative;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            border: 1px solid rgba(212, 255, 0, 0.1);
        }

        .glow-image {
            width: 100%;
            display: block;
            transition: transform 0.6s ease;
        }

        .glow-image-container:hover .glow-image {
            transform: scale(1.05);
        }

        .glow-text h2 {
            font-family: 'Abril Fatface', cursive;
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .glow-text p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #b0c4b1;
        }

        /* Synchronized Pulse Interaction */
        .pulse-section {
            background: rgba(212, 255, 0, 0.02);
            padding: 8rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(212, 255, 0, 0.05);
            border-bottom: 1px solid rgba(212, 255, 0, 0.05);
        }

        .pulse-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }

        .firefly-dot {
            width: 12px;
            height: 12px;
            background: var(--firefly-glow);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--firefly-glow);
            animation: sync-pulse 3s infinite ease-in-out;
        }

        @keyframes sync-pulse {
            0%, 100% { opacity: 0; transform: scale(0.5); filter: blur(2px); }
            50% { opacity: 1; transform: scale(1.2); filter: blur(0); }
        }

        /* Staggered starts for "chaos" that becomes "order" */
        .firefly-dot:nth-child(2n) { animation-delay: 0.2s; }
        .firefly-dot:nth-child(3n) { animation-delay: 0.4s; }
        .firefly-dot:nth-child(4n) { animation-delay: 0.1s; }

        .sync-active .firefly-dot {
            animation-delay: 0s !important; /* Force synchronization */
            animation-duration: 2s;
        }

        .sync-btn {
            margin-top: 3rem;
            padding: 1.2rem 3rem;
            background: transparent;
            border: 2px solid var(--firefly-glow);
            color: var(--firefly-glow);
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            border-radius: 100px;
            transition: all 0.3s ease;
        }

        .sync-btn:hover {
            background: var(--firefly-glow);
            color: var(--night-bg);
            box-shadow: 0 0 30px var(--firefly-soft);
        }

        /* Floating CTA */
        .night-cta {
            padding: 10rem 2rem;
            text-align: center;
            background: radial-gradient(circle at center, rgba(212, 255, 0, 0.05), transparent 70%);
        }

        .glow-btn {
            display: inline-block;
            padding: 1.8rem 5rem;
            background: var(--firefly-glow);
            color: var(--night-bg);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            border-radius: 100px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px var(--firefly-soft);
        }

        .glow-btn:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 20px 60px var(--firefly-soft);
            filter: brightness(1.1);
        }

        @media (max-width: 768px) {
            .glow-grid { grid-template-columns: 1fr; gap: 3rem; }
            .glow-text h2 { font-size: 2.8rem; }
            .firefly-title { font-size: 3.5rem; }
            .glow-image-container { order: -1; }
        }
    