/* === FOOTER STYLES === */
.footer_container {
    position: relative;
    background: #000;
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    overflow: hidden;
}

.footer_container::before,
.footer_container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00bfff, transparent);
    box-shadow: 0 0 10px #00bfff, 0 0 20px #00bfff;
}

.footer_container::before { top: 0; }
.footer_container::after { bottom: 0; }

.footer_inner {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.footer_links {
    margin-top: 0.5rem;
}

.footer_links a {
    color: #00bfff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_links a:hover {
    color: #66d9ff;
}

/* Mobile */
@media (max-width: 600px) {
    .footer_inner {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
