/* Developer Credit Styling */
.developer-credit {
    display: inline;
    font-size: inherit;
    font-family: inherit;
}

.developer-credit a {
    color: #E8C468;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.developer-credit a:hover {
    color: #F5D98B;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .developer-credit {
        display: block;
        margin-top: 8px;
    }
}