html {
            -webkit-tap-highlight-color: transparent;
            scroll-behavior: smooth;
        }
        body {
            overflow-x: hidden;
        }
        .orange-glow {
            box-shadow: 0 20px 50px -10px rgba(255, 85, 0, 0.22);
        }
        .yellow-glow {
            box-shadow: 0 10px 30px -5px rgba(255, 199, 0, 0.35);
        }
        .text-gradient {
            background: linear-gradient(135deg, #FF5500 0%, #DC2626 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .glass-nav {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }
        .custom-scrollbar::-webkit-scrollbar {
            height: 6px;
            width: 6px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #f8fafc;
            border-radius: 10px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #FF5500;
            border-radius: 10px;
        }
        /* Mobile Safe Area Padding */
        .pb-safe {
            padding-bottom: env(safe-area-inset-bottom, 20px);
        }
        /* Card Hover Lift */
        .hover-lift {
            transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
        }
        .hover-lift:hover {
            transform: translateY(-4px);
        }
