        :root {
            --blush-pink: #FFAACF;
            --light-glow: #FFD6EC;
            --vibrant-pink: #FF74B1;
            --pure-white: #FFFFFF;
            --clean-black: #000000;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--pure-white);
            color: var(--clean-black);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .editorial-text {
            font-family: 'Playwrite GB S', cursive;
        }

        /* --- Transitions & Animations --- */
        .page-view {
            display: none;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }
        .page-view.active {
            display: block;
            opacity: 1;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-track {
            display: flex;
            width: fit-content;
            animation: marquee 25s linear infinite;
        }

        .glass-header {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }

        #menu-overlay {
            position: fixed;
            inset: 0;
            background-color: var(--blush-pink);
            z-index: 90;
            clip-path: circle(0% at 95% 5%);
            transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        #menu-overlay.open {
            clip-path: circle(150% at 95% 5%);
        }

        .hero-card {
            left:50rem;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .fixed-scroll-container {
            position: relative;
            height: 120vh;
        }

        .left-fixed {
            position: sticky;
            top: 0;
            height: 100vh;
        }

        .pink-btn {
            background-color: var(--vibrant-pink);
            box-shadow: 0 10px 20px rgba(255, 116, 177, 0.4);
            transition: all 0.3s ease;
        }

        .pink-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 116, 177, 0.6);
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

#marquee-track div {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
}

.hero-card {
    overflow: hidden;
}

.editorial-text {
    font-family: Georgia, serif;
    letter-spacing: -0.02em;
}

.shadow-2xl {
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}


        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #fff; }
        ::-webkit-scrollbar-thumb { background: var(--blush-pink); border-radius: 10px; }
