        /* ==================== ENHANCED FOOTER ==================== */
        footer {
            background: var(--dark);
            color: white;
            padding: 0px 0 10px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 2;
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .copyright-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .copyright-text strong {
            color: white;
            font-weight: 600;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .developer-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 5px 5px;
            border-radius: 50px;
            color: white;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            font-size: 0.8rem;
            gap: 10px;
            margin-top: 2px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .developer-badge:hover {
            background: var(--gradient);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
        }

        .developer-badge i {
            color: var(--primary);
        }

        .policy-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .policy-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .policy-links a:hover {
            color: white;
        }