.footer-section.developer {
    text-align: center;
}

.developer-info {
    margin-top: 15px;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(173, 181, 189, 0.1);
}

.developer-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(173, 181, 189, 0.2);
}

.developer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid rgba(173, 181, 189, 0.2);
}

.developer-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.developer-name {
    color: #f8f9fa;
    font-size: 1.1em;
    font-weight: 500;
}

.developer-role {
    color: #adb5bd;
    font-size: 0.85em;
    opacity: 0.8;
}
