        /* Custom Properties for Dynamic Theming */
        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --ai-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            --bg-primary: #0a0a0f;
            --bg-secondary: #1a1a2e;
            --bg-glass: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: #b8b8b8;
            --border-color: rgba(255, 255, 255, 0.1);
            --shadow-primary: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
            --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.3);
            --blur-strength: 20px;
        }

        /* iOS Theme */
        .ios-theme {
            --primary-gradient: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
            --secondary-gradient: linear-gradient(135deg, #FF3B30 0%, #FF9500 100%);
            --accent-gradient: linear-gradient(135deg, #30D158 0%, #00C7BE 100%);
            --bg-primary: #000000;
            --bg-secondary: #1c1c1e;
            --border-radius: 20px;
        }

        /* Android Theme */
        .android-theme {
            --primary-gradient: linear-gradient(135deg, #1976D2 0%, #42A5F5 100%);
            --secondary-gradient: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
            --accent-gradient: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --border-radius: 16px;
        }

        /* Windows Theme */
        .windows-theme {
            --primary-gradient: linear-gradient(135deg, #0078D4 0%, #106EBE 100%);
            --secondary-gradient: linear-gradient(135deg, #8764B8 0%, #B146C2 100%);
            --accent-gradient: linear-gradient(135deg, #00BCF2 0%, #40E0D0 100%);
            --bg-primary: #1f1f1f;
            --bg-secondary: #2d2d30;
            --border-radius: 8px;
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            cursor: none;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }

        /* Custom Exotic Cursor */
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: var(--primary-gradient);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
            animation: cursorPulse 2s infinite ease-in-out;
        }

        .custom-cursor::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            width: 40px;
            height: 40px;
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            animation: cursorRing 1.5s infinite ease-out;
        }

        .custom-cursor.hover {
            transform: scale(2);
            background: var(--secondary-gradient);
            box-shadow: 0 0 40px rgba(240, 147, 251, 0.8);
        }

        @keyframes cursorPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        @keyframes cursorRing {
            0% {
                transform: scale(0.5);
                opacity: 1;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: var(--bg-primary);
            overflow: hidden;
        }

        .bg-orb {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite linear;
        }

        .bg-orb:nth-child(1) {
            width: 300px;
            height: 300px;
            background: var(--primary-gradient);
            top: 10%;
            left: -5%;
            animation-duration: 25s;
            animation-delay: 0s;
        }

        .bg-orb:nth-child(2) {
            width: 200px;
            height: 200px;
            background: var(--secondary-gradient);
            top: 60%;
            right: -5%;
            animation-duration: 30s;
            animation-delay: -10s;
        }

        .bg-orb:nth-child(3) {
            width: 400px;
            height: 400px;
            background: var(--accent-gradient);
            bottom: -10%;
            left: 30%;
            animation-duration: 35s;
            animation-delay: -20s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(30px) rotate(240deg);
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: var(--bg-glass);
            backdrop-filter: blur(var(--blur-strength));
            border: 1px solid var(--border-color);
            border-radius: 60px;
            padding: 12px 24px;
            box-shadow: var(--shadow-primary);
            animation: navSlideDown 1s ease-out;
        }

        @keyframes navSlideDown {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-primary);
            text-decoration: none;
            font-family: 'Space Grotesk', sans-serif;
        }

        .nav-logo .logo-icon {
            width: 32px;
            height: 32px;
            margin-right: 0.5rem;
            border-radius: 8px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: logoSpin 10s linear infinite;
        }

        @keyframes logoSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .nav-links {
            display: flex;
            gap: 1rem;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .nav-link:hover {
            color: var(--text-primary);
            transform: translateY(-2px);
        }

        .nav-link:hover::before {
            left: 0;
        }

        /* Header */
        .header {
            text-align: center;
            padding: 120px 2rem 60px;
            position: relative;
        }

        .header h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            from {
                filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
            }
            to {
                filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.6));
            }
        }

        .header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 2rem;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 14px 28px;
            background: var(--secondary-gradient);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            animation: fadeInUp 1s ease-out 0.7s both;
            box-shadow: var(--shadow-glow);
        }

        .header-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 40px rgba(240, 147, 251, 0.4);
        }

        .floating-icon {
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }

        /* AI Assistant Button */
        .ai-assistant-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: var(--ai-gradient);
            border: none;
            border-radius: 50%;
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            animation: aiPulse 2s ease-in-out infinite;
        }

        .ai-assistant-btn:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 48px rgba(102, 126, 234, 0.6);
        }

        .ai-assistant-btn .material-icons-round {
            font-size: 28px;
            color: white;
            animation: sparkle 1.5s ease-in-out infinite;
        }

        @keyframes aiPulse {
            0%, 100% { box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4); }
            50% { box-shadow: 0 8px 48px rgba(102, 126, 234, 0.8); }
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2) rotate(180deg); }
        }

        /* AI Chat Popup */
        .ai-chat-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .ai-chat-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .ai-chat-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            width: 90vw;
            max-width: 900px;
            height: 80vh;
            max-height: 700px;
            background: var(--bg-glass);
            backdrop-filter: blur(30px);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .ai-chat-overlay.active .ai-chat-popup {
            transform: translate(-50%, -50%) scale(1);
        }

        .ai-chat-header {
            display: flex;
            align-items: center;
            justify-content: between;
            padding: 20px 24px;
            background: var(--ai-gradient);
            color: white;
            position: relative;
        }

        .ai-chat-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .ai-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            animation: avatarPulse 2s ease-in-out infinite;
        }

        @keyframes avatarPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .ai-info h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .ai-info p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .ai-close-btn {
            margin-left: auto;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .ai-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .ai-chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ai-message {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            animation: messageSlideIn 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .ai-message.user {
            flex-direction: row-reverse;
        }

        @keyframes messageSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .message-avatar.ai {
            background: var(--ai-gradient);
            color: white;
        }

        .message-avatar.user {
            background: var(--secondary-gradient);
            color: white;
        }

        .message-content {
            max-width: 70%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .ai-message:not(.user) .message-content {
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
        }

        .ai-message.user .message-content {
            background: var(--primary-gradient);
            color: white;
        }

        .ai-chat-input {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px;
            background: var(--bg-glass);
            border-top: 1px solid var(--border-color);
        }

        .ai-input-field {
            flex: 1;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 25px;
            padding: 14px 20px;
            color: var(--text-primary);
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .ai-input-field:focus {
            border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .ai-send-btn {
            width: 48px;
            height: 48px;
            background: var(--primary-gradient);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .ai-send-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
        }

        .ai-send-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Tool Card in Chat */
        .chat-tool-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            margin: 8px 0;
            transition: all 0.3s ease;
        }

        .chat-tool-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
        }

        .chat-tool-image {
            height: 120px;
            overflow: hidden;
            background: var(--bg-secondary);
        }

        .chat-tool-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .chat-tool-content {
            padding: 12px;
        }

        .chat-tool-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .chat-tool-description {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .chat-tool-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: #667eea;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .chat-tool-link:hover {
            color: #764ba2;
        }

        /* Tools Grid */
        .tools-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }

        .tool-card {
            background: var(--bg-glass);
            backdrop-filter: blur(var(--blur-strength));
            border: 1px solid var(--border-color);
            border-radius: calc(var(--border-radius, 20px));
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            animation: cardSlideUp 0.8s ease-out both;
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-gradient);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .tool-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: var(--shadow-primary), var(--shadow-glow);
            border-color: rgba(102, 126, 234, 0.5);
        }

        .tool-card:hover::before {
            opacity: 0.05;
        }

        @keyframes cardSlideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tool-image {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: var(--bg-secondary);
        }

        .tool-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .tool-card:hover .tool-image img {
            transform: scale(1.1) rotate(2deg);
        }

        .tool-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
            animation: badgePulse 2s ease-in-out infinite;
            z-index: 10;
        }

        .tool-badge.premium {
            background: linear-gradient(45deg, #ffb347, #ffcc33);
            color: #7d5700;
        }

        .tool-badge.upcoming {
            background: var(--accent-gradient);
        }

        .tool-badge.new {
            background: var(--secondary-gradient);
        }

        .tool-badge.popular {
            background: var(--primary-gradient);
        }

        .tool-badge.ai-enhanced {
            background: var(--ai-gradient);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .tool-content {
            padding: 1.5rem;
        }

        .tool-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
        }

        .tool-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .tool-meta {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .tool-meta svg {
            margin-right: 0.5rem;
        }

        .tool-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .tool-btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 12px 20px;
            background: var(--primary-gradient);
            border: none;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
        }

        .tool-btn.disabled {
            background: #444;
            color: #888;
            cursor: not-allowed;
        }

        .tool-btn.disabled:hover {
            transform: none;
            box-shadow: none;
        }

        .tool-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .tool-btn:not(.disabled):hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .tool-btn:not(.disabled):hover::before {
            left: 100%;
        }

        .favorite-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
        }

        .favorite-btn:hover {
            transform: scale(1.1);
            background: var(--secondary-gradient);
            border-color: transparent;
        }

        .favorite-btn.active {
            background: var(--secondary-gradient);
            border-color: transparent;
        }

        .animated-icon {
            transition: all 0.3s ease;
        }

        .animated-icon:hover {
            animation: iconBounce 0.6s ease;
        }

        @keyframes iconBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2) rotate(5deg); }
        }

        /* Device Specific Animations */
        .android-theme .tool-card {
            animation: androidSlideIn 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) both;
        }

        @keyframes androidSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .ios-theme .tool-card {
            animation: iosSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }

        @keyframes iosSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 3rem 2rem;
            background: var(--bg-glass);
            backdrop-filter: blur(var(--blur-strength));
            border-top: 1px solid var(--border-color);
            margin-top: 4rem;
        }

        .footer p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                top: 10px;
                left: 10px;
                right: 10px;
                transform: none;
                border-radius: 20px;
            }

            .nav-container {
                justify-content: space-between;
                gap: 1rem;
            }

            .nav-links {
                display: none;
            }

            .header {
                padding: 100px 1rem 40px;
            }

            .tools-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem 2rem;
            }

            .ai-chat-popup {
                width: 95vw;
                height: 85vh;
                border-radius: 16px;
            }

            .ai-assistant-btn {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
            }
        }

        /* Utility Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOut 1s ease 2s forwards;
}

.loading-screen i {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 140px;
    opacity: 0;
    animation-name: scale;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.loading-screen i:nth-child(1) {
    animation-delay: 0.3s;
}

.loading-screen i:nth-child(2) {
    animation-delay: 0.6s;
}

.loading-screen i:nth-child(3) {
    animation-delay: 0.9s;
}

.loading-screen i:nth-child(4) {
    animation-delay: 1.2s;
}

.loading-screen i:nth-child(5) {
    animation-delay: 1.5s;
}

.loading-screen i:nth-child(6) {
    animation-delay: 1.8s;
}

.loading-screen i:nth-child(7) {
    animation-delay: 2.1s;
}

.loading-screen i:nth-child(8) {
    animation-delay: 2.4s;
}

.loading-screen i:nth-child(9) {
    animation-delay: 2.7s;
}

.loading-screen i:nth-child(10) {
    animation-delay: 3s;
}

@keyframes scale {
    0% {
        transform: scale(2);
        opacity: 0;
        box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: scale(1) translate(0px, -5px);
        opacity: 1;
        box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        transform: scale(0.1) translate(0px, 5px);
        opacity: 0;
        box-shadow: 0px 10px 20px rgba(255, 255, 255, 0);
    }
}

     
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-secondary);
        }

        .empty-state h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        /* Typing Animation */
        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 12px 16px;
            background: var(--bg-glass);
            border: 1px solid var(--border-color);
            border-radius: 18px;
            max-width: fit-content;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--text-secondary);
            animation: typingPulse 1.4s ease-in-out infinite;
        }

        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typingPulse {
            0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
            30% { transform: translateY(-10px); opacity: 1; }
        }
        
.loader {
  position: relative;
  width: 64px;
  height: 64px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 10px 10px 32px rgba(0,0,0,0.55);
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.loader::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: transparent;
  border: 1px dashed#444;
  border-radius: 50%;
  box-shadow: inset -2px -2px 10px rgba(0,0,0,0.25),
  inset 2px 2px 15px rgba(0,0,0,0.25);
}
.loader::after {
  content: '';
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px dashed#444;
  box-shadow: inset -2px -2px 10px rgba(0,0,0,0.25),
  inset 2px 2px 15px rgba(0,0,0,0.25);
}
.loader span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 100%;
  background: transparent;
  transform-origin: top left;
  animation: radar81 2s linear infinite;
  border-top: 1px dashed #fff;
}
.loader span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: seagreen;
  transform-origin: top left;
  transform: rotate(-55deg);
  filter: blur(12px) drop-shadow(8px 8px 8px seagreen);
}
@keyframes radar81 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Enhanced Status Badge Styles with Smooth Color Transitions and Glow Effects */
.tool-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    white-space: nowrap;
    width: fit-content;
    min-width: fit-content;
}

.tool-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease-in-out;
    z-index: 1;
}

.tool-badge .material-icons-round {
    font-size: 12px;
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.tool-badge span {
    position: relative;
    z-index: 2;
}

/* Live Status - Enhanced with Smooth Glow */
.tool-badge.status-live {
    --glow-color: rgb(40, 167, 69);
    --glow-spread-color: rgba(32, 201, 151, 0.6);
    --enhanced-glow-color: rgb(50, 215, 75);
    
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #32d74b 100%);
    background-size: 200% 200%;
    animation: liveColorShift 3s ease-in-out infinite, livePulse 2s ease-in-out infinite;
    box-shadow: 
        0 0 1em 0.25em var(--glow-color),
        0 0 2em 0.5em var(--glow-spread-color),
        inset 0 0 0.5em 0.1em rgba(255, 255, 255, 0.2),
        0 4px 20px rgba(40, 167, 69, 0.4);
    border: 0.2em solid var(--glow-color);
    text-shadow: 0 0 0.5em var(--glow-color);
}

.tool-badge.status-live::after {
    content: '';
    position: absolute;
    top: 120%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--glow-spread-color);
    filter: blur(1em);
    opacity: 0.7;
    transform: perspective(1em) rotateX(35deg) scale(1, 0.6);
    border-radius: inherit;
}

@keyframes liveColorShift {
    0%, 100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg) brightness(1);
    }
    20% {
        background-position: 25% 25%;
        filter: hue-rotate(5deg) brightness(1.05);
    }
    40% {
        background-position: 75% 75%;
        filter: hue-rotate(15deg) brightness(1.15);
    }
    60% {
        background-position: 150% 25%;
        filter: hue-rotate(25deg) brightness(1.25);
    }
    80% {
        background-position: 175% 75%;
        filter: hue-rotate(15deg) brightness(1.15);
    }
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 1em 0.25em var(--glow-color),
            0 0 2em 0.5em var(--glow-spread-color),
            inset 0 0 0.5em 0.1em rgba(255, 255, 255, 0.2),
            0 4px 20px rgba(40, 167, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 1.5em 0.3em var(--enhanced-glow-color),
            0 0 3em 1em var(--glow-spread-color),
            inset 0 0 0.75em 0.15em rgba(255, 255, 255, 0.3),
            0 6px 25px rgba(40, 167, 69, 0.6);
    }
}

/* Upcoming Status - Enhanced Orange with Advanced Effects */
.tool-badge.status-upcoming {
    --glow-color: rgb(255, 107, 53);
    --glow-spread-color: rgba(247, 147, 30, 0.6);
    --enhanced-glow-color: rgb(255, 140, 66);
    
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffa726 100%);
    background-size: 200% 200%;
    animation: upcomingColorFlow 4s ease-in-out infinite, upcomingPulse 3s ease-in-out infinite;
    box-shadow: 
        0 0 1em 0.2em var(--glow-color),
        0 0 2em 0.5em var(--glow-spread-color),
        inset 0 0 0.5em 0.1em rgba(255, 255, 255, 0.2),
        0 4px 20px rgba(255, 107, 53, 0.4);
    border: 0.15em solid var(--glow-color);
}

.tool-badge.status-upcoming .material-icons-round {
    animation: clockTick 2s linear infinite, iconGlow 2s ease-in-out infinite;
}

@keyframes upcomingColorFlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1) saturate(1);
    }
    16.66% {
        background-position: 33% 16%;
        filter: brightness(1.08) saturate(1.05);
    }
    33.33% {
        background-position: 66% 83%;
        filter: brightness(1.16) saturate(1.1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.25) saturate(1.15);
    }
    66.66% {
        background-position: 133% 16%;
        filter: brightness(1.16) saturate(1.1);
    }
    83.33% {
        background-position: 166% 83%;
        filter: brightness(1.08) saturate(1.05);
    }
}

@keyframes upcomingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 1em 0.2em var(--glow-color),
            0 0 2em 0.5em var(--glow-spread-color),
            inset 0 0 0.5em 0.1em rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 
            0 0 1.2em 0.25em var(--enhanced-glow-color),
            0 0 2.5em 0.8em var(--glow-spread-color),
            inset 0 0 0.75em 0.15em rgba(255, 255, 255, 0.3);
    }
}

@keyframes clockTick {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
    100% { transform: rotate(360deg); }
}

@keyframes iconGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
}

/* Beta Status - Enhanced Blue with Science Effects */
.tool-badge.status-beta {
    --glow-color: rgb(23, 162, 184);
    --glow-spread-color: rgba(0, 123, 255, 0.6);
    --enhanced-glow-color: rgb(32, 201, 255);
    
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 50%, #20c997 100%);
    background-size: 300% 300%;
    animation: betaColorMorph 3s ease-in-out infinite, betaPulse 2.5s ease-in-out infinite;
    box-shadow: 
        0 0 1em 0.2em var(--glow-color),
        0 0 2em 0.5em var(--glow-spread-color),
        inset 0 0 0.5em 0.1em rgba(255, 255, 255, 0.2);
    border: 0.15em solid var(--glow-color);
}

.tool-badge.status-beta .material-icons-round {
    animation: scienceBubble 2s ease-in-out infinite, iconSpark 1.5s linear infinite;
}

@keyframes betaColorMorph {
    0%, 100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg) brightness(1);
    }
    14.28% {
        background-position: 16% 16%;
        filter: hue-rotate(15deg) brightness(1.05);
    }
    28.57% {
        background-position: 50% 84%;
        filter: hue-rotate(35deg) brightness(1.12);
    }
    42.85% {
        background-position: 84% 16%;
        filter: hue-rotate(55deg) brightness(1.18);
    }
    57.14% {
        background-position: 116% 84%;
        filter: hue-rotate(70deg) brightness(1.22);
    }
    71.42% {
        background-position: 150% 50%;
        filter: hue-rotate(55deg) brightness(1.18);
    }
    85.71% {
        background-position: 184% 16%;
        filter: hue-rotate(35deg) brightness(1.12);
    }
}

@keyframes betaPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.2);
    }
}

@keyframes scienceBubble {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        filter: hue-rotate(0deg) brightness(1);
    }
    50% { 
        transform: scale(1.1) rotate(10deg); 
        filter: hue-rotate(30deg) brightness(1.3);
    }
}

@keyframes iconSpark {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Premium Status - Enhanced Gold with Luxury Effects */
.tool-badge.status-premium {
    --glow-color: rgb(255, 215, 0);
    --glow-spread-color: rgba(255, 179, 71, 0.7);
    --enhanced-glow-color: rgb(255, 237, 74);
    
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 30%, #f6ad55 60%, #ffed4a 100%);
    background-size: 400% 400%;
    color: #7d5700;
    animation: premiumColorFlow 4s ease-in-out infinite, premiumShine 2s ease-in-out infinite;
    box-shadow: 
        0 0 1.2em 0.3em var(--glow-color),
        0 0 2.5em 0.8em var(--glow-spread-color),
        inset 0 0 0.75em 0.2em rgba(255, 255, 255, 0.4),
        0 4px 30px rgba(255, 215, 0, 0.7);
    border: 0.2em solid var(--glow-color);
    text-shadow: 0 0 0.8em var(--glow-color);
    position: relative;
    overflow: hidden;
}

.tool-badge.status-premium::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: premiumSweep 3s ease-in-out infinite;
}

.tool-badge.status-premium .material-icons-round {
    animation: starTwinkle 1.5s ease-in-out infinite, starRotate 3s linear infinite;
}

@keyframes premiumColorFlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1) saturate(1);
    }
    12.5% {
        background-position: 25% 12%;
        filter: brightness(1.06) saturate(1.03);
    }
    25% {
        background-position: 50% 88%;
        filter: brightness(1.12) saturate(1.07);
    }
    37.5% {
        background-position: 75% 25%;
        filter: brightness(1.18) saturate(1.1);
    }
    50% {
        background-position: 100% 75%;
        filter: brightness(1.25) saturate(1.13);
    }
    62.5% {
        background-position: 125% 12%;
        filter: brightness(1.18) saturate(1.1);
    }
    75% {
        background-position: 150% 88%;
        filter: brightness(1.12) saturate(1.07);
    }
    87.5% {
        background-position: 175% 25%;
        filter: brightness(1.06) saturate(1.03);
    }
}

@keyframes premiumShine {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 1.2em 0.3em var(--glow-color),
            0 0 2.5em 0.8em var(--glow-spread-color),
            inset 0 0 0.75em 0.2em rgba(255, 255, 255, 0.4),
            0 4px 30px rgba(255, 215, 0, 0.7);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 
            0 0 1.5em 0.4em var(--enhanced-glow-color),
            0 0 3.5em 1.2em var(--glow-spread-color),
            inset 0 0 1em 0.3em rgba(255, 255, 255, 0.6),
            0 6px 40px rgba(255, 215, 0, 0.9);
    }
}

@keyframes premiumSweep {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: -150%; }
}

@keyframes starTwinkle {
    0%, 100% { 
        transform: scale(1); 
        filter: brightness(1) drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    }
    50% { 
        transform: scale(1.3); 
        filter: brightness(1.5) drop-shadow(0 0 8px rgba(255, 215, 0, 1));
    }
}

@keyframes starRotate {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* AI Enhanced Status - Magical Purple with Advanced Effects */
.tool-badge.status-ai_enhanced {
    --glow-color: rgb(156, 39, 176);
    --glow-spread-color: rgba(103, 58, 183, 0.8);
    --enhanced-glow-color: rgb(231, 206, 255);
    
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 25%, #e91e63 50%, #3f51b5 75%, #9c27b0 100%);
    background-size: 400% 400%;
    animation: aiColorMagic 3s ease-in-out infinite, aiPulse 2s ease-in-out infinite;
    box-shadow: 
        0 0 1.5em 0.4em var(--glow-color),
        0 0 3em 1em var(--glow-spread-color),
        inset 0 0 1em 0.3em rgba(255, 255, 255, 0.2),
        0 4px 25px rgba(156, 39, 176, 0.6);
    border: 0.25em solid var(--glow-color);
    text-shadow: 0 0 1em var(--enhanced-glow-color);
    position: relative;
}

.tool-badge.status-ai_enhanced::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.4), rgba(103, 58, 183, 0.2), transparent 70%);
    transform: translate(-50%, -50%);
    animation: aiAura 3s ease-in-out infinite;
    z-index: -1;
    border-radius: 50%;
}

.tool-badge.status-ai_enhanced .material-icons-round {
    animation: magicSparkle 1.2s linear infinite, magicFloat 2s ease-in-out infinite;
}

@keyframes aiColorMagic {
    0%, 100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg) brightness(1);
    }
    10% {
        background-position: 20% 10%;
        filter: hue-rotate(18deg) brightness(1.04);
    }
    20% {
        background-position: 40% 90%;
        filter: hue-rotate(36deg) brightness(1.08);
    }
    30% {
        background-position: 60% 20%;
        filter: hue-rotate(54deg) brightness(1.12);
    }
    40% {
        background-position: 80% 80%;
        filter: hue-rotate(72deg) brightness(1.16);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(90deg) brightness(1.2);
    }
    60% {
        background-position: 120% 10%;
        filter: hue-rotate(72deg) brightness(1.16);
    }
    70% {
        background-position: 140% 90%;
        filter: hue-rotate(54deg) brightness(1.12);
    }
    80% {
        background-position: 160% 20%;
        filter: hue-rotate(36deg) brightness(1.08);
    }
    90% {
        background-position: 180% 80%;
        filter: hue-rotate(18deg) brightness(1.04);
    }
}

@keyframes aiPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 1.5em 0.4em var(--glow-color),
            0 0 3em 1em var(--glow-spread-color),
            inset 0 0 1em 0.3em rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 
            0 0 2em 0.5em var(--enhanced-glow-color),
            0 0 4em 1.5em var(--glow-spread-color),
            inset 0 0 1.2em 0.4em rgba(255, 255, 255, 0.4);
    }
}

@keyframes aiAura {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
    }
}

@keyframes magicSparkle {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        filter: brightness(1) hue-rotate(0deg);
    }
    25% { 
        transform: rotate(90deg) scale(1.2);
        filter: brightness(1.3) hue-rotate(90deg);
    }
    50% { 
        transform: rotate(180deg) scale(0.9);
        filter: brightness(1.5) hue-rotate(180deg);
    }
    75% { 
        transform: rotate(270deg) scale(1.1);
        filter: brightness(1.2) hue-rotate(270deg);
    }
}

@keyframes magicFloat {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-2px);
    }
}

/* Offline Status - Enhanced Red with Power Effects */
.tool-badge.status-offline {
    --glow-color: rgb(220, 53, 69);
    --glow-spread-color: rgba(200, 35, 51, 0.6);
    
    background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #6c757d 100%);
    background-size: 200% 200%;
    animation: offlineColorFade 4s ease-in-out infinite, offlineBlink 3s ease-in-out infinite;
    box-shadow: 
        0 0 1em 0.2em var(--glow-color),
        0 0 2em 0.5em var(--glow-spread-color),
        inset 0 0 0.5em 0.1em rgba(255, 255, 255, 0.1);
    border: 0.15em solid var(--glow-color);
}

.tool-badge.status-offline .material-icons-round {
    animation: powerPulse 2s ease-in-out infinite, iconFlicker 1.5s ease-in-out infinite;
}

@keyframes offlineColorFade {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1) saturate(1);
    }
    16.66% {
        background-position: 25% 25%;
        filter: brightness(0.95) saturate(0.9);
    }
    33.33% {
        background-position: 50% 75%;
        filter: brightness(0.85) saturate(0.75);
    }
    50% {
        background-position: 75% 50%;
        filter: brightness(0.7) saturate(0.5);
    }
    66.66% {
        background-position: 100% 25%;
        filter: brightness(0.85) saturate(0.75);
    }
    83.33% {
        background-position: 125% 75%;
        filter: brightness(0.95) saturate(0.9);
    }
}

@keyframes offlineBlink {
    0%, 70%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    85% {
        opacity: 0.4;
        transform: scale(0.95);
    }
}

@keyframes powerPulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(0.85);
        filter: brightness(0.6);
    }
}

@keyframes iconFlicker {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

/* Enhanced Hover Effects */
.tool-card:hover .tool-badge {
    transform: scale(1.15);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tool-card:hover .tool-badge::before {
    left: 100%;
    transition: left 0.8s ease-in-out;
}

.tool-badge.status-live:hover {
    animation-duration: 1s;
    color: var(--glow-color);
    background: var(--enhanced-glow-color);
}

.tool-badge.status-upcoming:hover {
    animation-duration: 1.5s;
    filter: brightness(1.3);
}

.tool-badge.status-beta:hover {
    animation-duration: 1s;
    filter: brightness(1.2) saturate(1.3);
}

.tool-badge.status-premium:hover {
    animation-duration: 1s;
    color: var(--glow-color);
    background: var(--enhanced-glow-color);
}

.tool-badge.status-ai_enhanced:hover {
    animation-duration: 0.8s;
    filter: brightness(1.4);
}

.tool-badge.status-offline:hover {
    animation-duration: 1.5s;
    filter: brightness(1.1);
}

/* Enhanced Active States */
.tool-badge:active {
    transform: scale(0.95);
    box-shadow: 
        0 0 0.6em 0.2em var(--glow-color, rgba(255, 255, 255, 0.5)),
        0 0 1.5em 0.8em var(--glow-spread-color, rgba(255, 255, 255, 0.3)),
        inset 0 0 0.5em 0.15em rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tool-badge {
        top: 6px;
        right: 6px;
        padding: 3px 6px;
        font-size: 0.6rem;
        border-radius: 12px;
    }
    
    .tool-badge .material-icons-round {
        font-size: 10px;
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .tool-badge,
    .tool-badge::before,
    .tool-badge::after,
    .tool-badge .material-icons-round {
        animation: none !important;
        transition: opacity 0.3s ease, transform 0.3s ease !important;
    }
    
    .tool-badge:hover {
        opacity: 0.9;
        transform: scale(1.05);
    }
}




        .header-badge {
            position: relative;
            padding: 14px 32px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #1a1a1a;
            background: linear-gradient(135deg, #f4e4c1 0%, #d4af37 25%, #f9f295 50%, #d4af37 75%, #f4e4c1 100%);
            background-size: 300% 300%;
            border-radius: 50px;
            cursor: pointer;
            overflow: hidden;
            box-shadow: 
                0 0 30px rgba(212, 175, 55, 0.6),
                0 0 60px rgba(212, 175, 55, 0.4),
                0 8px 32px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
            animation: goldFlow 4s ease infinite, levitate 3s ease-in-out infinite;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Neon trail effect */
        .header-badge::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50px;
            background: linear-gradient(90deg, 
                transparent,
                rgba(255, 215, 0, 0.8),
                rgba(255, 223, 0, 1),
                rgba(255, 215, 0, 0.8),
                transparent
            );
            background-size: 200% 100%;
            animation: neonTrail 3s linear infinite;
            opacity: 0.8;
            filter: blur(8px);
        }

        /* Glossy overlay */
        .header-badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            animation: glossyShine 3s ease-in-out infinite;
            pointer-events: none;
        }

        /* Ambient light particles */
        .header-badge .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: radial-gradient(circle, #fff 0%, rgba(255, 223, 0, 0.8) 50%, transparent 100%);
            border-radius: 50%;
            pointer-events: none;
            animation: particleFloat 4s ease-in-out infinite;
            opacity: 0;
        }

        .header-badge .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .header-badge .particle:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 1.3s;
        }

        .header-badge .particle:nth-child(3) {
            top: 40%;
            left: 30%;
            animation-delay: 2.6s;
        }

        .header-badge .particle:nth-child(4) {
            top: 70%;
            left: 60%;
            animation-delay: 1.9s;
        }

        /* Inner glow */
        .header-badge-text {
            position: relative;
            z-index: 1;
            text-shadow: 
                0 1px 2px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 255, 255, 0.5);
        }

        /* Hover effects */
        .header-badge:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 
                0 0 40px rgba(212, 175, 55, 0.8),
                0 0 80px rgba(212, 175, 55, 0.5),
                0 12px 48px rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
        }

        .header-badge:hover::before {
            opacity: 1;
            filter: blur(6px);
        }

        .header-badge:active {
            transform: translateY(0) scale(0.98);
        }

        /* Animations */
        @keyframes goldFlow {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes neonTrail {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        @keyframes glossyShine {
            0% {
                left: -100%;
            }
            50%, 100% {
                left: 200%;
            }
        }

        @keyframes levitate {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-4px);
            }
        }

        @keyframes particleFloat {
            0%, 100% {
                opacity: 0;
                transform: translateY(0) scale(0);
            }
            50% {
                opacity: 1;
                transform: translateY(-20px) scale(1);
            }
        }

        /* Pulsing ambient glow */
        @keyframes ambientPulse {
            0%, 100% {
                filter: brightness(1) drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
            }
            50% {
                filter: brightness(1.1) drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
            }
        }

        .header-badge {
            animation: goldFlow 4s ease infinite, levitate 3s ease-in-out infinite, ambientPulse 2s ease-in-out infinite;
        }
        
        
        
        
        
        
        
        
        
        
        
