.footer-container {
    background-color: #1f1f1f;
    padding: 10px 2%;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.tmdb-credit {
    margin: 0;
    font-size: 12px;
    color: #888888;
    white-space: nowrap;
    text-align: left;
}

.footer-content {
    flex: 1;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
    color: #ffffff;
    font-size: 16px;
}

.signature {
    margin: 0;
    font-size: 10px;
    color: #888888;
    white-space: nowrap;
    text-align: right;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 5px;
    }

    .tmdb-credit,
    .footer-content,
    .signature {
        text-align: center;
    }
}