/* Credits Section */
.credits-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.credit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    min-width: 280px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.credit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(41, 121, 255, 0.2);
}

.credit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 3px;
}

.credit-card p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--text-color);
}

/* Artist Socials */
.artist-socials {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.artist-socials a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.artist-socials a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}