/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-z5txzt9e20] {
    display: flex;
    min-height: 100vh;
    background: var(--msw-bg-primary);
}

.admin-sidebar[b-z5txzt9e20] {
    width: 250px;
    background: var(--msw-bg-secondary);
    border-right: 1px solid var(--msw-glass-border);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    flex-shrink: 0;
}

.admin-logo[b-z5txzt9e20] {
    display: block;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.admin-logo img[b-z5txzt9e20] {
    height: 40px;
    width: auto;
}

.admin-nav[b-z5txzt9e20] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.admin-nav-link[b-z5txzt9e20] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--msw-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--msw-radius-sm);
    transition: all 0.2s;
}

.admin-nav-link:hover[b-z5txzt9e20] {
    background: var(--msw-cyan-muted);
    color: var(--msw-cyan);
}

.admin-logout[b-z5txzt9e20] {
    margin-top: auto;
    border-top: 1px solid var(--msw-glass-border);
    padding-top: 1rem;
}

.admin-main[b-z5txzt9e20] {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .admin-layout[b-z5txzt9e20] { flex-direction: column; }
    .admin-sidebar[b-z5txzt9e20] { width: 100%; flex-direction: row; padding: 0.5rem; overflow-x: auto; }
    .admin-nav[b-z5txzt9e20] { flex-direction: row; }
    .admin-logo[b-z5txzt9e20] { margin-bottom: 0; margin-right: 1rem; }
    .admin-logout[b-z5txzt9e20] { margin-top: 0; border-top: none; border-left: 1px solid var(--msw-glass-border); padding-top: 0; padding-left: 1rem; }
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.msw-footer[b-q2txowajyq] {
    position: relative;
    background: var(--msw-bg-secondary);
    border-top: 1px solid var(--msw-glass-border);
    padding: 4rem 0 0;
    overflow: hidden;
}

.footer-glow[b-q2txowajyq] {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container[b-q2txowajyq] {
    max-width: var(--msw-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid[b-q2txowajyq] {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p[b-q2txowajyq] {
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-logo[b-q2txowajyq] {
    height: 75px;
    width: auto;
}

.footer-social[b-q2txowajyq] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a[b-q2txowajyq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--msw-radius-sm);
    border: 1px solid var(--msw-glass-border);
    color: var(--msw-text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover[b-q2txowajyq] {
    color: var(--msw-cyan);
    border-color: var(--msw-cyan);
    background: var(--msw-cyan-muted);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
}

.footer-links h4[b-q2txowajyq] {
    font-family: var(--msw-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--msw-text-primary);
    margin-bottom: 1.25rem;
}

.footer-links a[b-q2txowajyq],
.footer-links p[b-q2txowajyq] {
    display: block;
    color: var(--msw-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover[b-q2txowajyq] {
    color: var(--msw-cyan);
}

.footer-bottom[b-q2txowajyq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid var(--msw-glass-border);
    font-size: 0.8rem;
    color: var(--msw-text-muted);
}

.footer-legal[b-q2txowajyq] {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a[b-q2txowajyq] {
    color: var(--msw-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover[b-q2txowajyq] {
    color: var(--msw-cyan);
}

@media (max-width: 768px) {
    .footer-grid[b-q2txowajyq] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand[b-q2txowajyq] {
        grid-column: 1 / -1;
    }

    .footer-bottom[b-q2txowajyq] {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid[b-q2txowajyq] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.msw-site[b-s3xod8a9ir] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.msw-main[b-s3xod8a9ir] {
    flex: 1;
}

#blazor-error-ui[b-s3xod8a9ir] {
    background: var(--msw-coral, #ff6b6b);
    color: white;
    bottom: 0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
    display: none;
    left: 0;
    padding: 0.75rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 9999;
    font-family: var(--msw-font-body);
    font-size: 0.875rem;
}

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

#blazor-error-ui .reload[b-s3xod8a9ir] {
    color: white;
    text-decoration: underline;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ═══════════════════════════════
   Menu lateral futuriste — encoche
   ═══════════════════════════════ */

/* Encoche / Tab sur le bord gauche */
.fx-menu-tab[b-3bga4rc8vp] {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    width: 28px;
    height: 80px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 0 12px 12px 0;
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-left: none;
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fx-menu-tab:hover[b-3bga4rc8vp] {
    width: 34px;
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.fx-tab-lines[b-3bga4rc8vp] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 2px;
}

.fx-tab-lines span[b-3bga4rc8vp] {
    display: block;
    height: 2px;
    border-radius: 1px;
    background: var(--msw-cyan);
    transition: all 0.3s ease;
}

.fx-tab-lines span:nth-child(1)[b-3bga4rc8vp] { width: 14px; }
.fx-tab-lines span:nth-child(2)[b-3bga4rc8vp] { width: 10px; }
.fx-tab-lines span:nth-child(3)[b-3bga4rc8vp] { width: 14px; }

.fx-menu-tab:hover .fx-tab-lines span[b-3bga4rc8vp] { width: 16px; }

/* Side menu panel */
.fx-sidemenu[b-3bga4rc8vp] {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    z-index: 10001;
    background: rgba(8, 10, 30, 0.95);
    backdrop-filter: blur(30px);
    border-right: 1px solid rgba(0, 212, 255, 0.1);
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

.fx-sidemenu.open[b-3bga4rc8vp] {
    left: 0;
}

.fx-sidemenu-inner[b-3bga4rc8vp] {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 2.5rem 2rem;
}

.fx-sidemenu-logo[b-3bga4rc8vp] {
    margin-bottom: 3rem;
}

.fx-sidemenu-logo img[b-3bga4rc8vp] {
    height: 50px;
    width: auto;
}

/* Links */
.fx-sidemenu-links[b-3bga4rc8vp] {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.fx-sidemenu-links li[b-3bga4rc8vp] {
    border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}

.fx-sidemenu-links a[b-3bga4rc8vp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    color: var(--msw-text-secondary);
    text-decoration: none;
    font-family: var(--msw-font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.fx-sidemenu-links a:hover[b-3bga4rc8vp] {
    color: var(--msw-cyan);
    padding-left: 0.5rem;
}

.fx-link-num[b-3bga4rc8vp] {
    font-family: var(--msw-font-mono);
    font-size: 0.7rem;
    color: var(--msw-text-muted);
    min-width: 20px;
}

.fx-sidemenu-links a:hover .fx-link-num[b-3bga4rc8vp] {
    color: var(--msw-cyan);
}

/* Footer */
.fx-sidemenu-footer[b-3bga4rc8vp] {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.06);
}

.fx-sidemenu-phone[b-3bga4rc8vp] {
    display: block;
    font-family: var(--msw-font-mono);
    font-size: 0.85rem;
    color: var(--msw-cyan);
    text-decoration: none;
    margin-bottom: 1rem;
}

.fx-sidemenu-social[b-3bga4rc8vp] {
    display: flex;
    gap: 1rem;
}

.fx-sidemenu-social a[b-3bga4rc8vp] {
    font-family: var(--msw-font-mono);
    font-size: 0.75rem;
    color: var(--msw-text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.fx-sidemenu-social a:hover[b-3bga4rc8vp] {
    color: var(--msw-cyan);
}

/* Overlay */
.fx-overlay[b-3bga4rc8vp] {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fx-overlay.open[b-3bga4rc8vp] {
    opacity: 1;
    visibility: visible;
}

/* Hide tab when menu is open */
.fx-menu-tab.hidden[b-3bga4rc8vp] {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 640px) {
    .fx-sidemenu[b-3bga4rc8vp] {
        width: 280px;
        left: -280px;
    }

    .fx-sidemenu-links a[b-3bga4rc8vp] {
        font-size: 1.1rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-5dtjisgc9s],
.components-reconnect-repeated-attempt-visible[b-5dtjisgc9s],
.components-reconnect-failed-visible[b-5dtjisgc9s],
.components-pause-visible[b-5dtjisgc9s],
.components-resume-failed-visible[b-5dtjisgc9s],
.components-rejoining-animation[b-5dtjisgc9s] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-5dtjisgc9s {
    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/About.razor.rz.scp.css */
/* Styles in app.css */
/* /Components/Pages/Admin/Index.razor.rz.scp.css */
h1[b-p23lo158l8] { margin-bottom: 2rem; }

.admin-stats[b-p23lo158l8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.admin-stat-card[b-p23lo158l8] {
    text-align: center;
    padding: 2rem;
}

.stat-value[b-p23lo158l8] {
    display: block;
    font-family: var(--msw-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--msw-cyan);
    margin-bottom: 0.25rem;
}

.stat-value.highlight[b-p23lo158l8] {
    color: var(--msw-coral);
}

.stat-label[b-p23lo158l8] {
    display: block;
    font-size: 0.85rem;
    color: var(--msw-text-secondary);
    margin-bottom: 1rem;
}

.admin-stat-card a[b-p23lo158l8] {
    font-size: 0.85rem;
}
/* /Components/Pages/Admin/Login.razor.rz.scp.css */
.login-section[b-zse4jjuayr] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #060918;
    padding: 2rem;
}

.login-card[b-zse4jjuayr] {
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-logo[b-zse4jjuayr] {
    height: 60px;
    margin: 0 auto 1.5rem;
}

.login-card h2[b-zse4jjuayr] {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-group[b-zse4jjuayr] {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label[b-zse4jjuayr] {
    display: block;
    font-size: 0.85rem;
    color: var(--msw-text-secondary);
    margin-bottom: 0.5rem;
}

.login-btn[b-zse4jjuayr] {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.login-error[b-zse4jjuayr] {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--msw-coral);
    color: var(--msw-coral);
    padding: 0.75rem;
    border-radius: var(--msw-radius-sm);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
/* /Components/Pages/Admin/Projects/Edit.razor.rz.scp.css */
.image-upload-zone[b-lfxpg59iqj] {
    border: 2px dashed var(--msw-glass-border);
    border-radius: var(--msw-radius-md);
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.image-upload-zone:hover[b-lfxpg59iqj] {
    border-color: var(--msw-cyan);
}

.image-preview[b-lfxpg59iqj] {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: var(--msw-radius-sm);
    overflow: hidden;
    background: var(--msw-bg-tertiary);
}

.image-preview img[b-lfxpg59iqj] {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    padding: 0.5rem;
}

.image-remove[b-lfxpg59iqj] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--msw-coral);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.8;
}

.image-remove:hover[b-lfxpg59iqj] {
    transform: scale(1.1);
    opacity: 1;
}

.image-upload-input[b-lfxpg59iqj] {
    position: relative;
}

.image-upload-input[b-lfxpg59iqj]  input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.upload-label[b-lfxpg59iqj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    color: var(--msw-text-secondary);
    transition: color 0.3s;
}

.image-upload-input:hover .upload-label[b-lfxpg59iqj] {
    color: var(--msw-cyan);
}

.upload-label span[b-lfxpg59iqj] {
    font-size: 0.9rem;
    font-weight: 500;
}

.upload-label small[b-lfxpg59iqj] {
    font-size: 0.75rem;
    color: var(--msw-text-muted);
}

.upload-progress[b-lfxpg59iqj] {
    color: var(--msw-cyan);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    animation: pulse 1s ease-in-out infinite;
}

.form-error[b-lfxpg59iqj] {
    color: var(--msw-coral);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* Styles in app.css */
/* /Components/Pages/Home.razor.rz.scp.css */
/* ═══════════════════════════════════
   MSWebFusion — Hi-Tech Homepage 2026
   ═══════════════════════════════════ */

/* ────── HERO — SPACE ────── */
.hx-hero[b-jff6o70y1f] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #060918;
}

#hero-canvas[b-jff6o70y1f] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Logo central — absolute center, z-index 3 so planets pass in front (10) or behind (1) */
.hx-hero-center[b-jff6o70y1f] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 3;
    text-align: center;
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: auto;
}

.hx-hero-center.visible[b-jff6o70y1f] {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hx-space-logo[b-jff6o70y1f] {
    width: clamp(280px, 45vw, 600px);
    height: auto;
    margin: 0 auto 0.75rem;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.3));
}

/* Orbit container — same stacking context as hero-center */
.hx-orbit[b-jff6o70y1f] {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Planet base — visual styles in app.css (CSS isolation breaks ::before/::after) */
.hx-planet[b-jff6o70y1f] {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    opacity: 0;
    pointer-events: auto;
    cursor: pointer;
}

.hx-planet.visible[b-jff6o70y1f] {
    opacity: 1;
}

.hx-planet-name[b-jff6o70y1f] {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--msw-font-mono);
    font-size: 0.65rem;
    color: var(--msw-text-muted);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    letter-spacing: 0.05em;
}

.hx-planet.focused .hx-planet-name[b-jff6o70y1f] {
    opacity: 1;
    color: var(--msw-cyan);
    font-size: 0.75rem;
    bottom: -30px;
}

/* Focus overlay for featured project */
/* Project name — above logo */
.hx-focus-top[b-jff6o70y1f] {
    position: absolute;
    z-index: 4;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    white-space: nowrap;
}

.hx-focus-top.visible[b-jff6o70y1f] { opacity: 1; }

.hx-focus-cat[b-jff6o70y1f] {
    font-family: var(--msw-font-mono);
    font-size: 0.65rem;
    color: var(--msw-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-right: 0.75rem;
}

.hx-focus-title[b-jff6o70y1f] {
    font-size: 1rem;
    font-weight: 500;
    color: var(--msw-text-secondary);
}

/* Bottom stats */
.hx-hero-bottom[b-jff6o70y1f] {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 1s ease;
}

.hx-hero.loaded .hx-hero-bottom[b-jff6o70y1f] {
    opacity: 1;
}

/* Scroll indicator */
.hx-scroll-hint[b-jff6o70y1f] {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transition: opacity 1s ease;
}

.hx-hero.loaded .hx-scroll-hint[b-jff6o70y1f] {
    opacity: 1;
}

.hx-scroll-dot[b-jff6o70y1f] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--msw-cyan);
    animation: scrollPulse-b-jff6o70y1f 2s ease-in-out infinite;
}

@keyframes scrollPulse-b-jff6o70y1f {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(4px); }
}

.hx-title[b-jff6o70y1f] {
    margin-bottom: 0.75rem;
    text-align: center;
}

.hx-title-line1[b-jff6o70y1f] {
    font-family: var(--msw-font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 500;
    color: var(--msw-text-secondary);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.hx-title-line2[b-jff6o70y1f] {
    font-family: var(--msw-font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.03em;
    line-height: 1.2;
    min-height: 1.2em;
}

/* Kill any background on title and children — prevents white box on mobile */
[b-jff6o70y1f] .hx-title,
[b-jff6o70y1f] .hx-typing-line,
[b-jff6o70y1f] .typing-text,
[b-jff6o70y1f] .hx-cursor {
    background-color: transparent;
}

/* typing-text + cursor styles in app.css (CSS isolation breaks gradient text) */

.hx-subtitle[b-jff6o70y1f] {
    font-size: 1rem;
    color: var(--msw-text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.hx-ctas[b-jff6o70y1f] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Buttons */
.hx-btn-primary[b-jff6o70y1f] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    white-space: nowrap;
    background: var(--msw-cyan);
    color: #0a0e27;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hx-btn-primary:hover[b-jff6o70y1f] {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    color: #0a0e27;
}

.hx-btn-secondary[b-jff6o70y1f] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    white-space: nowrap;
    border: 1px solid var(--msw-glass-border);
    color: var(--msw-text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hx-btn-secondary:hover[b-jff6o70y1f] {
    border-color: var(--msw-cyan);
    color: var(--msw-cyan);
    transform: translateY(-2px);
}

/* Stats */
.hx-stats[b-jff6o70y1f] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.hx-stat[b-jff6o70y1f] { text-align: center; }

.hx-stat-val[b-jff6o70y1f] {
    font-family: var(--msw-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--msw-text-primary);
    display: block;
}

.hx-stat-lbl[b-jff6o70y1f] {
    font-size: 0.75rem;
    color: var(--msw-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.hx-stat-sep[b-jff6o70y1f] {
    width: 1px;
    height: 32px;
    background: var(--msw-glass-border);
}

/* ────── MARQUEE ────── */
.hx-marquee[b-jff6o70y1f] {
    border-top: 1px solid var(--msw-glass-border);
    border-bottom: 1px solid var(--msw-glass-border);
    padding: 1rem 0;
    overflow: hidden;
    background: rgba(15, 20, 56, 0.5);
}

.marquee-track[b-jff6o70y1f] {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee-b-jff6o70y1f 25s linear infinite;
}

.marquee-track span[b-jff6o70y1f] {
    font-family: var(--msw-font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--msw-text-muted);
    padding: 0 1.5rem;
}

.marquee-track .sep[b-jff6o70y1f] { color: var(--msw-cyan); opacity: 0.3; }

@keyframes marquee-b-jff6o70y1f {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ────── SECTIONS ────── */
.hx-section[b-jff6o70y1f] {
    padding: clamp(5rem, 10vw, 9rem) 0;
}

.hx-section-head[b-jff6o70y1f] { margin-bottom: 4rem; }

.hx-tag[b-jff6o70y1f] {
    font-family: var(--msw-font-mono);
    font-size: 0.8rem;
    color: var(--msw-cyan);
    display: block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.hx-section-head h2[b-jff6o70y1f] {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hx-center[b-jff6o70y1f] { text-align: center; margin-top: 3rem; }

.hx-small-note[b-jff6o70y1f] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--msw-text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* ────── SERVICES — List rows ────── */
.hx-services[b-jff6o70y1f] {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--msw-glass-border);
}

.hx-svc[b-jff6o70y1f] {
    display: grid;
    grid-template-columns: 80px 1fr 48px;
    gap: 2rem;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--msw-glass-border);
    text-decoration: none;
    color: var(--msw-text-primary);
    transition: all 0.3s ease;
    position: relative;
}

.hx-svc[b-jff6o70y1f]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--msw-cyan-muted), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hx-svc:hover[b-jff6o70y1f]::before { opacity: 1; }
.hx-svc:hover[b-jff6o70y1f] { color: var(--msw-text-primary); }

.hx-svc-num[b-jff6o70y1f] {
    font-family: var(--msw-font-mono);
    font-size: 0.8rem;
    color: var(--msw-text-muted);
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.hx-svc:hover .hx-svc-num[b-jff6o70y1f] { color: var(--msw-cyan); }

.hx-svc-body[b-jff6o70y1f] { position: relative; z-index: 1; }

.hx-svc-body h3[b-jff6o70y1f] {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.hx-svc:hover .hx-svc-body h3[b-jff6o70y1f] { color: var(--msw-cyan); }

.hx-svc-body p[b-jff6o70y1f] {
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hx-svc-arrow[b-jff6o70y1f] {
    color: var(--msw-text-muted);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.hx-svc:hover .hx-svc-arrow[b-jff6o70y1f] {
    color: var(--msw-cyan);
    transform: translate(4px, -4px);
}

/* ────── PROJECTS ────── */
.hx-projects-bg[b-jff6o70y1f] { background: var(--msw-bg-secondary); }

.hx-projects[b-jff6o70y1f] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hx-project[b-jff6o70y1f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--msw-glass-border);
    background: var(--msw-bg-primary);
    transition: all 0.4s ease;
}

.hx-project:hover[b-jff6o70y1f] {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.06);
}

.hx-project:nth-child(even)[b-jff6o70y1f] { direction: rtl; }
.hx-project:nth-child(even) > *[b-jff6o70y1f] { direction: ltr; }

.hx-project-img[b-jff6o70y1f] {
    background: var(--msw-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    min-height: 280px;
}

.hx-project-img img[b-jff6o70y1f] {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.hx-project:hover .hx-project-img img[b-jff6o70y1f] { transform: scale(1.06); }

.hx-project-info[b-jff6o70y1f] {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hx-project-cat[b-jff6o70y1f] {
    font-family: var(--msw-font-mono);
    font-size: 0.7rem;
    color: var(--msw-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.hx-project-info h3[b-jff6o70y1f] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hx-project-info p[b-jff6o70y1f] {
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.hx-project-tags[b-jff6o70y1f] { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.hx-project-tags span[b-jff6o70y1f] {
    font-family: var(--msw-font-mono);
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--msw-glass-border);
    border-radius: 4px;
    color: var(--msw-text-muted);
    transition: all 0.3s;
}

.hx-project:hover .hx-project-tags span[b-jff6o70y1f] {
    border-color: rgba(0, 212, 255, 0.2);
    color: var(--msw-cyan);
}

/* ────── REVIEWS ────── */
.hx-reviews[b-jff6o70y1f] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hx-review[b-jff6o70y1f] {
    padding: 2rem;
    border: 1px solid var(--msw-glass-border);
    border-radius: 12px;
    background: var(--msw-gradient-card);
    transition: all 0.3s ease;
}

.hx-review:hover[b-jff6o70y1f] { border-color: rgba(0, 212, 255, 0.2); }

.hx-review-stars[b-jff6o70y1f] { display: flex; gap: 2px; margin-bottom: 1rem; }

.hx-review blockquote[b-jff6o70y1f] {
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hx-review-author[b-jff6o70y1f] { display: flex; align-items: center; gap: 0.75rem; }

.hx-review-author img[b-jff6o70y1f] {
    width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
}

.hx-avatar[b-jff6o70y1f] {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--msw-cyan);
    display: flex; align-items: center; justify-content: center;
    color: #0a0e27; font-weight: 600; font-size: 0.85rem;
}

.hx-review-author strong[b-jff6o70y1f] { display: block; font-size: 0.85rem; }
.hx-review-author span[b-jff6o70y1f] { font-size: 0.75rem; color: var(--msw-text-muted); }

/* ────── CTA ────── */
.hx-cta[b-jff6o70y1f] {
    padding: clamp(5rem, 10vw, 10rem) 2rem;
    text-align: center;
    background: var(--msw-bg-secondary);
    position: relative;
    overflow: hidden;
}

.hx-cta[b-jff6o70y1f]::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hx-cta h2[b-jff6o70y1f] {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    position: relative;
}

/* hx-gradient-text styles in app.css */

.hx-cta-btns[b-jff6o70y1f] {
    display: flex; gap: 1rem; justify-content: center;
    flex-wrap: wrap; position: relative;
}

/* ────── RESPONSIVE ────── */
@media (max-width: 1024px) {
    .hx-project[b-jff6o70y1f] { grid-template-columns: 1fr; }
    .hx-project:nth-child(even)[b-jff6o70y1f] { direction: ltr; }
    .hx-reviews[b-jff6o70y1f] { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .hx-hero[b-jff6o70y1f] { min-height: 100vh; min-height: 100dvh; }
    .hx-space-logo[b-jff6o70y1f] { width: 150px; }
    .hx-title[b-jff6o70y1f] { font-size: 1.5rem; }
    .hx-subtitle[b-jff6o70y1f] { font-size: 0.9rem; }
    .hx-ctas[b-jff6o70y1f] { flex-direction: column; align-items: center; gap: 0.75rem; }
    .hx-hero-bottom[b-jff6o70y1f] { gap: 1.25rem; bottom: 3rem; }
    .hx-stat-sep[b-jff6o70y1f] { display: none; }
    .hx-stat-val[b-jff6o70y1f] { font-size: 1.25rem; }
    .hx-planet[b-jff6o70y1f] { width: 55px; height: 55px; }
    .hx-planet.focused[b-jff6o70y1f] { width: 80px; height: 80px; }
    .hx-svc[b-jff6o70y1f] { grid-template-columns: 50px 1fr 32px; gap: 1rem; padding: 1.5rem 1rem; }
    .hx-project[b-jff6o70y1f] { grid-template-columns: 1fr; }
    .hx-project:nth-child(even)[b-jff6o70y1f] { direction: ltr; }
    .hx-project-img[b-jff6o70y1f] { min-height: 180px; padding: 2rem; }
    .hx-project-info[b-jff6o70y1f] { padding: 1.5rem; }
}
/* /Components/Pages/Legal.razor.rz.scp.css */
/* Styles in app.css */
/* /Components/Pages/NotFound.razor.rz.scp.css */
/* Styles in app.css */
/* /Components/Pages/Portfolio.razor.rz.scp.css */
/* ═══════════════════════════
   Portfolio Page — Space theme
   ═══════════════════════════ */

/* Hero styles in app.css (space-hero global class) */

/* Filters */
.port-filters[b-9ulre4xz61] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.port-filter[b-9ulre4xz61] {
    background: transparent;
    border: 1px solid var(--msw-glass-border);
    color: var(--msw-text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-family: var(--msw-font-mono);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.port-filter:hover[b-9ulre4xz61] {
    border-color: var(--msw-cyan);
    color: var(--msw-cyan);
}

.port-filter.active[b-9ulre4xz61] {
    background: var(--msw-cyan);
    color: #0a0e27;
    border-color: var(--msw-cyan);
}

/* Projects list — reuses hx-project from Home */
.port-projects[b-9ulre4xz61] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
/* /Components/Pages/PrintProducts.razor.rz.scp.css */
/* Styles in app.css */
/* /Components/Pages/Privacy.razor.rz.scp.css */
/* Styles in app.css */
/* /Components/Pages/Reviews.razor.rz.scp.css */
/* Styles in app.css */
/* /Components/Pages/Services.razor.rz.scp.css */
/* ═══════════════════════════
   Services Page — Space theme
   ═══════════════════════════ */

/* Hero styles in app.css (space-hero global class) */

/* Service detail blocks */
.hx-svc-detail[b-qpy2arquh5] {
    padding: 3rem 0;
    border-bottom: 1px solid var(--msw-glass-border);
}

.hx-svc-detail:last-child[b-qpy2arquh5] {
    border-bottom: none;
}

.hx-svc-detail-head[b-qpy2arquh5] {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hx-svc-num[b-qpy2arquh5] {
    font-family: var(--msw-font-mono);
    font-size: 0.8rem;
    color: var(--msw-cyan);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.hx-svc-detail-head h2[b-qpy2arquh5] {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hx-svc-detail-body[b-qpy2arquh5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hx-svc-detail-body.reverse[b-qpy2arquh5] {
    direction: rtl;
}

.hx-svc-detail-body.reverse > *[b-qpy2arquh5] {
    direction: ltr;
}

.hx-svc-detail-text p[b-qpy2arquh5] {
    color: var(--msw-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hx-svc-features[b-qpy2arquh5] {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.hx-svc-features li[b-qpy2arquh5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
}

.hx-svc-detail-img[b-qpy2arquh5] {
    border-radius: 16px;
    overflow: hidden;
    background: var(--msw-bg-tertiary);
    border: 1px solid var(--msw-glass-border);
}

.hx-svc-detail-img img[b-qpy2arquh5] {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hx-svc-detail:hover .hx-svc-detail-img img[b-qpy2arquh5] {
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
    .svc-hero[b-qpy2arquh5] { min-height: 40vh; padding: 6rem 1rem 3rem; }
    .hx-svc-detail-body[b-qpy2arquh5],
    .hx-svc-detail-body.reverse[b-qpy2arquh5] {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .hx-svc-detail-head[b-qpy2arquh5] { flex-direction: column; gap: 0.5rem; }
}
