        :root {
            --primary: #3b82f6;
            --primary-dark: #1d4ed8;
            --secondary: #8b5cf6;
            --accent: #06b6d4;
        }

        .dark {
            --primary: #60a5fa;
            --primary-dark: #3b82f6;
            --secondary: #a78bfa;
            --accent: #22d3ee;
        }

        * {
            font-family: 'Inter', sans-serif;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
        }

        .dark .gradient-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        }

        .hero-gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .dark .hero-gradient {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
        }

        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .card-hover:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .dark .glass-effect {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-link {
            position: relative;
            transition: color 0.3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .tool-icon {
            transition: all 0.3s ease;
        }

        .singletools:hover .tool-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .animate-slide-up {
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .theme-transition {
            transition: background-color 0.5s, color 0.5s, border-color 0.5s;
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        .pulse-glow {
            animation: glow 2s ease-in-out infinite alternate;
        }

        .shimmer {
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            background-size: 200px 100%;
            animation: shimmer 2s linear infinite;
        }

        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .dark .gradient-text {
            background: linear-gradient(90deg, #60a5fa, #a78bfa, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-icon {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
        }

        .tool-card-gradient {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .dark .tool-card-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border: 1px solid rgba(71, 85, 105, 0.5);
        }

        .stats-gradient {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
        }

        .dark .stats-gradient {
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 640px) {
            .mobile-padding {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .mobile-text-center {
                text-align: center;
            }

            .mobile-stack {
                flex-direction: column;
            }

            .mobile-full-width {
                width: 100%;
            }

            .mobile-grid-1 {
                grid-template-columns: 1fr;
            }

            .mobile-gap-4 {
                gap: 1rem;
            }

            .mobile-py-8 {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            .mobile-pt-24 {
                padding-top: 6rem;
            }

            .mobile-pb-12 {
                padding-bottom: 3rem;
            }

            .mobile-text-3xl {
                font-size: 1.875rem;
                line-height: 2.25rem;
            }

            .mobile-text-xl {
                font-size: 1.25rem;
                line-height: 1.75rem;
            }

            .mobile-p-4 {
                padding: 1rem;
            }

            .mobile-p-6 {
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .tablet-grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }

            .tablet-padding {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        /* Full width adjustments */
        .full-width-section {
            width: 100%;
            max-width: 100%;
        }

        .full-width-container {
            width: 100%;
            max-width: 100%;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        @media (min-width: 640px) {
            .full-width-container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .full-width-container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        @media (min-width: 1280px) {
            .full-width-container {
                padding-left: 4rem;
                padding-right: 4rem;
            }
        }

        .nav-glow-container {
            position: relative;
            display: inline-block;
        }

        /* Base Glow Link */
        .nav-link-glow {
            position: relative;
            padding: 8px 16px;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            z-index: 10;
        }

        /* Glow Effect */
        .nav-glow-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            opacity: 0;
            z-index: 1;
        }

        /* Hover States */
        .nav-glow-container:hover .nav-glow-effect {
            width: 120px;
            height: 120px;
            opacity: 1;
            animation: glowPulse 2s ease-in-out infinite;
        }

        .nav-glow-container:hover .nav-link-glow {
            background: rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }

        /* Text Glow Effects */
        .glow-text {
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-glow-container:hover .glow-text {
            text-shadow:
                0 0 10px rgba(59, 130, 246, 0.6),
                0 0 20px rgba(59, 130, 246, 0.4),
                0 0 30px rgba(59, 130, 246, 0.2);
        }

        /* Special Glow for More Tools */
        .special-glow .nav-link-glow {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow:
                0 4px 15px rgba(102, 126, 234, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .special-glow:hover .nav-link-glow {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow:
                0 8px 25px rgba(102, 126, 234, 0.6),
                0 0 30px rgba(102, 126, 234, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .special-glow .nav-glow-effect.special {
            background: radial-gradient(circle, rgba(102, 126, 234, 0.6) 0%, transparent 70%);
            animation: specialGlow 1.5s ease-in-out infinite;
        }

        .glow-text-special {
            position: relative;
            text-shadow:
                0 0 10px rgba(255, 255, 255, 0.8),
                0 0 20px rgba(255, 255, 255, 0.6);
            animation: textShimmer 2s ease-in-out infinite alternate;
        }

        /* Animations */
        @keyframes glowPulse {

            0%,
            100% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        @keyframes specialGlow {

            0%,
            100% {
                opacity: 0.7;
                transform: translate(-50%, -50%) scale(1);
            }

            25% {
                background: radial-gradient(circle, rgba(102, 126, 234, 0.7) 0%, transparent 70%);
            }

            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.2);
                background: radial-gradient(circle, rgba(139, 92, 246, 0.7) 0%, transparent 70%);
            }

            75% {
                background: radial-gradient(circle, rgba(236, 72, 153, 0.7) 0%, transparent 70%);
            }
        }

        @keyframes textShimmer {
            0% {
                text-shadow:
                    0 0 10px rgba(255, 255, 255, 0.8),
                    0 0 20px rgba(255, 255, 255, 0.6);
            }

            100% {
                text-shadow:
                    0 0 15px rgba(255, 255, 255, 1),
                    0 0 25px rgba(255, 255, 255, 0.8),
                    0 0 35px rgba(255, 255, 255, 0.6);
            }
        }

        /* Dark Mode Adjustments */
        .dark .nav-link-glow {
            color: #d1d5db;
        }

        .dark .nav-glow-effect {
            background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, transparent 70%);
        }

        .dark .nav-glow-container:hover .nav-link-glow {
            background: rgba(96, 165, 250, 0.15);
        }

        .dark .nav-glow-container:hover .glow-text {
            text-shadow:
                0 0 10px rgba(96, 165, 250, 0.8),
                0 0 20px rgba(96, 165, 250, 0.6),
                0 0 30px rgba(96, 165, 250, 0.4);
        }

        .dark .special-glow .nav-link-glow {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
        }

        .dark .special-glow:hover .nav-link-glow {
            background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
        }

        /* Sparkle Animation */
        .fa-sparkle {
            animation: sparkleSpin 3s linear infinite;
        }

        @keyframes sparkleSpin {
            0% {
                transform: rotate(0deg) scale(1);
            }

            25% {
                transform: rotate(90deg) scale(1.2);
            }

            50% {
                transform: rotate(180deg) scale(1);
            }

            75% {
                transform: rotate(270deg) scale(1.3);
            }

            100% {
                transform: rotate(360deg) scale(1);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .nav-glow-container {
                margin: 4px 0;
            }

            .nav-link-glow {
                padding: 10px 20px;
                display: block;
                text-align: center;
            }
        }

        /* Add these CSS animations to your existing styles */

        /* Floating Glow Animation */
        @keyframes floatGlow {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                opacity: 0.8;
            }

            25% {
                transform: translate(-50%, -52%) scale(1.1) rotate(90deg);
                opacity: 0.9;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
                opacity: 1;
            }

            75% {
                transform: translate(-50%, -48%) scale(1.1) rotate(270deg);
                opacity: 0.9;
            }
        }

        /* Rainbow Pulse Animation */
        @keyframes rainbowPulse {
            0% {
                background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
            }

            25% {
                background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
            }

            50% {
                background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
            }

            75% {
                background: radial-gradient(circle, rgba(34, 197, 94, 0.6) 0%, transparent 70%);
            }

            100% {
                background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
            }
        }

        /* Neon Flicker Effect */
        @keyframes neonFlicker {

            0%,
            18%,
            22%,
            25%,
            53%,
            57%,
            100% {
                opacity: 0.8;
                filter: blur(0.5px);
            }

            20%,
            24%,
            55% {
                opacity: 0.6;
                filter: blur(1px);
            }
        }

        /* Wave Ripple Effect */
        @keyframes waveRipple {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        /* Color Shift Animation */
        @keyframes colorShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Apply the new animations to existing elements */

        /* Enhanced Base Glow Effect with Animation */
        .nav-glow-effect {
            animation: floatGlow 4s ease-in-out infinite, rainbowPulse 6s ease-in-out infinite;
        }

        /* Enhanced Special Glow */
        .special-glow .nav-glow-effect.special {
            animation: floatGlow 3s ease-in-out infinite, rainbowPulse 4s ease-in-out infinite, neonFlicker 2s ease-in-out infinite;
        }

        /* Add Ripple Effect on Hover */
        .nav-glow-container:hover .nav-glow-effect::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: waveRipple 1.5s ease-out infinite;
            transform: translate(-50%, -50%);
        }

        /* Enhanced Text Glow with Animation */
        .glow-text {
            animation: textGlowPulse 3s ease-in-out infinite alternate;
        }

        @keyframes textGlowPulse {
            0% {
                text-shadow:
                    0 0 5px rgba(59, 130, 246, 0.4),
                    0 0 10px rgba(59, 130, 246, 0.3);
            }

            100% {
                text-shadow:
                    0 0 10px rgba(59, 130, 246, 0.6),
                    0 0 20px rgba(59, 130, 246, 0.4),
                    0 0 30px rgba(59, 130, 246, 0.2);
            }
        }

        /* Enhanced Special Text Glow */
        .glow-text-special {
            animation: specialTextGlow 2s ease-in-out infinite alternate;
        }

        @keyframes specialTextGlow {
            0% {
                text-shadow:
                    0 0 5px rgba(255, 255, 255, 0.8),
                    0 0 10px rgba(102, 126, 234, 0.6),
                    0 0 15px rgba(139, 92, 246, 0.4);
            }

            100% {
                text-shadow:
                    0 0 10px rgba(255, 255, 255, 1),
                    0 0 20px rgba(102, 126, 234, 0.8),
                    0 0 30px rgba(139, 92, 246, 0.6),
                    0 0 40px rgba(236, 72, 153, 0.4);
            }
        }

        /* Add Background Gradient Animation to Special Button */
        .special-glow .nav-link-glow {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            background-size: 200% 200%;
            animation: colorShift 4s ease infinite;
        }

        /* Enhanced Sparkle Animation */
        .fa-sparkle {
            animation: sparkleMagic 2s ease-in-out infinite;
        }

        @keyframes sparkleMagic {

            0%,
            100% {
                transform: rotate(0deg) scale(1);
                opacity: 1;
                filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
            }

            25% {
                transform: rotate(90deg) scale(1.3);
                opacity: 0.8;
                filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.8));
            }

            50% {
                transform: rotate(180deg) scale(1.1);
                opacity: 1;
                filter: drop-shadow(0 0 6px rgba(255, 255, 255, 1));
            }

            75% {
                transform: rotate(270deg) scale(1.4);
                opacity: 0.7;
                filter: drop-shadow(0 0 8px rgba(255, 215, 0, 1));
            }
        }

        /* Add Border Glow Animation */
        .nav-link-glow {
            position: relative;
            overflow: hidden;
        }

        .nav-link-glow::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
            background-size: 400% 400%;
            border-radius: 14px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
            animation: colorShift 3s linear infinite;
        }

        .nav-glow-container:hover .nav-link-glow::before {
            opacity: 0.3;
        }

        /* Special Border Glow for More Tools */
        .special-glow .nav-link-glow::before {
            opacity: 0.5;
            animation: colorShift 2s linear infinite;
        }

        /* Add Particle Effects */
        .nav-glow-container::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: floatParticle 4s linear infinite;
            opacity: 0;
        }

        .nav-glow-container:hover::after {
            opacity: 1;
        }

        @keyframes floatParticle {
            0% {
                transform: translate(-50%, -50%) rotate(0deg) translateX(0) scale(1);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            50% {
                transform: translate(-50%, -50%) rotate(180deg) translateX(20px) scale(1.2);
                opacity: 0.8;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg) translateX(0) scale(1);
                opacity: 0;
            }
        }

        /* Dark Mode Adjustments for New Animations */
        .dark .nav-glow-effect {
            animation: floatGlow 4s ease-in-out infinite, rainbowPulse 6s ease-in-out infinite;
        }

        .dark .special-glow .nav-link-glow {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #c084fc 100%);
            background-size: 200% 200%;
            animation: colorShift 4s ease infinite;
        }

        /* Light Mode Specific Animations */
        :root {
            --light-glow-primary: rgba(59, 130, 246, 0.6);
            --light-glow-secondary: rgba(139, 92, 246, 0.6);
            --light-glow-accent: rgba(236, 72, 153, 0.6);
            --light-glow-success: rgba(34, 197, 94, 0.6);
        }

        /* Light Mode Glow Colors */
        .light .nav-glow-effect {
            background: radial-gradient(circle, var(--light-glow-primary) 0%, transparent 70%);
            animation: lightFloatGlow 4s ease-in-out infinite, lightRainbowPulse 6s ease-in-out infinite;
        }

        /* Light Mode Floating Glow */
        @keyframes lightFloatGlow {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                opacity: 0.7;
            }

            25% {
                transform: translate(-50%, -52%) scale(1.1) rotate(90deg);
                opacity: 0.8;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
                opacity: 0.9;
            }

            75% {
                transform: translate(-50%, -48%) scale(1.1) rotate(270deg);
                opacity: 0.8;
            }
        }

        /* Light Mode Rainbow Pulse */
        @keyframes lightRainbowPulse {
            0% {
                background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
            }

            25% {
                background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
            }

            50% {
                background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
            }

            75% {
                background: radial-gradient(circle, rgba(34, 197, 94, 0.6) 0%, transparent 70%);
            }

            100% {
                background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
            }
        }

        /* Light Mode Text Glow */
        .light .nav-glow-container:hover .glow-text {
            text-shadow:
                0 0 10px rgba(59, 130, 246, 0.8),
                0 0 20px rgba(59, 130, 246, 0.6),
                0 0 30px rgba(59, 130, 246, 0.4);
            animation: lightTextGlow 2s ease-in-out infinite alternate;
        }

        @keyframes lightTextGlow {
            0% {
                text-shadow:
                    0 0 5px rgba(59, 130, 246, 0.6),
                    0 0 10px rgba(59, 130, 246, 0.4);
            }

            100% {
                text-shadow:
                    0 0 15px rgba(59, 130, 246, 1),
                    0 0 25px rgba(59, 130, 246, 0.8),
                    0 0 35px rgba(59, 130, 246, 0.6);
            }
        }

        /* Light Mode Special Button */
        .light .special-glow .nav-link-glow {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
            background-size: 200% 200%;
            animation: lightColorShift 3s ease infinite;
            box-shadow:
                0 4px 20px rgba(59, 130, 246, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .light .special-glow:hover .nav-link-glow {
            background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #ec4899 100%);
            box-shadow:
                0 8px 30px rgba(59, 130, 246, 0.6),
                0 0 40px rgba(139, 92, 246, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        @keyframes lightColorShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* Light Mode Special Glow Effect */
        .light .special-glow .nav-glow-effect.special {
            background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
            animation: lightSpecialGlow 3s ease-in-out infinite;
        }

        @keyframes lightSpecialGlow {

            0%,
            100% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1);
                background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
            }

            25% {
                opacity: 0.9;
                transform: translate(-50%, -50%) scale(1.1);
                background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, transparent 70%);
            }

            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.2);
                background: radial-gradient(circle, rgba(236, 72, 153, 0.8) 0%, transparent 70%);
            }

            75% {
                opacity: 0.9;
                transform: translate(-50%, -50%) scale(1.1);
                background: radial-gradient(circle, rgba(34, 197, 94, 0.8) 0%, transparent 70%);
            }
        }

        /* Light Mode Special Text */
        .light .glow-text-special {
            color: white;
            text-shadow:
                0 0 10px rgba(59, 130, 246, 0.8),
                0 0 20px rgba(139, 92, 246, 0.6);
            animation: lightSpecialText 2s ease-in-out infinite alternate;
        }

        @keyframes lightSpecialText {
            0% {
                text-shadow:
                    0 0 5px rgba(59, 130, 246, 0.8),
                    0 0 10px rgba(139, 92, 246, 0.6),
                    0 0 15px rgba(236, 72, 153, 0.4);
            }

            100% {
                text-shadow:
                    0 0 10px rgba(59, 130, 246, 1),
                    0 0 20px rgba(139, 92, 246, 0.8),
                    0 0 30px rgba(236, 72, 153, 0.6),
                    0 0 40px rgba(34, 197, 94, 0.4);
            }
        }

        /* Light Mode Border Glow */
        .light .nav-link-glow::before {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899, #10b981, #3b82f6);
            background-size: 400% 400%;
            animation: lightBorderShift 3s linear infinite;
        }

        @keyframes lightBorderShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* Light Mode Hover Background */
        .light .nav-glow-container:hover .nav-link-glow {
            background: rgba(59, 130, 246, 0.15);
            backdrop-filter: blur(10px);
        }

        /* Light Mode Sparkle Enhancement */
        .light .fa-sparkle {
            color: #fbbf24;
            filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.8));
            animation: lightSparkle 2s ease-in-out infinite;
        }

        @keyframes lightSparkle {

            0%,
            100% {
                transform: rotate(0deg) scale(1);
                opacity: 1;
                filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.8));
            }

            25% {
                transform: rotate(90deg) scale(1.3);
                opacity: 0.8;
                filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.8));
            }

            50% {
                transform: rotate(180deg) scale(1.1);
                opacity: 1;
                filter: drop-shadow(0 0 7px rgba(251, 191, 36, 1));
            }

            75% {
                transform: rotate(270deg) scale(1.4);
                opacity: 0.7;
                filter: drop-shadow(0 0 9px rgba(139, 92, 246, 0.8));
            }
        }

        /* Light Mode Particle Effects */
        .light .nav-glow-container::after {
            background: rgba(59, 130, 246, 0.8);
            animation: lightParticle 4s linear infinite;
        }

        @keyframes lightParticle {
            0% {
                transform: translate(-50%, -50%) rotate(0deg) translateX(0) scale(1);
                opacity: 0;
                background: rgba(59, 130, 246, 0.8);
            }

            25% {
                background: rgba(139, 92, 246, 0.8);
            }

            50% {
                transform: translate(-50%, -50%) rotate(180deg) translateX(20px) scale(1.2);
                opacity: 0.8;
                background: rgba(236, 72, 153, 0.8);
            }

            75% {
                background: rgba(34, 197, 94, 0.8);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg) translateX(0) scale(1);
                opacity: 0;
                background: rgba(59, 130, 246, 0.8);
            }
        }

        /* Light Mode Ripple Effect */
        .light .nav-glow-container:hover .nav-glow-effect::after {
            background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
            animation: lightRipple 1.5s ease-out infinite;
        }

        @keyframes lightRipple {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0;
            }

            50% {
                opacity: 0.6;
            }

            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        /* Light Mode Enhanced Background for Better Contrast */
        .light .nav-link-glow {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .light .nav-glow-container:hover .nav-link-glow {
            background: rgba(59, 130, 246, 0.2);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .mobile-glow-container {
            position: relative;
            display: inline-block;
        }

        .mobile-glow-btn {
            position: relative;
            z-index: 10;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .mobile-glow-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            opacity: 0;
            z-index: 1;
        }

        .mobile-glow-container:hover .mobile-glow-effect {
            width: 80px;
            height: 80px;
            opacity: 1;
            animation: mobileGlowPulse 2s ease-in-out infinite;
        }

        .mobile-glow-container:hover .mobile-glow-btn {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        /* Special Glow for Menu Button */
        .mobile-glow-container.special .mobile-glow-effect {
            background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
            animation: mobileSpecialGlow 1.5s ease-in-out infinite;
        }

        .mobile-glow-container.special:hover .mobile-glow-btn {
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        }

        /* Mobile Navigation Glow Effects */
        .mobile-nav-glow-container {
            position: relative;
        }

        .mobile-nav-link {
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-glow {
            position: absolute;
            top: 50%;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
            transform: translateY(-50%);
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            opacity: 0;
        }

        .mobile-nav-glow-container:hover .mobile-nav-glow {
            width: 100%;
            opacity: 1;
            animation: mobileNavGlow 2s ease-in-out infinite;
        }

        .mobile-nav-glow-container:hover .mobile-nav-link {
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        /* Special Glow for More Tools */
        .mobile-nav-glow-container.special .mobile-nav-link {
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
        }

        .mobile-nav-glow-container.special .mobile-nav-glow {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
            animation: mobileSpecialNavGlow 1.5s ease-in-out infinite;
        }

        .mobile-nav-glow-container.special:hover .mobile-nav-link {
            transform: translateX(8px) scale(1.02);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
        }

        /* Icon Animations */
        .mobile-nav-icon {
            transition: all 0.3s ease;
        }

        .mobile-nav-glow-container:hover .mobile-nav-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .mobile-nav-glow-container.special:hover .mobile-nav-icon {
            transform: scale(1.2) rotate(10deg);
            animation: iconSparkle 1s ease-in-out infinite;
        }

        /* Animations */
        @keyframes mobileGlowPulse {

            0%,
            100% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        @keyframes mobileSpecialGlow {

            0%,
            100% {
                background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
                opacity: 0.8;
            }

            50% {
                background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
                opacity: 1;
            }
        }

        @keyframes mobileNavGlow {

            0%,
            100% {
                opacity: 0.6;
            }

            50% {
                opacity: 0.9;
            }
        }

        @keyframes mobileSpecialNavGlow {

            0%,
            100% {
                opacity: 0.7;
                background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
            }

            50% {
                opacity: 1;
                background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
            }
        }

        @keyframes iconSparkle {

            0%,
            100% {
                transform: scale(1.2) rotate(10deg);
            }

            50% {
                transform: scale(1.3) rotate(15deg);
            }
        }

        /* Dark Mode Adjustments */
        .dark .mobile-nav-link {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dark .mobile-glow-btn {
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Light Mode Enhancements */
        .light .mobile-nav-link {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .light .mobile-glow-btn {
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .mobile-nav-link {
                padding: 12px 16px;
            }

            .mobile-glow-btn {
                padding: 12px;
            }
        }

        /* Active State for Mobile Menu */
        #mobile-menu:not(.hidden) .mobile-glow-container.special .mobile-glow-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        }

        .mobile-glow-container,
        .mobile-nav-glow-container,
        .nav-glow-container {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-perspective: 1000;
            perspective: 1000;
        }

        /* Android-Specific Glow Optimizations */
        .mobile-glow-effect,
        .mobile-nav-glow,
        .nav-glow-effect {
            -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
        }

        /* Reduced Motion for Performance */
        @media (prefers-reduced-motion: reduce) {

            .mobile-glow-effect,
            .mobile-nav-glow,
            .nav-glow-effect,
            .mobile-glow-btn,
            .mobile-nav-link,
            .nav-link-glow {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Android Touch Optimizations */
        .mobile-glow-btn,
        .mobile-nav-link,
        .nav-link-glow {
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
            touch-action: manipulation;
        }

        /* Enhanced Performance Animations */
        @keyframes androidGlowPulse {

            0%,
            100% {
                opacity: 0.7;
                -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
                transform: translate3d(-50%, -50%, 0) scale(1);
            }

            50% {
                opacity: 0.9;
                -webkit-transform: translate3d(-50%, -50%, 0) scale(1.05);
                transform: translate3d(-50%, -50%, 0) scale(1.05);
            }
        }

        @keyframes androidNavGlow {

            0%,
            100% {
                opacity: 0.6;
                -webkit-transform: translate3d(0, -50%, 0) scaleX(0.8);
                transform: translate3d(0, -50%, 0) scaleX(0.8);
            }

            50% {
                opacity: 0.8;
                -webkit-transform: translate3d(0, -50%, 0) scaleX(1);
                transform: translate3d(0, -50%, 0) scaleX(1);
            }
        }

        /* Apply Android-Optimized Animations */
        .mobile-glow-container:hover .mobile-glow-effect,
        .nav-glow-container:hover .nav-glow-effect {
            animation: androidGlowPulse 2s ease-in-out infinite;
        }

        .mobile-nav-glow-container:hover .mobile-nav-glow {
            animation: androidNavGlow 2s ease-in-out infinite;
        }

        /* Android-Specific Gradient Fixes */
        .mobile-nav-glow,
        .nav-glow-effect {
            -webkit-mask-image: -webkit-radial-gradient(white, black);
            mask-image: radial-gradient(white, black);
        }

        /* Optimize for Mobile Performance */
        @media (max-width: 768px) {

            /* Reduce animation complexity on mobile */
            .mobile-glow-effect,
            .mobile-nav-glow,
            .nav-glow-effect {
                animation-duration: 3s;
            }

            /* Simpler gradients for mobile */
            .special-glow .nav-link-glow,
            .mobile-nav-glow-container.special .mobile-nav-link {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                animation: none;
                /* Remove complex animations on mobile */
            }

            /* Reduce shadow complexity */
            .mobile-glow-btn,
            .mobile-nav-link,
            .nav-link-glow {
                box-shadow:
                    0 4px 12px rgba(0, 0, 0, 0.15),
                    0 2px 4px rgba(0, 0, 0, 0.1);
            }

            .mobile-glow-container:hover .mobile-glow-btn,
            .mobile-nav-glow-container:hover .mobile-nav-link,
            .nav-glow-container:hover .nav-link-glow {
                box-shadow:
                    0 6px 20px rgba(0, 0, 0, 0.2),
                    0 4px 8px rgba(0, 0, 0, 0.15);
            }
        }

        /* Android Browser Specific Fixes */
        /* Chrome Mobile */
        @media screen and (-webkit-min-device-pixel-ratio: 0) {

            .mobile-glow-effect,
            .nav-glow-effect {
                -webkit-filter: blur(8px);
                filter: blur(8px);
            }
        }

        /* Samsung Internet */
        @supports (-webkit-touch-callout: none) {

            .mobile-glow-container,
            .mobile-nav-glow-container,
            .nav-glow-container {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
            }
        }

        /* iOS Safari Fixes */
        @supports (-webkit-touch-callout: none) and (not (translate: none)) {

            .mobile-glow-effect,
            .nav-glow-effect {
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
            }
        }

        /* Optimize for Low-End Devices */
        @media (max-width: 480px) and (max-height: 700px) {

            /* Further simplify animations on small screens */
            .mobile-glow-effect,
            .mobile-nav-glow,
            .nav-glow-effect {
                animation: none;
                transition: opacity 0.3s ease;
            }

            /* Reduce glow size */
            .mobile-glow-container:hover .mobile-glow-effect {
                width: 60px;
                height: 60px;
            }

            .nav-glow-container:hover .nav-glow-effect {
                width: 80px;
                height: 80px;
            }
        }

        /* Battery Saver Mode Detection */
        @media (prefers-reduced-data: reduce) {

            .mobile-glow-effect,
            .mobile-nav-glow,
            .nav-glow-effect {
                display: none;
            }
        }

        /* High Contrast Mode Support */
        @media (prefers-contrast: high) {

            .mobile-glow-effect,
            .mobile-nav-glow,
            .nav-glow-effect {
                opacity: 0.9;
                background: rgba(59, 130, 246, 0.8);
            }
        }

        /* Add these animations to your existing CSS */
        @keyframes pulse-glow {

            0%,
            100% {
                opacity: 1;
                filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.6));
            }

            50% {
                opacity: 0.8;
                filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.8));
            }
        }

        .animate-pulse-glow {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        /* Ensure smooth animations */
        svg {
            transition: all 0.3s ease;
        }

        /* Hover effects */
        .group:hover svg {
            transform: scale(1.05);
            filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.8));
        }