 
        body {
            background-color: #050505;
            color: #f3f4f6;
            overflow-x: hidden;
        }
        
        /* Glassmorphism utility */
        .glass-panel {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.3);
        }

        /* Gradient Text */
        .text-gradient {
            background: linear-gradient(to right, #06b6d4, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #000;
        }
        ::-webkit-scrollbar-thumb {
            background: #3b82f6;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #8b5cf6;
        }

        /* 3D Canvas Background */
        #canvas-container {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            opacity: 0.6;
        }

        .z-content {
            position: relative;
            z-index: 10;
        }

        /* Progress Bar Animation */
        .progress-bar {
            width: 0;
            transition: width 1.5s ease-in-out;
        }
    