        :root {
            --primary-gradient: linear-gradient(135deg, #764ba2 0%, #bb0906 50%, #764ba2 100%);
            --secondary-gradient: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
            --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --accent-color: #00f2fe;
            --glass-bg: #02153b;
            --glass-border: rgba(6, 200, 249, 0.2);
        }

        /* Gündüz Modu */
        .light-theme {
            --primary-gradient: linear-gradient(135deg, #764ba2 0%, #bb0906 50%, #764ba2 100%);
            --secondary-gradient: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
            --dark-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
            --accent-color: #667eea;
            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(102, 126, 234, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            background: var(--dark-gradient);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            background: var(--dark-gradient);
            color: var(--text-primary);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        /* Navigation */
        .max-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(354deg, #0c2f3f 0%, #030427 100%);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            padding: 0;
            transition: all 0.3s ease;
        }

        .light-theme .max-navbar {
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(102, 126, 234, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0.5rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
            background: var(--glass-border);
            backdrop-filter: blur(20px);
            border: 1px solid var(--accent-color);
            border-radius: 50px;
            padding: 12px;
        }

        .light-theme .nav-menu {
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 18px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #ffffff;
            background: var(--primary-gradient);
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-secondary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            backdrop-filter: blur(10px);
        }

        .theme-toggle:hover {
            color: var(--accent-color);
            border-color: var(--accent-color);
            transform: rotate(30deg);
            box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
        }

        /* Projects Header */
        .projects-header {
            padding: 150px 0 80px;
            text-align: center;
            background: linear-gradient(359deg, #0a1e37 0%, #030427 100%);
            position: relative;
        }

        .light-theme .projects-header {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .projects-header::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            top: 0;
            left: 0;
        }

        .projects-header h1 {
            font-size: 4rem;
            font-weight: 900;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            position: relative;
        }

        .projects-header p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            position: relative;
        }

        /* Filter Section */
        .filter-section {
            background: linear-gradient(354deg, #0c2f3f 0%, #030427 100%);
            padding: 3rem 0;
            position: sticky;
            top: 70px;
            z-index: 999;
            border-bottom: 1px solid var(--glass-border);
        }

        .light-theme .filter-section {
            background: linear-gradient(135deg, #e3f2fd 0%, #f5f7fa 100%);
            border-bottom: 1px solid rgba(102, 126, 234, 0.2);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .filter-container {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .search-box {
            flex: 1;
            min-width: 300px;
        }

        .search-box input {
            width: 100%;
            padding: 1rem 1.5rem;
            background: var(--glass-bg);
            border: 2px solid var(--glass-border);
            border-radius: 50px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .light-theme .search-box input {
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(102, 126, 234, 0.2);
            color: var(--text-primary);
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
        }

        .search-box input::placeholder {
            color: var(--text-secondary);
        }

        .filter-tags {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .filter-tag {
            padding: 0.7rem 1.5rem;
            background: var(--glass-bg);
            border: 2px solid var(--glass-border);
            border-radius: 25px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
        }

        .light-theme .filter-tag {
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(102, 126, 234, 0.2);
        }

        .filter-tag:hover,
        .filter-tag.active {
            background: var(--primary-gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        /* Projects Grid */
        .projects-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, #030427 0%, #0c2f3f 100%);
            flex: 1;
        }

        .light-theme .projects-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .project-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            transition: all 0.4s ease;
            position: relative;
            cursor: pointer;
        }

        .light-theme .project-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .project-card:hover::before {
            transform: scaleX(1);
        }

        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            border-color: var(--accent-color);
        }

        .project-image {
            height: 250px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .project-icon {
            font-size: 4rem;
            color: white;
            z-index: 2;
            transition: all 0.4s ease;
        }

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

        .project-content {
            padding: 2rem;
        }

        .project-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 700;
        }

        .project-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 1rem;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tech-tag {
            background: rgba(0, 242, 254, 0.1);
            color: var(--accent-color);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(0, 242, 254, 0.2);
            font-weight: 500;
        }

        .light-theme .tech-tag {
            background: rgba(102, 126, 234, 0.1);
            color: var(--accent-color);
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .project-links {
            display: flex;
            gap: 1rem;
        }

        .project-link {
            color: var(--text-primary);
            text-decoration: none;
            padding: 0.6rem 1.2rem;
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }

        .light-theme .project-link {
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .project-link:hover {
            background: var(--accent-color);
            color: #0c0c0c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
        }

        /* Project Stats */
        .project-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .stat-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .light-theme .stat-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-color);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 500;
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(349deg, #0c2f3f 0%, #030427 100%);
            border-top: 1px solid var(--glass-border);
            padding: 3rem 0;
            margin-top: auto;
        }

        /* Footer Styles */
        .footer {
             background: linear-gradient(290deg, #0c2f3f 0%, #030427 100%);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        /* Footer Column */
        .footer-column {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }

        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.3s; }
        .footer-column:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Column */
        .footer-about h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #764ba2 0%, #bb0906 50%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-about .subtitle {
            font-size: 1rem;
            color: #b0b0b0;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 50%;
        }

        .social-link i {
            position: relative;
            z-index: 1;
        }

        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .social-link:hover::before {
            opacity: 1;
        }

        /* Footer Column Title */
        .footer-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(135deg, #764ba2 0%, #bb0906 50%, #764ba2 100%);
            border-radius: 2px;
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 0;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 20px;
            transform: translateX(5px);
        }

        .footer-links a:hover::before {
            width: 10px;
        }

        /* Technologies List */
        .tech-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .tech-item {
            color: #b0b0b0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .tech-item i {
            color: #667eea;
            font-size: 0.8rem;
        }

        .tech-item:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #b0b0b0;
            font-size: 0.9rem;
            animation: fadeIn 1s ease 0.5s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom .heart {
            color: #e74c3c;
            animation: heartbeat 1.5s ease infinite;
            display: inline-block;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            10%, 30% { transform: scale(1.1); }
            20%, 40% { transform: scale(0.9); }
        }

        /* Floating Animation for Social Icons */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        .social-link:nth-child(1) { animation: float 3s ease-in-out infinite; }
        .social-link:nth-child(2) { animation: float 3s ease-in-out 0.5s infinite; }
        .social-link:nth-child(3) { animation: float 3s ease-in-out 1s infinite; }
        .social-link:nth-child(4) { animation: float 3s ease-in-out 1.5s infinite; }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 3rem 0 1.5rem;
            }

            .footer-container {
                padding: 0 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-about h3 {
                font-size: 1.5rem;
            }

            .social-links {
                justify-content: flex-start;
            }

            .footer-title {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 2rem 0 1rem;
            }

            .footer-about h3 {
                font-size: 1.3rem;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .footer-grid {
                gap: 2rem;
            }
        }

        .light-theme .footer {
            background: linear-gradient(349deg, #e3f2fd 0%, #f5f7fa 100%);
            border-top: 1px solid rgba(102, 126, 234, 0.2);
        }

        .light-theme .footer::before {
            background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
        }

        .light-theme .social-link {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(102, 126, 234, 0.2);
            color: #2d3748;
        }

        .light-theme .footer-title {
            color: #2d3748;
        }

        .light-theme .footer-links a,
        .light-theme .tech-item {
            color: #4a5568;
        }

        .light-theme .footer-links a:hover,
        .light-theme .tech-item:hover {
            color: #2d3748;
        }

        .light-theme .footer-bottom {
            border-top: 1px solid rgba(102, 126, 234, 0.2);
            color: #4a5568;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .light-theme .social-link {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .social-link:hover {
            background: var(--primary-gradient);
            color: white;
            transform: translateY(-3px);
        }

          .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-gradient);
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-primary);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
        }

        .light-theme .menu-toggle {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .projects-header h1 {
                font-size: 2.5rem;
            }

            .filter-container {
                flex-direction: column;
                gap: 1.5rem;
            }

            .search-box {
                width: 100%;
            }

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

            .filter-section {
                position: relative;
                top: 0;
            }

            .nav-menu {
                flex-direction: column;
                position: fixed;
                top: 80px;
                right: -100%;
                background: linear-gradient(354deg, #0c2f3f 0%, #030427 100%);
                backdrop-filter: blur(20px);
                border: 1px solid var(--glass-border);
                border-radius: 20px;
                padding: 2rem;
                transition: all 0.3s ease;
                z-index: 999;
                width: 280px;
            }

            .light-theme .nav-menu {
                background: rgba(255, 255, 255, 0.95);
                border: 1px solid rgba(102, 126, 234, 0.2);
            }

            .nav-menu.active {
                right: 2rem;
            }

            .menu-toggle {
                display: flex;
            }

            .footer-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .project-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .project-stats {
                grid-template-columns: 1fr;
            }
            
            .projects-header h1 {
                font-size: 2rem;
            }
        }

        @media (min-width: 969px) {
            .menu-toggle {
                display: none;
            }
        }
        .project-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .stat-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .stat-card:hover::before {
            left: 100%;
        }

        .stat-card:hover {
            transform: translateY(-10px) scale(1.05);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 242, 254, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            transition: all 0.4s ease;
        }

        .stat-card:hover .stat-number {
            transform: scale(1.2);
            text-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 500;
            margin-top: 0.5rem;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-label {
            color: var(--accent-color);
            transform: translateY(5px);
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .stat-card {
            animation: float 6s ease-in-out infinite;
        }

        .stat-card:nth-child(1) { animation-delay: 0s; }
        .stat-card:nth-child(2) { animation-delay: 1.5s; }
        .stat-card:nth-child(3) { animation-delay: 3s; }
        .stat-card:nth-child(4) { animation-delay: 4.5s; }

        /* Pulse Effect */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(0, 242, 254, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
            }
        }

        .stat-card:hover {
            animation: pulse 2s infinite;
        }

        /* Counter Animation */
        .counting {
            animation: countUp 2s ease-out forwards;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Icon Animation */
        .stat-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: scale(0);
            transition: all 0.5s ease;
        }

        .stat-card.visible .stat-icon {
            opacity: 1;
            transform: scale(1);
        }

        .stat-card:hover .stat-icon {
            animation: bounce 1s ease infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) scale(1);
            }
            40% {
                transform: translateY(-10px) scale(1.1);
            }
            60% {
                transform: translateY(-5px) scale(1.05);
            }
        }

        /* Progress Bar */
        .stat-progress {
            height: 4px;
            background: var(--glass-border);
            border-radius: 2px;
            margin-top: 1rem;
            overflow: hidden;
            position: relative;
        }

        .stat-progress-bar {
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 2px;
            width: 0%;
            transition: width 2s ease-in-out;
        }

        .stat-card:hover .stat-progress-bar {
            width: 100%;
        }

        /* Glow Effect */
        .stat-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--primary-gradient);
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover::after {
            opacity: 0.3;
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .stat-card {
                animation: none;
            }
            
            .stat-card:hover {
                transform: translateY(-5px) scale(1.02);
            }
        }
        .neon-search {
            display: flex;
            align-items: center;
            background: rgba(0, 10, 40, 0.6);
            border: 2px solid #003366;
            border-radius: 40px;
            padding: 3px 15px;
            width: 100%;
            max-width: 600px;
            box-shadow: 0 0 25px rgba(0, 140, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .neon-search input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            font-size: 18px;
            color: #d1e8ff;
        }

        .neon-search input::placeholder {
            color: #9bb9ff;
        }

        .search-btn {
            background: linear-gradient(135deg, #0c2f3f, #bc0909);
            border: none;
            outline: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 10px 18px;
            border-radius: 50%;
            
            transition: 0.2s;
        }

        .search-btn:hover {
            transform: scale(1.1);
             box-shadow: 0 0 30px #3f0c0c;
        }

        .no-results {
            text-align: center;
            padding: 4rem 2rem;
            grid-column: 1 / -1;
        }

        .no-results-icon {
            font-size: 4rem;
            color: #6c757d;
            margin-bottom: 1.5rem;
            opacity: 0.7;
        }

        .no-results-title {
            font-size: 1.5rem;
            color: #495057;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .no-results-message {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .no-results-suggestions {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            text-align: left;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .no-results-suggestions p {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #495057;
        }

        .no-results-suggestions ul {
            list-style-type: none;
            padding-left: 0;
        }

        .no-results-suggestions li {
            padding: 0.3rem 0;
            color: #6c757d;
            position: relative;
            padding-left: 1.5rem;
        }

        .no-results-suggestions li:before {
            content: "•";
            color: #007bff;
            position: absolute;
            left: 0.5rem;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background: #0056b3;
            color: white;
            text-decoration: none;
        }

        .btn-primary {
            background: #007bff;
        }

        .btn-primary:hover {
            background: #0056b3;
        }
