/* Footer styles extracted from theme.min.css */
footer.footer {
    margin: 0;
    padding: 50px 0 80px !important;
    background-color: #404040 !important;
    color: #eee !important;
    font-size: .9rem !important;
}

footer.footer .nav-link {
    color: #eee !important;
}

footer.footer .btn {
    background-color: rgba(255, 255, 255, .1) !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 1.75rem !important;
    padding: 0 10px !important;
}

footer.footer .btn-icon {
    padding: 0 !important;
    width: 1.75rem !important;
    height: 1.75rem !important;
}

footer.footer .dropdown-item {
    font-size: .9em !important;
}

footer.footer .copyright {
    margin: 30px 0 !important;
    font-size: .85rem !important;
    text-align: center !important;
}

footer.footer .notices {
    margin: 30px 0 !important;
    font-size: .85rem !important;
    text-align: center !important;
}

/* Animated underline for footer links (adapted from style.css) */
footer.footer .nav-link {
    position: relative;
    display: inline-block;
    transition: color 0.3s, box-shadow 0.3s;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
    font-size: 1.1em;
}
footer.footer .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ff99, #00c3ff);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s;
    z-index: 2;
}
footer.footer .nav-link:hover,
footer.footer .nav-link:focus {
    color: #00ff99;
    box-shadow: 0 2px 10px rgba(0,255,153,0.2);
}
footer.footer .nav-link:hover::after,
footer.footer .nav-link:focus::after {
    transform: scaleX(1);
}
