/* credits.php — Seiten-spezifisches Styling.
   Vorher als inline <style>-Block in credits.php (CSP-Vorbereitung,
   Browser-Caching, Konvention mit communities.css / stats.css). */

.credits-content {
    background-color: var(--background);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.credits-content p {
    margin-bottom: 30px;
}

.credits-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Abstand zwischen den Logos */
    flex-wrap: wrap;
}

.credits-logos .justwatch img {
    height: 20px;
    width: auto;
}

.credits-logos .tmdb img {
    height: 40px;
    width: auto;
}

.credits-logos img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.credits-logos img:hover {
    filter: grayscale(0%);
}

/* Persoenliche Dank-Sektion ueber den Tech-Credits */
.credits-personal {
    background-color: var(--background);
    padding: var(--spacing-32) var(--spacing-24);
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: var(--spacing-20);
}

.credits-personal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 1;
    color: var(--accent-red);
    margin-top: var(--spacing-16);
}

.credits-personal p {
    margin: 0 auto;
    max-width: 666px;
    line-height: 1.6;
    color: var(--text);
}
