.glow-footer {
    padding: 60px 5% 40px 5%;
    position: relative;
    z-index: 10;
    color: #ffffff;
    background: linear-gradient(45deg, #FF0000, #007AFF, #FFCC00, #AF52DE, #FF0000);
    background-size: 400% 400%;
    animation: footerGlowBg 10s ease infinite;
    border-top: 1px solid rgba(255,255,255,0.2);
}
@keyframes footerGlowBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.footer-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-links, .footer-social {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-links a, .footer-social a {
    font-size: 16px;
    font-weight: 800;
    transition: opacity 0.3s;
}
.footer-links a:hover, .footer-social a:hover {
    opacity: 0.7;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}
.footer-contact a {
    font-size: 24px;
    font-weight: 900;
    transition: opacity 0.3s;
}
.footer-contact a:hover {
    opacity: 0.7;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
}
