
        /* Footer Styles */
        footer {
            margin: 80px 10%;
            border-top: 1px solid #333;
            padding: 60px 10px;
            text-align: center;
            /* background-color: #fff; */
            /* box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05); */
            /* border-radius: 12px 12px 0 0; */
            position: relative;
        }

        /* Handwritten Name with Color Animation */
        .footer-name {
            font-family: 'Dancing Script', cursive;
            font-size: 3.2rem;
            font-weight: 400;
            background: linear-gradient(90deg, #333, #ff6b6b, #feca57, #48dbfb, #1dd1a1, #ff9ff3, #ff6b6b);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 6s ease infinite;
            margin-bottom: 25px;
            display: inline-block;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Social Buttons */
        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-btn {
            width: 100px;
            height: 100px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #333;
            background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
            border: 1px solid #ddd;
            box-shadow: 
                0 4px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 3px rgba(255, 255, 255, 0.8),
                inset 0 -1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .social-btn:hover::before {
            opacity: 1;
        }

        .social-btn i {
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
        }

        /* Instagram Hover */
        .instagram-btn:hover {
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(225, 48, 108, 0.3);
        }

        /* TikTok Hover */
        .tiktok-btn:hover {
            background: linear-gradient(135deg, #000000 0%, #ff0050 50%, #00f2ea 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            footer {
                margin: 60px 5%;
                padding: 50px 10px;
            }
            .footer-name {
                font-size: 2.5rem;
            }
            .social-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .footer-name {
                font-size: 2rem;
            }
            .social-buttons {
                gap: 15px;
            }
            .social-btn {
                width: 65px;
                height: 65px;
                font-size: 1.1rem;
            }
        }