.credits {
    margin-top: 20px;
    text-align: center;
    padding: 16px;
    border-top: 1px solid #ccd0d4;
    font-size: 12px;
    color: #646970;
}
.credits p {
    margin-bottom: 8px;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f0f1;
    transition: all 0.2s;
}
.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.social-icon.linkedin:hover {
    background-color: #0077b5;
}
.social-icon.linkedin:hover svg {
    fill: white;
}
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-icon.instagram:hover svg {
    fill: white;
}
.social-icon svg {
    width: 18px;
    height: 18px;
    fill: #646970;
    transition: fill 0.2s;
}
.developer-name {
    font-weight: 500;
    color: #2271b1;
}
