                :root {
            --sq-orange: #ff4d00;
            --sq-neon: #adff2f;
            --sq-black: #050505;
            --sq-zinc: #121212;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--sq-black);
            color: #ffffff;
            scroll-behavior: smooth;
        }

        .heading-font {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        /* Responsive Hero Height */
        .hero-section {
            height: clamp(600px, 90vh, 1080px);
        }

        /* Glassmorphism effects */
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            border-color: var(--sq-orange);
            background: rgba(255, 255, 255, 0.05);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #050505; }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--sq-orange); }

        /* Smooth skew button */
        .btn-skew {
            position: relative;
            overflow: hidden;
            transition: 0.3s;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
        }

        .btn-skew:hover {
            transform: scale(1.05);
            background-color: var(--sq-neon);
            color: black;
        }

        /* Mobile Nav Animation */
        #mobile-menu {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Stats Pulse */
        @keyframes pulse-orange {
            0% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 77, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
        }
        .pulse-active { animation: pulse-orange 2s infinite; }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
    
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .animate-marquee {
            display: inline-flex;
            animation: marquee 30s linear infinite;
        }
        @keyframes pulse-slow {
            0%, 100% { transform: scale(1.1); }
            50% { transform: scale(1.15); }
        }
        .animate-pulse-slow {
            animation: pulse-slow 20s ease-in-out infinite;
        }