.developer-footer {
    background: rgba(247, 242, 232, 0.8);
    text-align: center;
    padding: 0.8rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    font-size: 0.75rem;
    color: #777;
}

.developer-footer p {
    margin: 0;
    font-weight: 300;
}

.developer-footer strong {
    color: #666;
    font-weight: 500;
}

.developer-footer a {
    color: #B8860B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.developer-footer a:hover {
    color: #3A3A3A;
    text-decoration: underline;
}

/* Admin Link Mobile */
.admin-link-mobile {
    display: none;
    text-align: center;
    margin-top: 0.8rem;
    color: #B8860B;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.admin-link-mobile:hover {
    color: #3A3A3A;
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .developer-footer {
        font-size: 0.7rem;
        padding: 0.6rem 0.5rem 1rem;
    }
    
    .developer-footer p {
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    .admin-link-mobile {
        display: block;
    }
} 