footer {
    padding: 2rem 0 1rem;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    position: relative;
}

.footer-content {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    padding: 0 2rem;
    margin: 0 auto;
    gap: 3rem;
}

.footer-branding {
    display: flex;
    align-items: center;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.powered-by {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-text {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.1rem;
    }

    .copyright {
        margin-top: 0.5rem;
    }
}

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