/* /Components/Layout/LangToggle.razor.rz.scp.css */
.lang-switch[b-wojc0ohzjz] {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
}

.lang-btn[b-wojc0ohzjz] {
    background: transparent;
    border: none;
    color: #8b949e;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0.04em;
}

.lang-btn.active[b-wojc0ohzjz] {
    background: #58a6ff;
    color: #0d1117;
}

.lang-btn:hover:not(.active)[b-wojc0ohzjz] {
    color: #e6edf3;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-p5c7ee1usf] {
    --bg: #0d1117;
    --surface: #161b22;
    --border: #30363d;
    --accent: #58a6ff;
    --accent-alt: #a371f7;
    --text: #e6edf3;
    --text-muted: #8b949e;
    --nav-height: 64px;
}

html[b-p5c7ee1usf] {
    height: 100%;
    overflow: hidden;
}

body[b-p5c7ee1usf] {
    margin: 0;
    height: 100%;
    overflow: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    padding: 0;
}

/* ── Layout shell ── */
.layout[b-p5c7ee1usf] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh; /* mobile: excludes browser chrome */
}

/* ── Navbar ── */
.topnav[b-p5c7ee1usf] {
    position: relative;
    flex-shrink: 0;
    height: var(--nav-height);
    background: #161b22;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    z-index: 10;
}

/* ── Checkbox (state only, never visible) ── */
.nav-toggle-input[b-p5c7ee1usf] {
    display: none;
}

/* ── Hamburger button ── */
.nav-toggle-btn[b-p5c7ee1usf] {
    display: none;
    position: absolute;
    left: 1.5rem;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0.4rem;
    user-select: none;
}

.nav-toggle-btn span[b-p5c7ee1usf] {
    display: block;
    width: 22px;
    height: 2px;
    background: #cdd5e0;
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

/* ── Nav links ── */
.nav-links[b-p5c7ee1usf] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
}

.nav-links a[b-p5c7ee1usf] {
    display: block;
    color: #cdd5e0;
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: color 0.15s, background 0.15s;
}

.nav-links a:hover[b-p5c7ee1usf] {
    color: #ffffff;
    background: var(--bg);
    text-decoration: none;
}

/* ── Language switch ── */
.lang-switch[b-p5c7ee1usf] {
    position: absolute;
    right: 1.5rem;
    display: flex;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
}

.lang-btn[b-p5c7ee1usf] {
    background: transparent;
    border: none;
    color: #8b949e;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0.04em;
}

.lang-btn.active[b-p5c7ee1usf] {
    background: var(--accent);
    color: #0d1117;
}

.lang-btn:hover:not(.active)[b-p5c7ee1usf] {
    color: #e6edf3;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .topnav[b-p5c7ee1usf] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 35px;
    }

    .page-body[b-p5c7ee1usf] {
        padding-top: 30px;
    }

    .nav-toggle-btn[b-p5c7ee1usf] {
        display: flex;
    }

    /* Animate hamburger → × */
    .nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(1)[b-p5c7ee1usf] { transform: translateY(7px)  rotate(45deg);  }
    .nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(2)[b-p5c7ee1usf] { opacity: 0; }
    .nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(3)[b-p5c7ee1usf] { transform: translateY(-7px) rotate(-45deg); }

    /* Dropdown */
    .nav-links[b-p5c7ee1usf] {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1rem;
        background: #161b22;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle-input:checked ~ .nav-links[b-p5c7ee1usf] {
        display: flex;
    }

    .nav-links a[b-p5c7ee1usf] {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

/* ── Main ── */
.main-content[b-p5c7ee1usf] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
    overflow: auto;
}

/* ── Page body (@Body slot) ── */
.page-body[b-p5c7ee1usf] {
    margin-top: auto;
    margin-bottom: auto;
    padding: 0;
    width: 100%;
    max-width: 720px;
}

/* ── Footer ── */
.footer[b-p5c7ee1usf] {
    background: var(--surface);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 1.1rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.01em;
}

.footer p[b-p5c7ee1usf] {
    margin: 0;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ── Desktop nav links ── */
.nav-links[b-cb0tbzyldn] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
}

.nav-links a[b-cb0tbzyldn] {
    display: block;
    color: #cdd5e0;
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: color 0.15s, background 0.15s;
}

.nav-links a:hover[b-cb0tbzyldn] {
    color: #ffffff;
    background: #161b22;
    text-decoration: none;
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-toggle-btn[b-cb0tbzyldn] {
    display: none;
    position: absolute;
    left: 1.5rem;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}

.nav-toggle-btn span[b-cb0tbzyldn] {
    display: block;
    width: 22px;
    height: 2px;
    background: #cdd5e0;
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

/* Animate to × when open */
.nav-toggle-btn.open span:nth-child(1)[b-cb0tbzyldn] { transform: translateY(7px) rotate(45deg); }
.nav-toggle-btn.open span:nth-child(2)[b-cb0tbzyldn] { opacity: 0; }
.nav-toggle-btn.open span:nth-child(3)[b-cb0tbzyldn] { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile ── */
@media (max-width: 600px) {
    .nav-toggle-btn[b-cb0tbzyldn] {
        display: flex;
    }

    .nav-links[b-cb0tbzyldn] {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.5rem 1rem;
        background: rgba(13, 17, 23, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid #30363d;
        z-index: 99;
    }

    .nav-links.open[b-cb0tbzyldn] {
        display: flex;
    }

    .nav-links a[b-cb0tbzyldn] {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-i6zol1jqn7],
.components-reconnect-repeated-attempt-visible[b-i6zol1jqn7],
.components-reconnect-failed-visible[b-i6zol1jqn7],
.components-pause-visible[b-i6zol1jqn7],
.components-resume-failed-visible[b-i6zol1jqn7],
.components-rejoining-animation[b-i6zol1jqn7] {
    display: none;
}

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


#components-reconnect-modal[b-i6zol1jqn7] {
    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-i6zol1jqn7 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-i6zol1jqn7 {
    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/Contact.razor.rz.scp.css */
.contact-wrapper[b-brzwda0xsb] {
    padding: 2.5rem 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ── Header ── */
.contact-header[b-brzwda0xsb] {
    text-align: center;
}

.contact-title[b-brzwda0xsb] {
    font-size: 2rem;
    font-weight: 700;
    color: #71797E;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.contact-subtitle[b-brzwda0xsb] {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 480px;
}

/* ── Section ── */
.contact-section[b-brzwda0xsb] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.section-label[b-brzwda0xsb] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.contact-options[b-brzwda0xsb] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

/* ── Option card ── */
.contact-option[b-brzwda0xsb] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s;
}

a.contact-link:hover[b-brzwda0xsb] {
    border-color: var(--accent);
}

.option-icon[b-brzwda0xsb] {
    flex-shrink: 0;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.option-body[b-brzwda0xsb] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.option-type[b-brzwda0xsb] {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.option-value[b-brzwda0xsb] {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
}

a.contact-link .option-value[b-brzwda0xsb] {
    color: var(--accent);
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .contact-wrapper[b-brzwda0xsb] {
        padding-top: 3rem;
    }

    .contact-title[b-brzwda0xsb] {
        font-size: 1.6rem;
    }
}
/* /Components/Pages/Projects.razor.rz.scp.css */
.projects-wrapper[b-flxouqwqjn] {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-top: 2rem;
}

.projects-header[b-flxouqwqjn] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.projects-title[b-flxouqwqjn] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #71797E;
    letter-spacing: -0.02em;
    margin: 0;
}

.projects-subtitle[b-flxouqwqjn] {
    color: #8b949e;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.projects-list[b-flxouqwqjn] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-card[b-flxouqwqjn] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #161b22;
    border: 1px solid #30363d;
    border-left: 3px solid #a371f7;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.project-card:hover[b-flxouqwqjn] {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.project-card.profile-card[b-flxouqwqjn] {
    border-left-color: #58a6ff;
}

.project-card-top[b-flxouqwqjn] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.project-name[b-flxouqwqjn] {
    font-size: 1rem;
    font-weight: 600;
    color: #e6edf3;
    margin: 0;
    line-height: 1.4;
}

.github-link[b-flxouqwqjn] {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: #58a6ff;
    border: 1px solid #30363d;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.15s, border-color 0.15s;
}

.github-link:hover[b-flxouqwqjn] {
    color: #79b8ff;
    border-color: #58a6ff;
    text-decoration: none;
}

.project-desc[b-flxouqwqjn] {
    color: #8b949e;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.project-tags[b-flxouqwqjn] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tech-tag[b-flxouqwqjn] {
    background: #0d1117;
    color: #58a6ff;
    border: 1px solid #30363d;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.pattern-tag[b-flxouqwqjn] {
    background: rgba(163, 113, 247, 0.08);
    color: #a371f7;
    border: 1px solid rgba(163, 113, 247, 0.3);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (max-width: 600px) {
    .projects-wrapper[b-flxouqwqjn]{
        padding-top: 3rem;
    }

    .project-card-top[b-flxouqwqjn] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
}
/* /Components/Pages/Welcome.razor.rz.scp.css */
.welcome-wrapper[b-9ocdhpn6wz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    text-align: center;
}

.profile-card[b-9ocdhpn6wz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.profile-photo[b-9ocdhpn6wz] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #30363d;
    box-shadow: 0 0 0 4px rgba(88, 166, 255, 0.15);
}

.greeting-name[b-9ocdhpn6wz] {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
    color: #71797E;
    letter-spacing: -0.02em;
}

.highlight[b-9ocdhpn6wz] {
    color: #58a6ff;
}

.greeting-title[b-9ocdhpn6wz] {
    color: #8b949e;
    font-size: 0.9rem;
    margin: 0;
}

.bio[b-9ocdhpn6wz] {
    max-width: 560px;
    color: #8b949e;
    line-height: 1.65;
    margin: 0;
    font-size: 0.92rem;
}

.skills[b-9ocdhpn6wz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
}

.skill-row[b-9ocdhpn6wz] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.skill-tag[b-9ocdhpn6wz] {
    background: #161b22;
    color: #58a6ff;
    border: 1px solid #30363d;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
}

.arch-section[b-9ocdhpn6wz] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.arch-label[b-9ocdhpn6wz] {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8b949e;
}

.arch-grid[b-9ocdhpn6wz] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
}

.arch-card[b-9ocdhpn6wz] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    background: #161b22;
    border: 1px solid #30363d;
    border-left: 3px solid #a371f7;
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
}

.arch-name[b-9ocdhpn6wz] {
    font-size: 0.82rem;
    font-weight: 600;
    color: #a371f7;
}

.arch-desc[b-9ocdhpn6wz] {
    font-size: 0.77rem;
    color: #8b949e;
    line-height: 1.55;
}

.cta-group[b-9ocdhpn6wz] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn[b-9ocdhpn6wz] {
    padding: 0.5rem 1.4rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s;
}

.cta-btn:hover[b-9ocdhpn6wz] {
    opacity: 0.82;
    text-decoration: none;
}

.cta-btn.primary[b-9ocdhpn6wz] {
    background: #58a6ff;
    color: #0d1117;
}

.cta-btn.secondary[b-9ocdhpn6wz] {
    background: transparent;
    color: #58a6ff;
    border: 1px solid #30363d;
}

@media (max-width: 600px) {
    .welcome-wrapper[b-9ocdhpn6wz] {
        padding-top: 3rem;
        gap: 1.5rem;
    }

    .arch-grid[b-9ocdhpn6wz] {
        grid-template-columns: 1fr;
    }
}
