/* Footer Credits Styling */
.footer__credits {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__credits p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer__credits p:hover {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer__credits {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .footer__credits p {
        font-size: 0.8rem;
    }
}