body {
    margin: 0;
    padding: 0;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    background-image: url("../../assets/background.jpg");
    background-size: cover;
    background-repeat: repeat-x;
    color: #f2f2f2;
    min-height: 100vh;
}

.credits-page {
    width: 90%;
    max-width: 900px;
    margin: 60px auto;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 40px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.6s ease-out;
}

.credits-page h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    letter-spacing: 1px;
}

.credits-section {
    margin-bottom: 35px;
}

.credits-section h2 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 6px;
}

.credits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credits-list li {
    margin-bottom: 8px;
    font-size: 0.95em;
    opacity: 0.9;
}

.credits-page a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    transition: all 0.2s ease;
}

.credits-page a:hover {
    color: #dcdcdc;
    border-bottom: 1px solid #ffffff;
}

.credits-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.75em;
    opacity: 0.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .credits-page {
        padding: 25px;
    }

    .credits-page h1 {
        font-size: 1.6em;
    }
}
