/* Tech Stack Section */
.github__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

/* GitHub Profile Card */
.github-card {
    background: linear-gradient(135deg,
            rgba(45, 45, 45, 0.8) 0%,
            rgba(35, 35, 35, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm), var(--shadow-inner);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
}

.github-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-inner);
    border-color: var(--border-light);
}

.github-card__icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--accent-primary) 0%,
            var(--accent-primary-active) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.github-card__icon--discord {
    background: rgba(255, 255, 255, 0.1);
}

.github-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.github-card__icon--org {
    padding: 6px;
}

.github-card__icon--org img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 8px;
}

.github-card__icon--discord img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.github-card__title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    margin: 0;
}

.github-card__username {
    font-size: var(--text-lg);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    margin: 0;
}

.github-card__description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
    margin: 0;
}

.github-card__btn {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-active) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    margin-top: var(--space-2);
    position: relative;
    overflow: hidden;
}

.github-card__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.github-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(66, 133, 244, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.github-card__btn:hover::before {
    opacity: 1;
}

.github-card__btn:active {
    transform: scale(0.98);
}

.github-card__btn-icon {
    width: 20px;
    height: 20px;
}