
        :root {
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.4);
        }

        .dark {
            --glass-bg: rgba(17, 24, 39, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        body {
            background: linear-gradient(135deg, #FFFC00 0%, #FFD700 100%);
            min-height: 100vh;
        }

        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
        }

        .snap-billboard {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1516245834210-c4c142787335?auto=format&fit=crop&q=80&w=1200');
            background-size: cover;
            background-position: center;
            aspect-ratio: 9/16;
            max-height: 500px;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .snap-overlay-text {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            padding: 8px 16px;
            border-radius: 8px;
            color: white;
            text-align: center;
            max-width: 80%;
        }

        .font-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .font-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.9);
        }

        .copy-success {
            animation: bounce 0.5s ease-in-out;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.2);
        }
    
