/* Universal Footer Styles */
.fp-universal-footer {
    padding: 4rem 150px;
}

.fp-universal-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fp-universal-footer .footer-links {
    display: flex;
    gap: 2rem;
}

.fp-universal-footer .footer-links a {
    font-family: 'ABC Favorit Mono', 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--film-purple, #b40096);
    text-decoration: none;
    transition: color 0.3s;
}

.fp-universal-footer .footer-links a:hover {
    color: var(--heading-cyan, #00b9c7);
}

.fp-universal-footer .footer-socials {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.fp-universal-footer .footer-socials a {
    color: var(--film-purple, #b40096);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.fp-universal-footer .footer-socials a:hover {
    color: var(--heading-cyan, #00b9c7);
}

.fp-universal-footer .footer-socials svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .fp-universal-footer {
        padding: 4rem 2rem;
    }

    .fp-universal-footer .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}
