/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-gk0xuebvlm] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main[b-gk0xuebvlm] {
    flex: 1;
}

.top-row[b-gk0xuebvlm] {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0 1.75rem;
    background-color: rgba(39, 41, 50, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(109, 174, 219, 0.12);
}

.logo-link[b-gk0xuebvlm] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo[b-gk0xuebvlm] {
    width: 90px;
    height: auto;
}

.nav-links[b-gk0xuebvlm] {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a[b-gk0xuebvlm] {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-links a:hover[b-gk0xuebvlm] {
    color: #EE7B30;
    text-decoration: none;
}

footer[b-gk0xuebvlm] {
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

#blazor-error-ui[b-gk0xuebvlm] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-gk0xuebvlm] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 640px) {
    .top-row[b-gk0xuebvlm] {
        padding: 0 1rem;
    }

    .nav-links[b-gk0xuebvlm] {
        gap: 1rem;
    }

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

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-auijnkhgwr {
    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/Home.razor.rz.scp.css */
/* ── Hero ── */
.hero-section[b-b5wf3qkphw] {
    padding: 3.5rem 0 3rem;
    background:
        radial-gradient(ellipse at 88% 15%, rgba(238, 123, 48, 0.08) 0%, transparent 52%),
        radial-gradient(ellipse at 12% 85%, rgba(109, 174, 219, 0.08) 0%, transparent 52%);
}

.hero-section h1[b-b5wf3qkphw] {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.profile-wrapper[b-b5wf3qkphw] {
    display: inline-block;
}

.profile-image[b-b5wf3qkphw] {
    width: 165px;
    height: 165px;
    object-fit: cover;
    pointer-events: none;
    border: 3px solid rgba(238, 123, 48, 0.5);
    box-shadow: 0 0 0 7px rgba(238, 123, 48, 0.1), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-role[b-b5wf3qkphw] {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.15rem;
    letter-spacing: 0.03em;
}

.hero-intro[b-b5wf3qkphw] {
    max-width: 580px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    font-size: 0.97rem;
}

.hero-tags[b-b5wf3qkphw] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0 1.75rem;
}

.hero-tag[b-b5wf3qkphw] {
    background: rgba(109, 174, 219, 0.12);
    border: 1px solid rgba(109, 174, 219, 0.28);
    color: #6DAEDB;
    padding: 0.25rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ── Shared card surface (highlights + what I do) ── */
.highlight-card[b-b5wf3qkphw],
.what-i-do-card[b-b5wf3qkphw] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(109, 174, 219, 0.14);
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.highlight-card:hover[b-b5wf3qkphw],
.what-i-do-card:hover[b-b5wf3qkphw] {
    transform: translateY(-6px);
    border-color: rgba(238, 123, 48, 0.28);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* ── Highlights ── */
.highlight-stat[b-b5wf3qkphw] {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(109, 174, 219, 0.14);
}

.highlight-number[b-b5wf3qkphw] {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #EE7B30;
    line-height: 1.15;
}

.highlight-label[b-b5wf3qkphw] {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.highlight-card h3[b-b5wf3qkphw] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.highlight-card p[b-b5wf3qkphw] {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── What I Do Cards ── */
.card-icon[b-b5wf3qkphw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(238, 123, 48, 0.12);
    border-radius: 10px;
}

.what-i-do-card h3[b-b5wf3qkphw] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.what-i-do-card p[b-b5wf3qkphw] {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── Skills ── */
.skills-category-title[b-b5wf3qkphw] {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.25rem;
}

.skill-item[b-b5wf3qkphw] {
    margin-bottom: 1.2rem;
}

.skill-header[b-b5wf3qkphw] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 7px;
}

.skill-name[b-b5wf3qkphw] {
    font-weight: 500;
    font-size: 0.93rem;
}

.skill-bar[b-b5wf3qkphw] {
    height: 4px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    overflow: hidden;
}

.skill-bar-fill[b-b5wf3qkphw] {
    height: 100%;
    background: linear-gradient(90deg, #EE7B30 0%, #ffaa66 100%);
    border-radius: 2px;
}

.skills-secondary[b-b5wf3qkphw] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.skill-badge[b-b5wf3qkphw] {
    background: rgba(44, 92, 119, 0.22);
    border: 1px solid rgba(109, 174, 219, 0.22);
    color: #6DAEDB;
    padding: 0.2rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 500;
}

.skill-badge-muted[b-b5wf3qkphw] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
}

.skills-subnote[b-b5wf3qkphw] {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.6rem;
}

/* ── Contact ── */
.contact-intro[b-b5wf3qkphw] {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.contact-links[b-b5wf3qkphw] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-link[b-b5wf3qkphw] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #EE7B30;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.97rem;
    padding: 0.5rem 1.1rem;
    background: rgba(238, 123, 48, 0.1);
    border: 1px solid rgba(238, 123, 48, 0.25);
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-link:hover[b-b5wf3qkphw] {
    background: rgba(238, 123, 48, 0.2);
    color: #EE7B30;
    transform: translateY(-2px);
    text-decoration: none;
}
