/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-8szrdgqohl],
.components-reconnect-repeated-attempt-visible[b-8szrdgqohl],
.components-reconnect-failed-visible[b-8szrdgqohl],
.components-pause-visible[b-8szrdgqohl],
.components-resume-failed-visible[b-8szrdgqohl],
.components-rejoining-animation[b-8szrdgqohl] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-8szrdgqohl],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-8szrdgqohl],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-8szrdgqohl],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-8szrdgqohl],
#components-reconnect-modal.components-reconnect-retrying[b-8szrdgqohl],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-8szrdgqohl],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-8szrdgqohl],
#components-reconnect-modal.components-reconnect-failed[b-8szrdgqohl],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-8szrdgqohl] {
    display: block;
}


#components-reconnect-modal[b-8szrdgqohl] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-8szrdgqohl 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-8szrdgqohl 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-8szrdgqohl 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-8szrdgqohl]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-8szrdgqohl 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-8szrdgqohl {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-8szrdgqohl {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-8szrdgqohl {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-8szrdgqohl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-8szrdgqohl] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-8szrdgqohl] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-8szrdgqohl] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-8szrdgqohl] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-8szrdgqohl] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-8szrdgqohl] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-8szrdgqohl 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-8szrdgqohl] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-8szrdgqohl {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Article.razor.rz.scp.css */
.article-loading[b-7vzjfv5i4c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    color: #cbd5e1;
}

.loading-spinner[b-7vzjfv5i4c] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(59, 130, 246, 0.2);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-b-7vzjfv5i4c 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-7vzjfv5i4c {
    to { transform: rotate(360deg); }
}

.article-not-found[b-7vzjfv5i4c] {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.article-not-found h1[b-7vzjfv5i4c] {
    color: #f1f5f9;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-not-found p[b-7vzjfv5i4c] {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.back-btn[b-7vzjfv5i4c] {
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.back-btn:hover[b-7vzjfv5i4c] {
    background: #2563eb;
    transform: translateY(-2px);
}

.article-container[b-7vzjfv5i4c] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
}

.article-header[b-7vzjfv5i4c] {
    margin-bottom: 3rem;
}

.back-link[b-7vzjfv5i4c] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.back-link:hover[b-7vzjfv5i4c] {
    color: #3b82f6;
}

.article-title-section[b-7vzjfv5i4c] {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
}

.article-icon[b-7vzjfv5i4c] {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.article-icon.cat-core[b-7vzjfv5i4c] {
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.1);
}

.article-icon.cat-dev[b-7vzjfv5i4c] {
    color: #22d3ee;
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.1);
}

.article-icon.cat-design[b-7vzjfv5i4c] {
    color: #e879f9;
    border-color: rgba(232, 121, 249, 0.3);
    background: rgba(232, 121, 249, 0.1);
}

.article-icon.cat-qa[b-7vzjfv5i4c] {
    color: #a3e635;
    border-color: rgba(163, 230, 53, 0.3);
    background: rgba(163, 230, 53, 0.1);
}

.article-category[b-7vzjfv5i4c] {
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.article-title[b-7vzjfv5i4c] {
    color: #f1f5f9;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.article-subtitle[b-7vzjfv5i4c] {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.article-content[b-7vzjfv5i4c] {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
}

.markdown-content[b-7vzjfv5i4c] {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.markdown-content h1[b-7vzjfv5i4c] {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.markdown-content h1:first-child[b-7vzjfv5i4c] {
    margin-top: 0;
}

.markdown-content h2[b-7vzjfv5i4c] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.markdown-content h3[b-7vzjfv5i4c] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.markdown-content p[b-7vzjfv5i4c] {
    margin-bottom: 1.25rem;
}

.markdown-content ul[b-7vzjfv5i4c],
.markdown-content ol[b-7vzjfv5i4c] {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.markdown-content li[b-7vzjfv5i4c] {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.markdown-content strong[b-7vzjfv5i4c] {
    color: #f1f5f9;
    font-weight: 600;
}

.markdown-content code[b-7vzjfv5i4c] {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #fbbf24;
}

.markdown-content pre[b-7vzjfv5i4c] {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.markdown-content pre code[b-7vzjfv5i4c] {
    background: none;
    padding: 0;
    color: #e2e8f0;
}

.markdown-content blockquote[b-7vzjfv5i4c] {
    border-left: 4px solid #3b82f6;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #94a3b8;
    font-style: italic;
}

.article-footer[b-7vzjfv5i4c] {
    text-align: center;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.next-steps h3[b-7vzjfv5i4c] {
    color: #f1f5f9;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.next-steps p[b-7vzjfv5i4c] {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.next-step-btn[b-7vzjfv5i4c] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.2s;
}

.next-step-btn:hover[b-7vzjfv5i4c] {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .article-container[b-7vzjfv5i4c] {
        padding: 1.5rem 1rem;
    }

    .article-title-section[b-7vzjfv5i4c] {
        flex-direction: column;
        gap: 1rem;
    }

    .article-icon[b-7vzjfv5i4c] {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .article-title[b-7vzjfv5i4c] {
        font-size: 1.875rem;
    }

    .article-content[b-7vzjfv5i4c] {
        padding: 1.5rem;
    }

    .markdown-content[b-7vzjfv5i4c] {
        font-size: 1rem;
    }
}
/* /Components/SkillTree/SkillDetailModal.razor.rz.scp.css */
.modal-backdrop[b-vzm57uciar] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* Highest priority */
    animation: fadeIn-b-vzm57uciar 0.2s ease-out;
}

.modal-content[b-vzm57uciar] {
    background: #0f172a;
    /* Slate 900 */
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: scaleIn-b-vzm57uciar 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-btn[b-vzm57uciar] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover[b-vzm57uciar] {
    color: white;
}

.modal-header[b-vzm57uciar] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.modal-icon[b-vzm57uciar] {
    font-size: 2rem;
}

.modal-header h3[b-vzm57uciar] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
}

.modal-body p[b-vzm57uciar] {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.node-description[b-vzm57uciar] {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Markdown Content Styling */
.markdown-content[b-vzm57uciar] {
    color: #cbd5e1;
    line-height: 1.7;
}

.markdown-content h1[b-vzm57uciar] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.markdown-content h2[b-vzm57uciar] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.markdown-content h3[b-vzm57uciar] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.markdown-content p[b-vzm57uciar] {
    margin-bottom: 1rem;
}

.markdown-content ul[b-vzm57uciar] {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    list-style-type: disc;
}

.markdown-content li[b-vzm57uciar] {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.markdown-content strong[b-vzm57uciar] {
    color: #f1f5f9;
    font-weight: 600;
}

.markdown-content code[b-vzm57uciar] {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.coming-soon[b-vzm57uciar] {
    text-align: center;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
    border: 1px dashed rgba(59, 130, 246, 0.3);
}

.coming-soon p[b-vzm57uciar] {
    color: #94a3b8;
    font-style: italic;
}

.modal-action-btn[b-vzm57uciar] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.modal-action-btn:hover[b-vzm57uciar] {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Category Theming */
.modal-content.cat-core .modal-icon[b-vzm57uciar] {
    color: #fbbf24;
}

.modal-content.cat-core .modal-action-btn[b-vzm57uciar] {
    background: #fbbf24;
    color: black;
}

.modal-content.cat-dev .modal-icon[b-vzm57uciar] {
    color: #22d3ee;
}

.modal-content.cat-dev .modal-action-btn[b-vzm57uciar] {
    background: #22d3ee;
    color: black;
}

.modal-content.cat-design .modal-icon[b-vzm57uciar] {
    color: #e879f9;
}

.modal-content.cat-design .modal-action-btn[b-vzm57uciar] {
    background: #e879f9;
    color: black;
}

.modal-content.cat-qa .modal-icon[b-vzm57uciar] {
    color: #a3e635;
}

.modal-content.cat-qa .modal-action-btn[b-vzm57uciar] {
    background: #a3e635;
    color: black;
}

@keyframes fadeIn-b-vzm57uciar {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn-b-vzm57uciar {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* /Components/SkillTree/SkillTree.razor.rz.scp.css */
/* Main Viewport */
.skill-tree-viewport[b-j0aztmu4ad] {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #020617;
    /* Deep organic dark requested by user */
    /* background: radial-gradient(ellipse at center, #0a1628 0%, #020617 50%, #000000 100%); REMOVED to support Screen blend mode better */
    border-radius: 1rem;
    cursor: grab;
    user-select: none;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

.skill-tree-viewport:active[b-j0aztmu4ad] {
    cursor: grabbing;
}

/* Fremium States */
/* Locked Node Style */
/* Locked Node Style */
.node-circle.locked[b-j0aztmu4ad] {
    opacity: 0.4;
    cursor: not-allowed;
    border-style: dashed;
    position: relative;
    /* Allow it to inherit category color but look "off" */
}

/* Add a Lock Icon via Pseudo-element or FontAwesome */
/* Note: Since we are using an <i> tag inside, maybe just style the inner icon?
   But let's add an overlay lock */
.node-circle.locked[b-j0aztmu4ad]::after {
    /* content: "\f023"; FontAwesome Lock Icon hex code */
    /* Easier: Use a simple SVG as background or rely on the class logic to swap the icon */
    content: "🔒";
    font-size: 14px;
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    border-radius: 50%;
    padding: 2px;
}

/* Completed Node Style */
.node-circle.completed[b-j0aztmu4ad] {
    background: #22c55e !important;
    /* Green-500 Solid */
    color: #fff !important;
    /* White Text/Icon */
    box-shadow: 0 0 25px #22c55e;
    border-color: #fff;
}

/* Transformable Content Layer */
.skill-tree-content[b-j0aztmu4ad] {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
    transition: transform 0.1s linear;
    /* Smooth drag/zoom */
    will-change: transform;
}

/* SVG Layer (Background Lines) */
.skill-svg-layer[b-j0aztmu4ad] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    /* Let clicks pass through to container */
    overflow: visible;
}

/* Connection Lines - Neon Glow Effect */
/* =========================================
   1. THE LASER LINES (Constellation Look)
   ========================================= */

/* The actual visible line */
/* The actual visible line */
.connection-core[b-j0aztmu4ad] {
    /* "Vascular" Look */
    stroke-linecap: round;
    /* Organic rounded ends, not square */
    opacity: 0.6;
    /* Semi-transparent to allow blending */
    mix-blend-mode: screen;
    /* CRITICAL: Overlapping lines become BRIGHTER (Light/Energy), not darker (Mud) */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth "biological" movement */
}

/* Hover effect for lines */
.connection-core:hover[b-j0aztmu4ad] {
    opacity: 1;
    stroke-width: 3px !important;
    /* Force thicker on hover */
    filter: drop-shadow(0 0 8px currentColor);
    z-index: 50;
}

/* Colors for the Glow Filter (currentColor inherits these) */
.stroke-core[b-j0aztmu4ad] {
    color: #fbbf24;
    stroke: #fbbf24;
}

.stroke-dev[b-j0aztmu4ad] {
    color: #3b82f6;
    stroke: #3b82f6;
}

.stroke-design[b-j0aztmu4ad] {
    color: #a855f7;
    stroke: #a855f7;
}

.stroke-qa[b-j0aztmu4ad] {
    color: #10b981;
    stroke: #10b981;
}

.stroke-default[b-j0aztmu4ad] {
    color: #64748b;
    stroke: #64748b;
}

/* Remove the old blurry "glow" path entirely from view 
   (We will effectively hide it or remove it from HTML) */
.connection-glow[b-j0aztmu4ad] {
    display: none;
}

/* Nodes (HTML) */
.node-container[b-j0aztmu4ad] {
    position: absolute;
    transform: translate(-50%, -50%);
    /* Center on X,Y */
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy pop */
}

.node-container:hover[b-j0aztmu4ad] {
    z-index: 20;
    transform: translate(-50%, -50%) scale(1.2);
}

/* =========================================
   2. THE NODE "HALO" (Anti-Clipping)
   ========================================= */

.node-circle[b-j0aztmu4ad] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    /* Background matches your theme */
    background: radial-gradient(circle at 30% 30%, #2a2a2a, #000);
    border: 2px solid currentColor;

    /* INNER GLOW */
    box-shadow: 0 0 10px currentColor, inset 0 0 15px rgba(255, 255, 255, 0.1);

    color: white;
    transition: all 0.3s ease;

    /* THE MAGIC TRICK: 
       A dark shadow ring OUTSIDE the border that matches the background.
       This "cuts" the lines visually behind the node. 
    */
    box-shadow: 0 0 0 6px #020617, 0 0 15px currentColor;
}

/* Ensure the hover state keeps the halo */
.node-container:hover .node-circle[b-j0aztmu4ad] {
    box-shadow:
        0 0 0 6px #020617,
        /* Keep the cut */
        0 0 30px currentColor,
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Node Sizes */
.node-container.small .node-circle[b-j0aztmu4ad] {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.node-container.notable .node-circle[b-j0aztmu4ad] {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.node-container.keystone .node-circle[b-j0aztmu4ad] {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    border-width: 3px;
}

/* Category Colors (Neon Glows & Borders) */
.cat-core .node-circle[b-j0aztmu4ad] {
    color: #fbbf24;
    border-color: #fbbf24;
    box-shadow:
        0 0 10px #fbbf24,
        0 0 20px #fbbf24,
        inset 0 0 15px rgba(251, 191, 36, 0.3);
}

.cat-dev .node-circle[b-j0aztmu4ad] {
    color: #3b82f6;
    border-color: #3b82f6;
    box-shadow:
        0 0 10px #3b82f6,
        0 0 20px #3b82f6,
        inset 0 0 15px rgba(59, 130, 246, 0.3);
}

.cat-design .node-circle[b-j0aztmu4ad] {
    color: #a855f7;
    border-color: #a855f7;
    box-shadow:
        0 0 10px #a855f7,
        0 0 20px #a855f7,
        inset 0 0 15px rgba(168, 85, 247, 0.3);
}

.cat-qa .node-circle[b-j0aztmu4ad] {
    color: #10b981;
    border-color: #10b981;
    box-shadow:
        0 0 10px #10b981,
        0 0 20px #10b981,
        inset 0 0 15px rgba(16, 185, 129, 0.3);
}

/* Node Labels */
.node-label[b-j0aztmu4ad] {
    margin-top: 8px;
    text-align: center;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.node-label h4[b-j0aztmu4ad] {
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 8px;
    border-radius: 4px;
}

/* SEMANTIC ZOOM LOGIC */
/* When zoomed out (Macro View), hide labels for small nodes */
.view-macro .node-container.small .node-label[b-j0aztmu4ad],
.view-macro .node-container.notable .node-label[b-j0aztmu4ad] {
    opacity: 0;
}

/* Keystones ALWAYS stay visible */
.view-macro .node-container.keystone .node-label[b-j0aztmu4ad] {
    opacity: 1;
}

.view-macro .node-container.keystone .node-label h4[b-j0aztmu4ad] {
    font-size: 1rem;
    font-weight: bold;
}

/* Tooltip (Glassmorphism) */
.skill-tooltip[b-j0aztmu4ad] {
    position: absolute;
    background: rgba(15, 23, 42, 0.7);
    /* Translucent dark */
    backdrop-filter: blur(12px);
    /* Glass effect */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    color: white;
    pointer-events: none;
    z-index: 100;
    width: 280px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    animation: fadeIn-b-j0aztmu4ad 0.15s ease-out;
}

@keyframes fadeIn-b-j0aztmu4ad {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tooltip-header[b-j0aztmu4ad] {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tooltip-header.cat-core[b-j0aztmu4ad] {
    color: #fbbf24;
}

.tooltip-header.cat-dev[b-j0aztmu4ad] {
    color: #22d3ee;
}

.tooltip-header.cat-design[b-j0aztmu4ad] {
    color: #e879f9;
}

.tooltip-header.cat-qa[b-j0aztmu4ad] {
    color: #a3e635;
}

.tooltip-body[b-j0aztmu4ad] {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.tooltip-footer[b-j0aztmu4ad] {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

/* Controls */
.skill-controls[b-j0aztmu4ad] {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-btn[b-j0aztmu4ad] {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

/* Standard Modal Styling */
.modal-backdrop[b-j0aztmu4ad] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    /* Above everything */
    backdrop-filter: blur(5px);
}

.modal-content.glass-panel[b-j0aztmu4ad] {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%;
    color: white;
    animation: popIn-b-j0aztmu4ad 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popIn-b-j0aztmu4ad {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-primary[b-j0aztmu4ad],
.btn-secondary[b-j0aztmu4ad] {
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.btn-primary[b-j0aztmu4ad] {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover[b-j0aztmu4ad] {
    background: #2563eb;
}

.btn-secondary[b-j0aztmu4ad] {
    background: transparent;
    border: 1px solid #475569;
    color: #cbd5e1;
}

.btn-secondary:hover[b-j0aztmu4ad] {
    background: rgba(255, 255, 255, 0.1);
}
