.footer {
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(20,0,0,1) 100%);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer_top {
    text-align: center;
}

.footer_logo_img {
    height: 50px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer_logo_img:hover {
    transform: scale(1.1);
}

.footer_tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
}

.footer_nav {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.footer_link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.footer_link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff0000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer_link:hover {
    color: #ff0000;
}

.footer_link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.footer_line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin: 1rem auto;
}

.footer_copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 0.1rem;
}

.footer_glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,0,0,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@keyframes footerGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.1);
    }
}

.footer_glow {
    animation: footerGlow 4s ease-in-out infinite;
}
