/* GitHub Nav Link */
.github-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    color: var(--text-primary);
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.github-nav-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.github-nav-link svg {
    width: 20px;
    height: 20px;
}