        body {
            background-color: #DFF1F1;
            color: #000000;
            font-family: "Work Sans", sans-serif;
            overflow-x: hidden;
        }

        /* Glassmorphism Classes */
        .glass-panel {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .glass-dark {
            background: rgba(11, 166, 223, 0.05);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(11, 166, 223, 0.2);
        }

        /* Custom Scrollbar Optimization */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #000000;
        }
        ::-webkit-scrollbar-thumb {
            background: #0BA6DF;
            border-radius: 3px;
        }

        /* Continuous Horizontal Scroll Matrix Override */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Particle Vector Background Effect */
        @keyframes floatParticle {
            0% { transform: translateY(0px) translateX(0px); opacity: 0.2; }
            50% { transform: translateY(-40px) translateX(20px); opacity: 0.8; }
            100% { transform: translateY(0px) translateX(0px); opacity: 0.2; }
        }
        .particle-node {
            animation: floatParticle 8s infinite ease-in-out;
        }

        /* Dynamic View Architecture */
        .view-frame {
            display: none;
        }
        .view-frame.view-active {
            display: block;
        }

        /* Animated grid background for Hero */
        .grid-bg {
            background-size: 40px 40px;
            background-image: linear-gradient(to right, rgba(11, 166, 223, 0.05) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(11, 166, 223, 0.05) 1px, transparent 1px);
        }
