/* Development Credits Styles */
.development-credits {
    margin-top: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08), rgba(32, 201, 151, 0.08));
    border-radius: 8px;
    border: 1px solid rgba(40, 167, 69, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.credits-line {
    font-size: 10px;
    color: #28a745;
    font-weight: 500;
    line-height: 1.5;
    margin: 2px 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.credits-line:first-child {
    color: #28a745;
    font-weight: 600;
}

.credits-line:last-child {
    color: #28a745;
    font-weight: 600;
    font-size: 9px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .development-credits {
        padding: 10px 12px;
        margin-top: 10px;
    }
    
    .credits-line {
        font-size: 9px;
        text-align: center;
    }
    
    .credits-line:last-child {
        font-size: 8px;
    }
}

/* Animation on hover */
.development-credits:hover {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.12), rgba(32, 201, 151, 0.12));
    border-color: rgba(40, 167, 69, 0.3);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}