.github-star-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.github-star-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    text-decoration: none;
    color: white;
}

.github-issue-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 2px solid #4b5563;
}

.github-issue-btn:hover {
    transform: translateY(-2px);
    border-color: #6b7280;
    background: rgba(75, 85, 99, 0.2);
    text-decoration: none;
    color: white;
}

.github-stat img {
    transition: transform 0.2s ease;
}

.github-stat:hover img {
    transform: scale(1.05);
}

.bg-gradient-to-r {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(59, 130, 246, 0.1));
}

@media (max-width: 768px) {
    .github-star-btn,
    .github-issue-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    .flex.gap-4 {
        gap: 0.75rem;
    }
    
    .flex.gap-6 {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .github-star-btn,
    .github-issue-btn {
        font-size: 0.85rem;
        padding: 0.625rem 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .flex.justify-center.gap-4 {
        flex-direction: column;
        align-items: center;
    }
    
    .flex.justify-center.gap-6 {
        flex-direction: column;
        gap: 0.75rem;
    }
}
