/* ═══════════════════════════════════════════════════════════════
   GITHUB LANGUAGE STATISTICS - Cyberpunk Design
   ═══════════════════════════════════════════════════════════════ */

.github-stats-container {
    margin-top: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent-primary);
    border-radius: 4px;
}

.github-stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.github-stats-title {
    font-size: 14px;
    color: var(--accent-secondary);
    font-weight: bold;
    letter-spacing: 1px;
}

.github-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.github-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.github-meta-icon {
    color: var(--accent-primary);
}

/* Language Progress Bar */
.language-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    margin-bottom: 12px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.language-segment {
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.language-segment:hover {
    filter: brightness(1.3);
    box-shadow: 0 0 10px currentColor;
}

/* Language List */
.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.language-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.language-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: inherit;
    filter: brightness(1.5);
}

.language-name {
    font-weight: 600;
    color: var(--text-primary);
}

.language-percentage {
    color: var(--accent-primary);
    font-family: 'Courier New', monospace;
}

/* GitHub Badge/Link */
.github-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 3px;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.github-badge:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

.github-badge svg {
    width: 14px;
    height: 14px;
}

/* Neon glow animation */
@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 5px currentColor, 0 0 10px currentColor;
    }

    50% {
        box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
    }
}

.language-segment.neon {
    animation: neonPulse 2s ease-in-out infinite;
}