        :root {
            --lavender: #9B8EC7;
            --mint: #03C4A1;
            --pink: #C62A88;
            --white-glass: rgba(255, 255, 255, 0.75);
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Quicksand', sans-serif;
            color: #333;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .font-cursive { font-family: 'Tangerine', cursive; }

        /* --- Full Screen Background --- */
        .bg-universe {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background-image: url('https://i.pinimg.com/736x/86/56/f2/8656f259110f53ac1447e32f3c57fc01.jpg');
            background-size: cover;
            background-position: center;
            animation: backgroundParallax 60s infinite alternate ease-in-out;
        }

        @keyframes backgroundParallax {
            0% { transform: scale(1.0) translate(0, 0); }
            100% { transform: scale(1.15) translate(-2%, -2%); }
        }

        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle, transparent 20%, rgba(155, 142, 199, 0.2) 100%);
        }

        /* --- Glassmorphism --- */
        .glass-block {
            background: var(--white-glass);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
        }

        .glass-block:hover {
            transform: translateY(-8px);
            box-shadow: 0 35px 60px -10px rgba(0, 0, 0, 0.2);
        }

        /* --- Layout Rules --- */
        .content-width {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .section-spacing { padding: 120px 20px; }

        /* --- Header & Nav --- */
        .logo-side {
            position: fixed;
            top: 40px;
            left: 40px;
            z-index: 1000;
            font-size: 2.5rem;
            color: white;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .floating-nav {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            gap: 30px;
            padding: 12px 35px;
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .nav-item {
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .nav-item:hover { color: var(--pink); }
        .nav-item::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--pink);
            transition: 0.3s;
            transform: translateX(-50%);
        }
        .nav-item:hover::after { width: 100%; }

        /* --- Animations --- */
        .reveal { opacity: 0; transform: translateY(50px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .float-anim { animation: float 6s infinite ease-in-out; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* --- Components --- */
        .tag {
            padding: 4px 15px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: white;
            display: inline-block;
            margin-bottom: 10px;
        }

        .tag-pink { background: var(--pink); box-shadow: 0 4px 10px rgba(198, 42, 136, 0.3); }
        .tag-mint { background: var(--mint); box-shadow: 0 4px 10px rgba(3, 196, 161, 0.3); }

        /* --- Orbit Wheel --- */
        .orbit-box {
            position: relative;
            width: 500px;
            height: 500px;
            margin: 50px auto;
            border: 1px dashed rgba(255,255,255,0.2);
            border-radius: 50%;
            animation: rotateOrbit 40s infinite linear;
        }
        .orbit-box:hover { animation-play-state: paused; }
        .orbit-satellite {
            position: absolute;
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--lavender);
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            animation: counterRotate 40s infinite linear;
        }

        @keyframes rotateOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes counterRotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

        /* --- Page Swapper --- */
        .page { display: none; }
        .page.active { display: block; }

        /* --- Footer --- */
        footer {
            background: rgba(15, 15, 15, 0.8);
            backdrop-filter: blur(20px);
            margin-top: 100px;
            padding: 80px 20px;
            color: rgba(255,255,255,0.7);
        }

        /* --- Custom Filters --- */
        .filter-btn {
            padding: 8px 25px;
            border-radius: 30px;
            border: 1px solid var(--lavender);
            color: var(--lavender);
            transition: 0.3s;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .filter-btn.active {
            background: var(--lavender);
            color: white;
        }
