/* FOOTER */
.site-footer {
    width: 100%;
    padding: 20px 0;
    background: #0f0f0f; /* dark like your app */
    color: #ccc;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

.footer-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity .2s ease;
}

.footer-link:hover {
    opacity: 1;
}

.tmdb-attribution {
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 0.65rem;
    color: #aaa;
    line-height: 1.3;
}

.tmdb-attribution img {
    width: 80px;
    height: auto;
    opacity: 0.9;
}
