        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #080a11;
        }
        ::-webkit-scrollbar-thumb {
            background: #1c2231;
            border-radius: 9999px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a445b;
        }
        .glass-panel {
            background: rgba(14, 17, 26, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(58, 68, 91, 0.2);
        }
        .glass-card {
            background: rgba(20, 24, 36, 0.45);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(58, 68, 91, 0.15);
        }
        /* Custom animated blobs */
        @keyframes pulse-blob {
            0%, 100% { transform: scale(1) translate(0, 0); }
            33% { transform: scale(1.1) translate(30px, -50px); }
            66% { transform: scale(0.95) translate(-20px, 20px); }
        }
        .animate-blob {
            animation: pulse-blob 12s infinite alternate ease-in-out;
        }
        .animation-delay-2000 {
            animation-delay: 2s;
        }
        .animation-delay-4000 {
            animation-delay: 4s;
        }
        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }