        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Pacifico&display=swap');

        body {
            font-family: 'Inter', sans-serif;
            background-color: #0a0a0a;
        }

        .script-font {
            font-family: 'Pacifico', cursive;
        }

        .glow-pink {
            box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
        }

        .text-glow {
            text-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
        }

        .nav-pill {
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .nav-pill:hover {
            background-color: rgba(236, 72, 153, 0.2);
        }

        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            transition: transform 0.3s ease;
        }

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

        .gradient-overlay {
            background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
        }

        .color-swatch {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            transition: transform 0.2s ease;
        }

        .color-swatch:hover {
            transform: scale(1.1);
        }

        .btn-outline {
            border: 2px solid white;
            border-radius: 50px;
            padding: 12px 48px;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background-color: white;
            color: #0a0a0a;
        }

        .menu-icon {
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .menu-icon:hover {
            transform: rotate(90deg);
        }