html,
body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: #f8fafc;
        }

        body > :first-child {
            margin-top: 0 !important;
        }

        body > :last-child {
            margin-bottom: 0 !important;
        }
        
        .glass {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .feature-grid-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .feature-grid-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.2);
        }
        
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }
        
        .comparison-row:hover {
            background-color: rgba(37, 99, 235, 0.03);
        }
        
        .module-icon {
            transition: transform 0.3s ease;
        }
        .module-card:hover .module-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #eef2ff;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #2563eb, #0ea5e9);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #1d4ed8, #0284c7);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Mobile Responsive - Prevent Horizontal Scroll */
        @media (max-width: 768px) {
            html, body {
                overflow-x: hidden !important;
                max-width: 100vw !important;
            }
            
            /* Ensure all sections don't overflow */
            section {
                max-width: 100% !important;
                overflow: hidden !important;
            }
            
            /* Ensure all containers don't overflow */
            section > * {
                max-width: 100% !important;
            }
            
            /* Grid containers should not cause overflow */
            .max-w-7xl {
                max-width: 100% !important;
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }
            
            /* Fix any element that might cause horizontal scroll */
            * {
                max-width: 100% !important;
            }
        }