
        body {
            background-color: #121315;
            color: #e3e2e4;
            overflow-x: hidden;
        }

        .glass-card {
            background: rgba(18, 19, 21, 0.8);
            backdrop-filter: blur(40px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, rgba(223, 253, 67, 0.3), transparent);
        }

        .neon-glow-text {
            text-shadow: 0 0 15px rgba(223, 253, 67, 0.4);
        }

        .neon-border-hover:hover {
            border-color: #d2f036;
            box-shadow: 0 0 20px rgba(223, 253, 67, 0.1);
        }

        .kinetic-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .kinetic-lift:hover {
            transform: translateY(-4px);
        }

        .mesh-gradient {
            background: radial-gradient(circle at 50% -20%, rgba(210, 240, 54, 0.08), transparent 70%),
                        radial-gradient(circle at 0% 100%, rgba(210, 240, 54, 0.03), transparent 50%);
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
        }
  