     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .main-content {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .compact-footer {
            background: #000000;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
        }

        .compact-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
            opacity: 0.3;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px 8px;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 15px;
            align-items: start;
            margin-bottom: 10px;
        }

        .brand-section {
            max-width: 400px;
        }

        .brand-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .quality-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin: 10px 0;
        }

        .quality-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.15);
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .quality-badge i {
            font-size: 0.8rem;
        }

        .brand-description {
            color: #b0bec5;
            line-height: 1.3;
            font-size: 1.0rem;
            margin-bottom: 8px;
        }

        .developer-info {
            margin-top: 10px;
            padding: 8px 12px;
            font-size: 0.85rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: inline-block;
        }

        .developer-info small {
            color: #ffffff;
            font-weight: 500;
        }

        .heart {
            color: #ff6b6b;
            animation: heartbeat 1s ease-in-out infinite;
            margin: 0 2px;
        }

        @keyframes heartbeat {
            0%, 50%, 100% { transform: scale(1); }
            25%, 75% { transform: scale(1.05); }
        }

        .footer-section h4 {
            font-size: 1.0rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #ffffff;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.75rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 2px 0;
        }

        .footer-links a:hover {
            color: #ffeb3b;
            transform: translateX(3px);
        }

        .footer-links a i {
            font-size: 0.9rem;
            width: 12px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #b0bec5;
            font-size: 0.75rem;
            line-height: 1.2;
        }

        .contact-icon {
            width: 18px;
            height: 18px;
            background: rgba(100, 181, 246, 0.1);
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64b5f6;
            flex-shrink: 0;
            font-size: 0.6rem;
        }

        .social-section {
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 6px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .social-link {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b0bec5;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.75rem;
        }

        .social-link:hover {
            background: #ffffff;
            color: #2196f3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 0 3px;
            text-align: center;
        }

        .footer-copyright {
            color: #90a4ae;
            font-size: 1.0rem;
        }

        .floating-element {
            position: absolute;
            background: rgba(100, 181, 246, 0.08);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }

        .floating-element:nth-child(1) {
            width: 40px;
            height: 40px;
            top: 15%;
            right: 8%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 25px;
            height: 25px;
            top: 70%;
            right: 25%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
            50% { transform: translateY(-10px) rotate(180deg); opacity: 0.4; }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            
            .social-section {
                grid-column: span 2;
                margin-top: 5px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 12px 15px 6px;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 12px;
                text-align: center;
            }

            .brand-section {
                max-width: 100%;
                text-align: center;
            }

            .footer-section {
                text-align: center;
            }

            .footer-section h4 {
                font-size: 0.85rem;
                margin-bottom: 6px;
            }

            .footer-links {
                align-items: center;
            }

            .social-section {
                grid-column: span 1;
                margin-top: 3px;
            }

            .social-links {
                justify-content: center;
            }

            .quality-badges {
                justify-content: center;
            }

            .developer-info {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                padding: 10px 10px 5px;
            }

            .developer-info {
                padding: 10px 15px;
                font-size: 0.9rem;
                margin: 10px auto;
                display: block;
                text-align: center;
            }

            .developer-info small {
                font-size: 1rem;
                font-weight: 600;
            }

            .contact-item {
                justify-content: center;
            }

            .footer-links {
                align-items: center;
            }
        }