/*
=====================================================
  FOOTER.CSS - Enhanced Fancy Footer Styling
=====================================================
*/
footer {
    flex-shrink: 0;
    background: linear-gradient(135deg, #141414, #1e1e1e 60%, #101010);
    border-top: 2px solid #00ffcc;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 -4px 15px rgba(0, 255, 204, 0.15);
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #00ffcc;
    margin: 0 18px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #00ffcc;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.8);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-disclaimer {
    color: #bbb;
    font-size: 0.85rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Optional: Add a subtle animated glow at the top border */
footer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
            90deg,
            transparent,
            #00ffcc,
            #00ffcc,
            transparent
    );
    animation: glow-move 3s linear infinite;
}

@keyframes glow-move {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}
