/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Global fullscreen background for entire app */
.global-fullscreen-background[b-482pptjbnm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: var(--z-background);
    overflow: hidden;
    pointer-events: none;
}

.global-fullscreen-background .global-background-image[b-482pptjbnm] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.global-fullscreen-background .global-overlay-gradient[b-482pptjbnm] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 41, 59, 0.85) 0%,
        rgba(51, 65, 85, 0.80) 20%,
        rgba(71, 85, 105, 0.75) 40%,
        rgba(51, 65, 85, 0.80) 60%,
        rgba(30, 41, 59, 0.85) 80%,
        rgba(22, 33, 62, 0.90) 100%
    );
}

/* Page layout - sidebar + main content */
.page[b-482pptjbnm] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    z-index: var(--z-content);
}

.main[b-482pptjbnm] {
    position: fixed;
    top: var(--topbar-height, 3.5rem);
    right: 0;
    bottom: 0;
    left: var(--sidebar-width, 250px);
    margin: 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.content[b-482pptjbnm] {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 !important;
    margin: 0 !important;
    z-index: var(--z-topbar);
    overflow: visible;
}

.main > .content[b-482pptjbnm] {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .main[b-482pptjbnm] {
        left: 0;
    }
}

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

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


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

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

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-d6yz9ojzgc {
    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/Layout/Sidebar.razor.rz.scp.css */
.sidebar-open-btn[b-84xtaizhdt] {
    display: none !important;
}

.sidebar-backdrop[b-84xtaizhdt] {
    display: none;
}

.sidebar[b-84xtaizhdt] {
    position: fixed;
    top: var(--topbar-height, 3.5rem);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width, 250px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-sidebar, 100);
    transform: translateX(-100%);
    transition: transform 0.3s ease, width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar.show[b-84xtaizhdt],
.sidebar.expanded[b-84xtaizhdt],
.sidebar.collapsed[b-84xtaizhdt] {
    transform: translateX(0);
}

.sidebar.collapsed[b-84xtaizhdt] {
    width: var(--sidebar-width-collapsed, 72px);
}

.sidebar-toggle-btn[b-84xtaizhdt] {
    position: absolute;
    top: var(--space-md, 1rem);
    right: var(--space-sm, 0.5rem);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 0.7rem;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 50%, #A855F7 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sidebar-toggle-btn:hover[b-84xtaizhdt] {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #C084FC 100%);
}

.sidebar-toggle-btn i[b-84xtaizhdt] {
    font-size: 0.875rem;
}

.sidebar-header[b-84xtaizhdt] {
    flex-shrink: 0;
    padding: 3rem var(--space-sm, 0.5rem) var(--space-sm, 0.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-scrollable[b-84xtaizhdt] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 3rem 0.5rem 0.75rem;
}

.sidebar.collapsed .nav-scrollable[b-84xtaizhdt] {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

@media (max-width: 768px) {
    .sidebar-backdrop[b-84xtaizhdt] {
        display: block;
        position: fixed;
        top: var(--topbar-height, 3.5rem);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: calc(var(--z-sidebar, 100) - 1);
        background: rgba(0, 0, 0, 0.45);
    }

    .sidebar[b-84xtaizhdt] {
        width: min(80vw, 250px);
        transform: translateX(-100%);
    }

    .sidebar.show[b-84xtaizhdt] {
        transform: translateX(0);
    }

    .sidebar.collapsed:not(.show)[b-84xtaizhdt],
    .sidebar.expanded:not(.show)[b-84xtaizhdt] {
        transform: translateX(-100%);
    }
}

@media (min-width: 769px) {
    .sidebar[b-84xtaizhdt],
    .sidebar.expanded[b-84xtaizhdt],
    .sidebar.collapsed[b-84xtaizhdt],
    .sidebar.show[b-84xtaizhdt] {
        transform: translateX(0);
    }
}
/* /Components/Layout/TopBar.razor.rz.scp.css */
.top-row[b-ekqx9xeuin] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height, 3.5rem);
    z-index: var(--z-topbar, 10);
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-content[b-ekqx9xeuin] {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-start[b-ekqx9xeuin] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex: 1 1 auto;
}

.topbar-menu-btn[b-ekqx9xeuin] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.7rem;
    color: #fff;
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 50%, #A855F7 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.topbar-menu-btn:hover[b-ekqx9xeuin] {
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #C084FC 100%);
}

.topbar-brand[b-ekqx9xeuin] {
    min-width: 0;
    color: var(--text-primary, #F8FAFC);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
}

.topbar-brand-text[b-ekqx9xeuin] {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar-env-badge[b-ekqx9xeuin] {
    display: none;
    flex-shrink: 0;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(245, 158, 11, 0.85);
}

.topbar-nav[b-ekqx9xeuin] {
    display: none;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
}

.topbar-end[b-ekqx9xeuin] {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

@media (min-width: 481px) {
    .top-row[b-ekqx9xeuin] {
        padding: 0 1rem;
    }

    .topbar-brand[b-ekqx9xeuin] {
        font-size: 1.25rem;
    }

    .topbar-env-badge[b-ekqx9xeuin] {
        display: inline-flex;
    }
}

@media (min-width: 769px) {
    .topbar-menu-btn[b-ekqx9xeuin] {
        display: none;
    }

    .topbar-start[b-ekqx9xeuin] {
        flex: 0 0 auto;
    }

    .topbar-nav[b-ekqx9xeuin] {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
/* /Components/Layout/TopBarUserMenu.razor.rz.scp.css */
.topbar-user[b-qvadjoa6pe] {
    position: relative;
}

.topbar-user-btn[b-qvadjoa6pe] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 11rem;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    font-size: 0.875rem;
}

.topbar-user-btn:hover[b-qvadjoa6pe] {
    background: linear-gradient(135deg, #2a3b55 0%, #3f4e68 50%, #5a6b84 100%);
}

.topbar-user-name[b-qvadjoa6pe] {
    display: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar-user-caret[b-qvadjoa6pe] {
    display: none;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.topbar-user-caret.open[b-qvadjoa6pe] {
    transform: rotate(180deg);
}

.topbar-user-dropdown[b-qvadjoa6pe] {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    min-width: 10rem;
    padding: 0.35rem;
    border-radius: 0.5rem;
    background: rgba(17, 24, 39, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
    z-index: calc(var(--z-topbar, 10) + 5);
}

.topbar-user-item[b-qvadjoa6pe] {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.65rem;
    border: 0;
    border-radius: 0.35rem;
    background: transparent;
    color: #e5e7eb;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.topbar-user-item:hover[b-qvadjoa6pe] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

@media (min-width: 481px) {
    .topbar-user-name[b-qvadjoa6pe],
    .topbar-user-caret[b-qvadjoa6pe] {
        display: inline;
    }

    .topbar-user-btn[b-qvadjoa6pe] {
        max-width: 16rem;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
.about-container[b-b3lagblb4z] {
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.contact-section[b-b3lagblb4z] {
    position: relative;
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    color: white;
    scroll-margin-top: 1rem;
}

.contact-section .container[b-b3lagblb4z] {
    position: relative;
    z-index: 1;
}

.stars[b-b3lagblb4z] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="1" fill="white"/><circle cx="300" cy="200" r="0.5" fill="white"/><circle cx="500" cy="150" r="1.5" fill="white"/><circle cx="700" cy="300" r="0.8" fill="white"/><circle cx="900" cy="250" r="1.2" fill="white"/><circle cx="150" cy="400" r="0.6" fill="white"/><circle cx="350" cy="500" r="1" fill="white"/><circle cx="550" cy="450" r="0.7" fill="white"/><circle cx="750" cy="600" r="1.3" fill="white"/><circle cx="950" cy="550" r="0.9" fill="white"/><circle cx="200" cy="700" r="1.1" fill="white"/><circle cx="400" cy="800" r="0.8" fill="white"/><circle cx="600" cy="750" r="1.4" fill="white"/><circle cx="800" cy="900" r="0.6" fill="white"/><circle cx="50" cy="950" r="1.2" fill="white"/></svg>') repeat;
    animation: twinkle-b-b3lagblb4z 20s linear infinite;
}

.twinkling[b-b3lagblb4z] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="250" cy="50" r="0.8" fill="rgba(255,255,255,0.8)"/><circle cx="450" cy="100" r="0.5" fill="rgba(255,255,255,0.6)"/><circle cx="650" cy="75" r="1.1" fill="rgba(255,255,255,0.7)"/><circle cx="850" cy="125" r="0.7" fill="rgba(255,255,255,0.5)"/><circle cx="150" cy="300" r="0.9" fill="rgba(255,255,255,0.8)"/><circle cx="350" cy="350" r="0.6" fill="rgba(255,255,255,0.6)"/><circle cx="550" cy="325" r="1.2" fill="rgba(255,255,255,0.7)"/><circle cx="750" cy="375" r="0.8" fill="rgba(255,255,255,0.5)"/><circle cx="950" cy="325" r="1" fill="rgba(255,255,255,0.8)"/><circle cx="100" cy="600" r="0.7" fill="rgba(255,255,255,0.6)"/><circle cx="300" cy="650" r="1.1" fill="rgba(255,255,255,0.7)"/><circle cx="500" cy="625" r="0.8" fill="rgba(255,255,255,0.5)"/><circle cx="700" cy="675" r="1.3" fill="rgba(255,255,255,0.8)"/><circle cx="900" cy="625" r="0.9" fill="rgba(255,255,255,0.6)"/><circle cx="50" cy="850" r="1.2" fill="rgba(255,255,255,0.7)"/></svg>') repeat;
    animation: twinkle-b-b3lagblb4z 15s linear infinite reverse;
}

@keyframes twinkle-b-b3lagblb4z {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-1000px); }
}

.section-title[b-b3lagblb4z] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.title-accent[b-b3lagblb4z] {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #17a2b8;
    margin-top: 0.5rem;
}

.section-description[b-b3lagblb4z] {
    font-size: 1.1rem;
    color: #adb5bd;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-card[b-b3lagblb4z] {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.contact-icon[b-b3lagblb4z] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h2[b-b3lagblb4z] {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-email[b-b3lagblb4z] {
    display: block;
    color: #9ee7f0;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-email:hover[b-b3lagblb4z] {
    color: #ffffff;
    text-decoration: underline;
}

.contact-cta[b-b3lagblb4z] {
    width: 100%;
    max-width: 18rem;
}

@media (max-width: 576px) {
    .contact-section[b-b3lagblb4z] {
        padding: 4rem 0;
    }

    .section-title[b-b3lagblb4z] {
        font-size: 2rem;
    }

    .contact-email[b-b3lagblb4z] {
        font-size: 1rem;
    }
}
/* /Components/Pages/Cv.razor.rz.scp.css */
.cv-page-status[b-joftvajm59] {
    color: var(--text-secondary, #A8B8D0);
    text-align: center;
    padding: 3rem 1rem;
}

.cv-sheet[b-joftvajm59] {
    max-width: 58rem;
    margin: 0 auto;
    padding: 2rem 1.75rem 1.5rem;
    background: #f7f5f2;
    color: #1a1a1a;
    border-radius: 0.35rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.cv-header[b-joftvajm59] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.cv-brand[b-joftvajm59] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.cv-logo[b-joftvajm59] {
    flex-shrink: 0;
    width: 3.4rem;
    height: 3.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-family: "Great Vibes", "Crimson Pro", cursive;
    font-size: 1.85rem;
    line-height: 1;
    padding-bottom: 0.2rem;
}

.cv-sheet h1[b-joftvajm59] {
    margin: 0;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111;
}

.cv-role[b-joftvajm59] {
    margin: 0.15rem 0 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
}

.cv-download[b-joftvajm59] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid #111;
    border-radius: 999px;
    color: #111;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.cv-download:hover[b-joftvajm59] {
    background: #111;
    color: #fff;
}

.cv-grid[b-joftvajm59] {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(14rem, 0.95fr);
    gap: 2.25rem;
}

.cv-section[b-joftvajm59] {
    margin-bottom: 1.6rem;
}

.cv-sheet h2[b-joftvajm59] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #d8d4ce;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
}

.cv-sheet h2 i[b-joftvajm59] {
    font-size: 0.95rem;
    width: 1.1rem;
    text-align: center;
}

.cv-sheet h3[b-joftvajm59] {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}

.cv-sheet p[b-joftvajm59],
.cv-sheet li[b-joftvajm59],
.cv-sheet dd[b-joftvajm59] {
    color: #2a2a2a;
    font-size: 0.92rem;
    line-height: 1.45;
}

.cv-sheet p[b-joftvajm59] {
    margin: 0 0 0.55rem;
}

.cv-org[b-joftvajm59] {
    font-style: italic;
    color: #444 !important;
    margin-bottom: 0.4rem !important;
}

.cv-timeline[b-joftvajm59] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cv-timeline > li[b-joftvajm59] {
    display: grid;
    grid-template-columns: 7.4rem minmax(0, 1fr);
    gap: 0.85rem;
    position: relative;
    padding-bottom: 1.15rem;
}

.cv-timeline > li[b-joftvajm59]::before {
    content: "";
    position: absolute;
    left: 8.05rem;
    top: 0.55rem;
    bottom: 0;
    width: 1px;
    background: #cfc9c0;
}

.cv-timeline > li:last-child[b-joftvajm59] {
    padding-bottom: 0;
}

.cv-timeline > li:last-child[b-joftvajm59]::before {
    display: none;
}

.cv-when[b-joftvajm59] {
    padding-top: 0.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.cv-entry[b-joftvajm59] {
    padding-left: 1.1rem;
    position: relative;
}

.cv-entry[b-joftvajm59]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #111;
}

.cv-entry ul[b-joftvajm59] {
    margin: 0.2rem 0 0;
    padding-left: 1.1rem;
}

.cv-entry li[b-joftvajm59] {
    margin-bottom: 0.2rem;
}

.cv-photo[b-joftvajm59] {
    display: block;
    width: 100%;
    max-width: 16rem;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 1.25rem;
    filter: grayscale(1) contrast(1.05);
}

.cv-facts[b-joftvajm59] {
    margin: 0;
}

.cv-facts > div[b-joftvajm59] {
    margin-bottom: 0.7rem;
}

.cv-facts dt[b-joftvajm59] {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.12rem;
}

.cv-facts dd[b-joftvajm59] {
    margin: 0;
    font-weight: 600;
    word-break: break-word;
}

.cv-facts a[b-joftvajm59] {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.cv-facts a:hover[b-joftvajm59] {
    color: #5b21b6;
}

.cv-chips[b-joftvajm59] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cv-chips li[b-joftvajm59] {
    font-weight: 500;
}

.cv-edu h3[b-joftvajm59] {
    margin-top: 0.2rem;
}

.cv-footer[b-joftvajm59] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid #d8d4ce;
    font-size: 0.85rem;
    color: #444;
}

@media (max-width: 800px) {
    .cv-grid[b-joftvajm59] {
        grid-template-columns: 1fr;
    }

    .cv-photo[b-joftvajm59] {
        max-width: 12rem;
    }

    .cv-timeline > li[b-joftvajm59] {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .cv-timeline > li[b-joftvajm59]::before {
        display: none;
    }

    .cv-entry[b-joftvajm59] {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .cv-sheet[b-joftvajm59] {
        padding: 1.25rem 1rem 1rem;
    }

    .cv-header[b-joftvajm59] {
        flex-direction: column;
    }

    .cv-sheet h1[b-joftvajm59] {
        font-size: 1.45rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* About Page Styles - Space Theme */

/* Container and Global Styles */
.about-container[b-j1oa4vlhv5] {
    overflow-x: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-section[b-j1oa4vlhv5],
.worlds-section[b-j1oa4vlhv5],
.services-section[b-j1oa4vlhv5],
.vision-section[b-j1oa4vlhv5],
.cta-section[b-j1oa4vlhv5] {
    scroll-margin-top: 1rem;
}

/* Hero Section */
.hero-section[b-j1oa4vlhv5] {
    position: relative;
    /* Visible .main height is viewport minus the top bar, not 100vh. */
    height: calc(100dvh - var(--topbar-height, 3.5rem));
    min-height: calc(100svh - var(--topbar-height, 3.5rem));
    max-height: calc(100dvh - var(--topbar-height, 3.5rem));
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video[b-j1oa4vlhv5] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.25s ease;
}

.hero-section.is-video-playing .hero-video[b-j1oa4vlhv5] {
    opacity: 1;
}

.hero-video-shade[b-j1oa4vlhv5] {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(12, 12, 12, 0.45) 0%,
        rgba(12, 12, 12, 0.35) 40%,
        rgba(12, 12, 12, 0.7) 100%
    );
    pointer-events: none;
    opacity: 1;
    transition: opacity 1.25s ease;
}

.hero-section.is-video-playing .hero-video-shade[b-j1oa4vlhv5] {
    opacity: 0.12;
}

.hero-section .stars[b-j1oa4vlhv5],
.hero-section .twinkling[b-j1oa4vlhv5] {
    z-index: 1;
    opacity: 0.85;
    pointer-events: none;
    transition: opacity 1.25s ease;
}

.hero-section.is-video-playing .stars[b-j1oa4vlhv5],
.hero-section.is-video-playing .twinkling[b-j1oa4vlhv5] {
    opacity: 0.15;
}

.hero-section .container[b-j1oa4vlhv5] {
    position: relative;
    z-index: 2;
    padding: 1rem 1rem 4.5rem;
    opacity: 1;
    transition: opacity 1.25s ease;
}

.hero-section.is-video-playing .container[b-j1oa4vlhv5] {
    opacity: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video[b-j1oa4vlhv5],
    .hero-video-shade[b-j1oa4vlhv5],
    .hero-section .stars[b-j1oa4vlhv5],
    .hero-section .twinkling[b-j1oa4vlhv5],
    .hero-section .container[b-j1oa4vlhv5] {
        transition: none;
    }
}

.hero-video-controls[b-j1oa4vlhv5] {
    position: absolute;
    right: 1.5rem;
    bottom: 2.75rem;
    left: auto;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
    width: max-content;
    max-width: calc(100% - 2rem);
}

.hero-video-btn[b-j1oa4vlhv5] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--button-border-overlay, rgba(255, 255, 255, 0.3));
    background: var(--button-bg-overlay, rgba(0, 0, 0, 0.5));
    backdrop-filter: var(--button-backdrop-blur, blur(10px));
    color: #F8FAFC;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-standard, all 0.3s ease);
}

.hero-video-btn:hover:not(:disabled)[b-j1oa4vlhv5] {
    background: var(--button-hover-bg, rgba(255, 255, 255, 0.1));
    border-color: var(--button-hover-border, rgba(255, 255, 255, 0.5));
    color: #fff;
}

.hero-video-btn:focus-visible[b-j1oa4vlhv5] {
    outline: 2px solid #17a2b8;
    outline-offset: 2px;
}

.hero-video-btn:disabled[b-j1oa4vlhv5] {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Animated Stars Background */
.stars[b-j1oa4vlhv5] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="1" fill="white"/><circle cx="300" cy="200" r="0.5" fill="white"/><circle cx="500" cy="150" r="1.5" fill="white"/><circle cx="700" cy="300" r="0.8" fill="white"/><circle cx="900" cy="250" r="1.2" fill="white"/><circle cx="150" cy="400" r="0.6" fill="white"/><circle cx="350" cy="500" r="1" fill="white"/><circle cx="550" cy="450" r="0.7" fill="white"/><circle cx="750" cy="600" r="1.3" fill="white"/><circle cx="950" cy="550" r="0.9" fill="white"/><circle cx="200" cy="700" r="1.1" fill="white"/><circle cx="400" cy="800" r="0.8" fill="white"/><circle cx="600" cy="750" r="1.4" fill="white"/><circle cx="800" cy="900" r="0.6" fill="white"/><circle cx="50" cy="950" r="1.2" fill="white"/></svg>') repeat;
    animation: twinkle-b-j1oa4vlhv5 20s linear infinite;
}

.twinkling[b-j1oa4vlhv5] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="250" cy="50" r="0.8" fill="rgba(255,255,255,0.8)"/><circle cx="450" cy="100" r="0.5" fill="rgba(255,255,255,0.6)"/><circle cx="650" cy="75" r="1.1" fill="rgba(255,255,255,0.7)"/><circle cx="850" cy="125" r="0.7" fill="rgba(255,255,255,0.5)"/><circle cx="150" cy="300" r="0.9" fill="rgba(255,255,255,0.8)"/><circle cx="350" cy="350" r="0.6" fill="rgba(255,255,255,0.6)"/><circle cx="550" cy="325" r="1.2" fill="rgba(255,255,255,0.7)"/><circle cx="750" cy="375" r="0.8" fill="rgba(255,255,255,0.5)"/><circle cx="950" cy="325" r="1" fill="rgba(255,255,255,0.8)"/><circle cx="100" cy="600" r="0.7" fill="rgba(255,255,255,0.6)"/><circle cx="300" cy="650" r="1.1" fill="rgba(255,255,255,0.7)"/><circle cx="500" cy="625" r="0.8" fill="rgba(255,255,255,0.5)"/><circle cx="700" cy="675" r="1.3" fill="rgba(255,255,255,0.8)"/><circle cx="900" cy="625" r="0.9" fill="rgba(255,255,255,0.6)"/><circle cx="50" cy="850" r="1.2" fill="rgba(255,255,255,0.7)"/></svg>') repeat;
    animation: twinkle-b-j1oa4vlhv5 15s linear infinite reverse;
}

@keyframes twinkle-b-j1oa4vlhv5 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-1000px); }
}

.hero-title[b-j1oa4vlhv5] {
    font-size: 4rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
    animation: fadeInUp-b-j1oa4vlhv5 1s ease-out;
}

.hero-subtitle[b-j1oa4vlhv5] {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: #17a2b8;
    margin-top: 0.5rem;
    animation: fadeInUp-b-j1oa4vlhv5 1s ease-out 0.3s both;
}

.hero-description[b-j1oa4vlhv5] {
    font-size: 1.25rem;
    color: #adb5bd;
    margin-bottom: 2rem;
    animation: fadeInUp-b-j1oa4vlhv5 1s ease-out 0.6s both;
}

.hero-buttons[b-j1oa4vlhv5] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    animation: fadeInUp-b-j1oa4vlhv5 1s ease-out 0.9s both;
}

@keyframes fadeInUp-b-j1oa4vlhv5 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Worlds Section */
.worlds-section-bak[b-j1oa4vlhv5] {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.worlds-section[b-j1oa4vlhv5] {
    padding: 6rem 4rem;
    background-image:  repeating-radial-gradient(circle at 0 0, transparent 0, #47d3ff 42px), repeating-linear-gradient(#474bff, #ff003d);
    background-color: #47d3ff;
    position: relative;
    min-height: 80vh;
}

.section-title[b-j1oa4vlhv5] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #212529;
}

.title-accent[b-j1oa4vlhv5] {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #6c757d;
    margin-top: 0.5rem;
}

.section-description[b-j1oa4vlhv5] {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Feature Grid */
.feature-grid[b-j1oa4vlhv5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item[b-j1oa4vlhv5] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #007bff;
}

.feature-item:hover[b-j1oa4vlhv5] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon[b-j1oa4vlhv5] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4[b-j1oa4vlhv5] {
    color: #212529;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-item p[b-j1oa4vlhv5] {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Worlds Highlights */
.worlds-highlights[b-j1oa4vlhv5] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.worlds-highlights h4[b-j1oa4vlhv5] {
    color: #212529;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.highlights-list[b-j1oa4vlhv5] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li[b-j1oa4vlhv5] {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    color: #495057;
    line-height: 1.6;
}

.highlights-list li:last-child[b-j1oa4vlhv5] {
    border-bottom: none;
}

.highlights-list strong[b-j1oa4vlhv5] {
    color: #007bff;
    font-weight: 600;
}

/* Realms Story - Erra & El Shalel */
.worlds-story[b-j1oa4vlhv5] {
    background: linear-gradient(135deg, rgba(71, 211, 255, 0.12) 0%, rgba(71, 75, 255, 0.08) 100%);
    border: 1px solid rgba(71, 211, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.worlds-story h4[b-j1oa4vlhv5] {
    color: #212529;
    font-weight: 600;
}

/* Space Scene Animation */
.space-scene[b-j1oa4vlhv5] {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.planet[b-j1oa4vlhv5] {
    position: absolute;
    border-radius: 50%;
    animation: float-b-j1oa4vlhv5 6s ease-in-out infinite;
}

.planet-1[b-j1oa4vlhv5] {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.planet-2[b-j1oa4vlhv5] {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
    top: 200px;
    right: 80px;
    animation-delay: 2s;
}

.space-station[b-j1oa4vlhv5] {
    position: absolute;
    width: 100px;
    height: 60px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    animation: float-b-j1oa4vlhv5 8s ease-in-out infinite;
    animation-delay: 1s;
}

.asteroid-field[b-j1oa4vlhv5] {
    position: absolute;
    width: 200px;
    height: 100px;
    top: 300px;
    right: 20px;
    background: radial-gradient(circle, #6c757d 0%, transparent 70%);
    animation: float-b-j1oa4vlhv5 10s ease-in-out infinite;
    animation-delay: 3s;
}

.starship[b-j1oa4vlhv5] {
    position: absolute;
    width: 60px;
    height: 30px;
    background: linear-gradient(45deg, #ff6b6b 0%, #ee5a24 100%);
    top: 100px;
    right: 50px;
    border-radius: 15px;
    animation: float-b-j1oa4vlhv5 7s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float-b-j1oa4vlhv5 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services-section[b-j1oa4vlhv5] {
    padding: 6rem 0;
    background: white;
}

.service-card[b-j1oa4vlhv5] {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

.service-card:hover[b-j1oa4vlhv5] {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.service-icon[b-j1oa4vlhv5] {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card h4[b-j1oa4vlhv5] {
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.service-card p[b-j1oa4vlhv5] {
    color: #6c757d;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-tech[b-j1oa4vlhv5] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag[b-j1oa4vlhv5] {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Vision Section */
.vision-section[b-j1oa4vlhv5] {
    padding: 6rem 1.5rem;
    background: rgba(0, 0, 0, 0.55);
    color: #F8FAFC;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.vision-section .container[b-j1oa4vlhv5],
.vision-section .row[b-j1oa4vlhv5],
.vision-section .col-lg-10[b-j1oa4vlhv5] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.vision-section .section-title[b-j1oa4vlhv5],
.vision-section .section-title .text-primary[b-j1oa4vlhv5],
.vision-section h1[b-j1oa4vlhv5],
.vision-section h2[b-j1oa4vlhv5],
.vision-section h3[b-j1oa4vlhv5],
.vision-section h4[b-j1oa4vlhv5],
.vision-section p[b-j1oa4vlhv5],
.vision-section .vision-text[b-j1oa4vlhv5],
.vision-section .stat-number[b-j1oa4vlhv5],
.vision-section .stat-label[b-j1oa4vlhv5] {
    color: #F8FAFC;
}

.vision-section .title-accent[b-j1oa4vlhv5] {
    color: #CBD5E1;
}

.vision-text[b-j1oa4vlhv5] {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 3rem;
    max-width: 100%;
    opacity: 0.9;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.vision-stats[b-j1oa4vlhv5] {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item[b-j1oa4vlhv5] {
    text-align: center;
}

.stat-number[b-j1oa4vlhv5] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label[b-j1oa4vlhv5] {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section[b-j1oa4vlhv5] {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.cta-section h3[b-j1oa4vlhv5] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p[b-j1oa4vlhv5] {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-buttons[b-j1oa4vlhv5] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
    @media (max-width: 768px) {
    .hero-title[b-j1oa4vlhv5] {
        font-size: 2.5rem;
    }
    
    .hero-subtitle[b-j1oa4vlhv5] {
        font-size: 1.2rem;
    }

    .hero-video-controls[b-j1oa4vlhv5] {
        right: 1rem;
        bottom: 2rem;
        gap: 0.4rem;
    }

    .hero-video-btn[b-j1oa4vlhv5] {
        padding: 0.45rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .section-title[b-j1oa4vlhv5] {
        font-size: 2rem;
    }
    
    .feature-grid[b-j1oa4vlhv5] {
        grid-template-columns: 1fr;
    }
    
    .vision-stats[b-j1oa4vlhv5] {
        gap: 2rem;
    }
    
    .cta-buttons[b-j1oa4vlhv5] {
        flex-direction: column;
        align-items: center;
    }
    
    .space-scene[b-j1oa4vlhv5] {
        height: 300px;
    }
    
    .planet-1[b-j1oa4vlhv5], .planet-2[b-j1oa4vlhv5] {
        width: 60px;
        height: 60px;
    }
    
    .space-station[b-j1oa4vlhv5] {
        width: 60px;
        height: 40px;
    }
    
    .worlds-section[b-j1oa4vlhv5] {
        padding: 4rem 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title[b-j1oa4vlhv5] {
        font-size: 2rem;
    }
    
    .hero-description[b-j1oa4vlhv5] {
        font-size: 1rem;
    }
    
    .section-title[b-j1oa4vlhv5] {
        font-size: 1.75rem;
    }
    
    .title-accent[b-j1oa4vlhv5] {
        font-size: 1.2rem;
    }
    
    .worlds-section[b-j1oa4vlhv5] {
        padding: 3rem 1rem;
    }
}
/* /Components/Pages/Realms.razor.rz.scp.css */
/* About Page Styles - Space Theme */

/* Container and Global Styles */
.about-container[b-a5vefah5m8] {
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.hero-section[b-a5vefah5m8],
.worlds-section[b-a5vefah5m8],
.services-section[b-a5vefah5m8],
.vision-section[b-a5vefah5m8],
.cta-section[b-a5vefah5m8] {
    scroll-margin-top: 1rem;
}

/* Hero Section */
.hero-section[b-a5vefah5m8] {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated Stars Background */
.stars[b-a5vefah5m8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="1" fill="white"/><circle cx="300" cy="200" r="0.5" fill="white"/><circle cx="500" cy="150" r="1.5" fill="white"/><circle cx="700" cy="300" r="0.8" fill="white"/><circle cx="900" cy="250" r="1.2" fill="white"/><circle cx="150" cy="400" r="0.6" fill="white"/><circle cx="350" cy="500" r="1" fill="white"/><circle cx="550" cy="450" r="0.7" fill="white"/><circle cx="750" cy="600" r="1.3" fill="white"/><circle cx="950" cy="550" r="0.9" fill="white"/><circle cx="200" cy="700" r="1.1" fill="white"/><circle cx="400" cy="800" r="0.8" fill="white"/><circle cx="600" cy="750" r="1.4" fill="white"/><circle cx="800" cy="900" r="0.6" fill="white"/><circle cx="50" cy="950" r="1.2" fill="white"/></svg>') repeat;
    animation: twinkle-b-a5vefah5m8 20s linear infinite;
}

.twinkling[b-a5vefah5m8] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="250" cy="50" r="0.8" fill="rgba(255,255,255,0.8)"/><circle cx="450" cy="100" r="0.5" fill="rgba(255,255,255,0.6)"/><circle cx="650" cy="75" r="1.1" fill="rgba(255,255,255,0.7)"/><circle cx="850" cy="125" r="0.7" fill="rgba(255,255,255,0.5)"/><circle cx="150" cy="300" r="0.9" fill="rgba(255,255,255,0.8)"/><circle cx="350" cy="350" r="0.6" fill="rgba(255,255,255,0.6)"/><circle cx="550" cy="325" r="1.2" fill="rgba(255,255,255,0.7)"/><circle cx="750" cy="375" r="0.8" fill="rgba(255,255,255,0.5)"/><circle cx="950" cy="325" r="1" fill="rgba(255,255,255,0.8)"/><circle cx="100" cy="600" r="0.7" fill="rgba(255,255,255,0.6)"/><circle cx="300" cy="650" r="1.1" fill="rgba(255,255,255,0.7)"/><circle cx="500" cy="625" r="0.8" fill="rgba(255,255,255,0.5)"/><circle cx="700" cy="675" r="1.3" fill="rgba(255,255,255,0.8)"/><circle cx="900" cy="625" r="0.9" fill="rgba(255,255,255,0.6)"/><circle cx="50" cy="850" r="1.2" fill="rgba(255,255,255,0.7)"/></svg>') repeat;
    animation: twinkle-b-a5vefah5m8 15s linear infinite reverse;
}

@keyframes twinkle-b-a5vefah5m8 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-1000px); }
}

.hero-title[b-a5vefah5m8] {
    font-size: 4rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
    animation: fadeInUp-b-a5vefah5m8 1s ease-out;
}

.hero-subtitle[b-a5vefah5m8] {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: #17a2b8;
    margin-top: 0.5rem;
    animation: fadeInUp-b-a5vefah5m8 1s ease-out 0.3s both;
}

.hero-description[b-a5vefah5m8] {
    font-size: 1.25rem;
    color: #adb5bd;
    margin-bottom: 2rem;
    animation: fadeInUp-b-a5vefah5m8 1s ease-out 0.6s both;
}

.hero-buttons[b-a5vefah5m8] {
    animation: fadeInUp-b-a5vefah5m8 1s ease-out 0.9s both;
}

@keyframes fadeInUp-b-a5vefah5m8 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Worlds Section */
.worlds-section-bak[b-a5vefah5m8] {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.worlds-section[b-a5vefah5m8] {
    position: relative;
    min-height: 100vh;
    padding: 6rem 4rem;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    color: white;
}

.worlds-section .container[b-a5vefah5m8],
.worlds-section .worlds-visual[b-a5vefah5m8] {
    position: relative;
    z-index: 1;
}

.section-title[b-a5vefah5m8] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.title-accent[b-a5vefah5m8] {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #17a2b8;
    margin-top: 0.5rem;
}

.section-description[b-a5vefah5m8] {
    font-size: 1.1rem;
    color: #adb5bd;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Feature Grid */
.feature-grid[b-a5vefah5m8] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item[b-a5vefah5m8] {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid #17a2b8;
}

.feature-item:hover[b-a5vefah5m8] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.feature-icon[b-a5vefah5m8] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4[b-a5vefah5m8] {
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-item p[b-a5vefah5m8] {
    color: #adb5bd;
    margin: 0;
    line-height: 1.5;
}

/* Worlds Highlights */
.worlds-highlights[b-a5vefah5m8] {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.worlds-highlights h4[b-a5vefah5m8] {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.highlights-list[b-a5vefah5m8] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li[b-a5vefah5m8] {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #adb5bd;
    line-height: 1.6;
}

.highlights-list li:last-child[b-a5vefah5m8] {
    border-bottom: none;
}

.highlights-list strong[b-a5vefah5m8] {
    color: #17a2b8;
    font-weight: 600;
}

/* Realms Story - Erra & El Shalel */
.worlds-story[b-a5vefah5m8] {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.22) 0%, rgba(118, 75, 162, 0.18) 100%);
    border: 1px solid rgba(102, 126, 234, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem 1.5rem 1.5rem 2.25rem;
}

.worlds-story h4[b-a5vefah5m8] {
    color: white;
    font-weight: 600;
}

/* Space Scene Animation */
.space-scene[b-a5vefah5m8] {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.planet[b-a5vefah5m8] {
    position: absolute;
    border-radius: 50%;
    animation: float-b-a5vefah5m8 6s ease-in-out infinite;
}

.planet-1[b-a5vefah5m8] {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.planet-2[b-a5vefah5m8] {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
    top: 200px;
    right: 80px;
    animation-delay: 2s;
}

.space-station[b-a5vefah5m8] {
    position: absolute;
    width: 100px;
    height: 60px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    animation: float-b-a5vefah5m8 8s ease-in-out infinite;
    animation-delay: 1s;
}

.asteroid-field[b-a5vefah5m8] {
    position: absolute;
    width: 200px;
    height: 100px;
    top: 300px;
    right: 20px;
    background: radial-gradient(circle, #6c757d 0%, transparent 70%);
    animation: float-b-a5vefah5m8 10s ease-in-out infinite;
    animation-delay: 3s;
}

.starship[b-a5vefah5m8] {
    position: absolute;
    width: 60px;
    height: 30px;
    background: linear-gradient(45deg, #ff6b6b 0%, #ee5a24 100%);
    top: 100px;
    right: 50px;
    border-radius: 15px;
    animation: float-b-a5vefah5m8 7s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float-b-a5vefah5m8 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services-section[b-a5vefah5m8] {
    position: relative;
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    color: white;
}

.service-card[b-a5vefah5m8] {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

.service-card:hover[b-a5vefah5m8] {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.service-icon[b-a5vefah5m8] {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card h4[b-a5vefah5m8] {
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.service-card p[b-a5vefah5m8] {
    color: #6c757d;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-tech[b-a5vefah5m8] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag[b-a5vefah5m8] {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Vision Section */
.vision-section[b-a5vefah5m8] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vision-text[b-a5vefah5m8] {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.vision-stats[b-a5vefah5m8] {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item[b-a5vefah5m8] {
    text-align: center;
}

.stat-number[b-a5vefah5m8] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label[b-a5vefah5m8] {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section[b-a5vefah5m8] {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.cta-section h3[b-a5vefah5m8] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p[b-a5vefah5m8] {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-buttons[b-a5vefah5m8] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title[b-a5vefah5m8] {
        font-size: 2.5rem;
    }
    
    .hero-subtitle[b-a5vefah5m8] {
        font-size: 1.2rem;
    }
    
    .section-title[b-a5vefah5m8] {
        font-size: 2rem;
    }
    
    .feature-grid[b-a5vefah5m8] {
        grid-template-columns: 1fr;
    }
    
    .vision-stats[b-a5vefah5m8] {
        gap: 2rem;
    }
    
    .cta-buttons[b-a5vefah5m8] {
        flex-direction: column;
        align-items: center;
    }
    
    .space-scene[b-a5vefah5m8] {
        height: 300px;
    }
    
    .planet-1[b-a5vefah5m8], .planet-2[b-a5vefah5m8] {
        width: 60px;
        height: 60px;
    }
    
    .space-station[b-a5vefah5m8] {
        width: 60px;
        height: 40px;
    }
    
    .worlds-section[b-a5vefah5m8] {
        padding: 4rem 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title[b-a5vefah5m8] {
        font-size: 2rem;
    }
    
    .hero-description[b-a5vefah5m8] {
        font-size: 1rem;
    }
    
    .section-title[b-a5vefah5m8] {
        font-size: 1.75rem;
    }
    
    .title-accent[b-a5vefah5m8] {
        font-size: 1.2rem;
    }
    
    .worlds-section[b-a5vefah5m8] {
        padding: 3rem 1rem;
    }
}
/* /Components/Pages/Services.razor.rz.scp.css */
/* About Page Styles - Space Theme */

/* Container and Global Styles */
.about-container[b-fwh3kswwx9] {
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.hero-section[b-fwh3kswwx9],
.worlds-section[b-fwh3kswwx9],
.services-section[b-fwh3kswwx9],
.vision-section[b-fwh3kswwx9],
.cta-section[b-fwh3kswwx9] {
    scroll-margin-top: 1rem;
}

/* Hero Section */
.hero-section[b-fwh3kswwx9] {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Animated Stars Background */
.stars[b-fwh3kswwx9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="1" fill="white"/><circle cx="300" cy="200" r="0.5" fill="white"/><circle cx="500" cy="150" r="1.5" fill="white"/><circle cx="700" cy="300" r="0.8" fill="white"/><circle cx="900" cy="250" r="1.2" fill="white"/><circle cx="150" cy="400" r="0.6" fill="white"/><circle cx="350" cy="500" r="1" fill="white"/><circle cx="550" cy="450" r="0.7" fill="white"/><circle cx="750" cy="600" r="1.3" fill="white"/><circle cx="950" cy="550" r="0.9" fill="white"/><circle cx="200" cy="700" r="1.1" fill="white"/><circle cx="400" cy="800" r="0.8" fill="white"/><circle cx="600" cy="750" r="1.4" fill="white"/><circle cx="800" cy="900" r="0.6" fill="white"/><circle cx="50" cy="950" r="1.2" fill="white"/></svg>') repeat;
    animation: twinkle-b-fwh3kswwx9 20s linear infinite;
}

.twinkling[b-fwh3kswwx9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="250" cy="50" r="0.8" fill="rgba(255,255,255,0.8)"/><circle cx="450" cy="100" r="0.5" fill="rgba(255,255,255,0.6)"/><circle cx="650" cy="75" r="1.1" fill="rgba(255,255,255,0.7)"/><circle cx="850" cy="125" r="0.7" fill="rgba(255,255,255,0.5)"/><circle cx="150" cy="300" r="0.9" fill="rgba(255,255,255,0.8)"/><circle cx="350" cy="350" r="0.6" fill="rgba(255,255,255,0.6)"/><circle cx="550" cy="325" r="1.2" fill="rgba(255,255,255,0.7)"/><circle cx="750" cy="375" r="0.8" fill="rgba(255,255,255,0.5)"/><circle cx="950" cy="325" r="1" fill="rgba(255,255,255,0.8)"/><circle cx="100" cy="600" r="0.7" fill="rgba(255,255,255,0.6)"/><circle cx="300" cy="650" r="1.1" fill="rgba(255,255,255,0.7)"/><circle cx="500" cy="625" r="0.8" fill="rgba(255,255,255,0.5)"/><circle cx="700" cy="675" r="1.3" fill="rgba(255,255,255,0.8)"/><circle cx="900" cy="625" r="0.9" fill="rgba(255,255,255,0.6)"/><circle cx="50" cy="850" r="1.2" fill="rgba(255,255,255,0.7)"/></svg>') repeat;
    animation: twinkle-b-fwh3kswwx9 15s linear infinite reverse;
}

@keyframes twinkle-b-fwh3kswwx9 {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-1000px); }
}

.hero-title[b-fwh3kswwx9] {
    font-size: 4rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
    animation: fadeInUp-b-fwh3kswwx9 1s ease-out;
}

.hero-subtitle[b-fwh3kswwx9] {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: #17a2b8;
    margin-top: 0.5rem;
    animation: fadeInUp-b-fwh3kswwx9 1s ease-out 0.3s both;
}

.hero-description[b-fwh3kswwx9] {
    font-size: 1.25rem;
    color: #adb5bd;
    margin-bottom: 2rem;
    animation: fadeInUp-b-fwh3kswwx9 1s ease-out 0.6s both;
}

.hero-buttons[b-fwh3kswwx9] {
    animation: fadeInUp-b-fwh3kswwx9 1s ease-out 0.9s both;
}

@keyframes fadeInUp-b-fwh3kswwx9 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Worlds Section */
.worlds-section-bak[b-fwh3kswwx9] {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.worlds-section[b-fwh3kswwx9] {
    position: relative;
    min-height: 100vh;
    padding: 6rem 4rem;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    color: white;
}

.worlds-section .container[b-fwh3kswwx9],
.worlds-section .worlds-visual[b-fwh3kswwx9],
.services-section .container[b-fwh3kswwx9] {
    position: relative;
    z-index: 1;
}

.section-title[b-fwh3kswwx9] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.title-accent[b-fwh3kswwx9] {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #17a2b8;
    margin-top: 0.5rem;
}

.section-description[b-fwh3kswwx9] {
    font-size: 1.1rem;
    color: #adb5bd;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Feature Grid */
.feature-grid[b-fwh3kswwx9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item[b-fwh3kswwx9] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #007bff;
}

.feature-item:hover[b-fwh3kswwx9] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon[b-fwh3kswwx9] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4[b-fwh3kswwx9] {
    color: #212529;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-item p[b-fwh3kswwx9] {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Worlds Highlights */
.worlds-highlights[b-fwh3kswwx9] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.worlds-highlights h4[b-fwh3kswwx9] {
    color: #212529;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.highlights-list[b-fwh3kswwx9] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li[b-fwh3kswwx9] {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    color: #495057;
    line-height: 1.6;
}

.highlights-list li:last-child[b-fwh3kswwx9] {
    border-bottom: none;
}

.highlights-list strong[b-fwh3kswwx9] {
    color: #007bff;
    font-weight: 600;
}

/* Realms Story - Erra & El Shalel */
.worlds-story[b-fwh3kswwx9] {
    background: linear-gradient(135deg, rgba(71, 211, 255, 0.12) 0%, rgba(71, 75, 255, 0.08) 100%);
    border: 1px solid rgba(71, 211, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.worlds-story h4[b-fwh3kswwx9] {
    color: #212529;
    font-weight: 600;
}

/* Space Scene Animation */
.space-scene[b-fwh3kswwx9] {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.planet[b-fwh3kswwx9] {
    position: absolute;
    border-radius: 50%;
    animation: float-b-fwh3kswwx9 6s ease-in-out infinite;
}

.planet-1[b-fwh3kswwx9] {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.planet-2[b-fwh3kswwx9] {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
    top: 200px;
    right: 80px;
    animation-delay: 2s;
}

.space-station[b-fwh3kswwx9] {
    position: absolute;
    width: 100px;
    height: 60px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    animation: float-b-fwh3kswwx9 8s ease-in-out infinite;
    animation-delay: 1s;
}

.asteroid-field[b-fwh3kswwx9] {
    position: absolute;
    width: 200px;
    height: 100px;
    top: 300px;
    right: 20px;
    background: radial-gradient(circle, #6c757d 0%, transparent 70%);
    animation: float-b-fwh3kswwx9 10s ease-in-out infinite;
    animation-delay: 3s;
}

.starship[b-fwh3kswwx9] {
    position: absolute;
    width: 60px;
    height: 30px;
    background: linear-gradient(45deg, #ff6b6b 0%, #ee5a24 100%);
    top: 100px;
    right: 50px;
    border-radius: 15px;
    animation: float-b-fwh3kswwx9 7s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float-b-fwh3kswwx9 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services-section[b-fwh3kswwx9] {
    position: relative;
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    color: white;
}

.service-card[b-fwh3kswwx9] {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card:hover[b-fwh3kswwx9] {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border-color: rgba(23, 162, 184, 0.7);
    background: rgba(255, 255, 255, 0.12);
}

.service-icon[b-fwh3kswwx9] {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card h4[b-fwh3kswwx9] {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.service-card p[b-fwh3kswwx9] {
    color: #adb5bd;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-tech[b-fwh3kswwx9] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag[b-fwh3kswwx9] {
    background: rgba(23, 162, 184, 0.22);
    color: #9ee7f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Vision Section */
.vision-section[b-fwh3kswwx9] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vision-text[b-fwh3kswwx9] {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.vision-stats[b-fwh3kswwx9] {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item[b-fwh3kswwx9] {
    text-align: center;
}

.stat-number[b-fwh3kswwx9] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label[b-fwh3kswwx9] {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section[b-fwh3kswwx9] {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.cta-section h3[b-fwh3kswwx9] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p[b-fwh3kswwx9] {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-buttons[b-fwh3kswwx9] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title[b-fwh3kswwx9] {
        font-size: 2.5rem;
    }
    
    .hero-subtitle[b-fwh3kswwx9] {
        font-size: 1.2rem;
    }
    
    .section-title[b-fwh3kswwx9] {
        font-size: 2rem;
    }
    
    .feature-grid[b-fwh3kswwx9] {
        grid-template-columns: 1fr;
    }
    
    .vision-stats[b-fwh3kswwx9] {
        gap: 2rem;
    }
    
    .cta-buttons[b-fwh3kswwx9] {
        flex-direction: column;
        align-items: center;
    }
    
    .space-scene[b-fwh3kswwx9] {
        height: 300px;
    }
    
    .planet-1[b-fwh3kswwx9], .planet-2[b-fwh3kswwx9] {
        width: 60px;
        height: 60px;
    }
    
    .space-station[b-fwh3kswwx9] {
        width: 60px;
        height: 40px;
    }
    
    .worlds-section[b-fwh3kswwx9] {
        padding: 4rem 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title[b-fwh3kswwx9] {
        font-size: 2rem;
    }
    
    .hero-description[b-fwh3kswwx9] {
        font-size: 1rem;
    }
    
    .section-title[b-fwh3kswwx9] {
        font-size: 1.75rem;
    }
    
    .title-accent[b-fwh3kswwx9] {
        font-size: 1.2rem;
    }
    
    .worlds-section[b-fwh3kswwx9] {
        padding: 3rem 1rem;
    }
}
/* /Components/Pages/User/Login.razor.rz.scp.css */
/* Login dialog — mobile first. Inputs use border-box so padding cannot overflow the card. */
.login-page-container[b-0do737o94r],
.login-page-container *[b-0do737o94r] {
    box-sizing: border-box;
}

.login-page-container[b-0do737o94r] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - var(--topbar-height, 3.5rem) - 2rem);
    padding: 1rem 0.75rem 1.5rem;
}

.login-card[b-0do737o94r] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 1.25rem 1rem 1.15rem;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(22px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.login-header[b-0do737o94r] {
    margin-bottom: 1.15rem;
    text-align: center;
}

.login-header h1[b-0do737o94r] {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 650;
    color: #f8fafc;
}

.login-subtitle[b-0do737o94r] {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.login-form[b-0do737o94r] {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    margin: 0;
}

.login-field[b-0do737o94r] {
    width: 100%;
    min-width: 0;
    margin-bottom: 0.85rem;
}

.login-label[b-0do737o94r] {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e2e8f0;
}

.login-page-container[b-0do737o94r]  .login-input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 2.75rem;
    margin: 0;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.65);
    color: #f8fafc;
    font-size: 1rem;
    line-height: 1.3;
    outline: none;
}

.login-page-container[b-0do737o94r]  .login-input::placeholder {
    color: #94a3b8;
}

.login-page-container[b-0do737o94r]  .login-input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.28);
}

.login-alert[b-0do737o94r] {
    width: 100%;
    margin: 0 0 0.85rem;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
    font-size: 0.88rem;
    word-break: break-word;
}

.btn-login[b-0do737o94r] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 2.75rem;
    margin-top: 0.25rem;
    padding: 0.7rem 1rem;
    border: 0;
    border-radius: 10px;
    color: #fff;
    font-weight: 650;
    cursor: pointer;
    background: linear-gradient(135deg, #6366f1 0%, #2563eb 100%);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.32);
}

.btn-login:hover:not(:disabled)[b-0do737o94r] {
    filter: brightness(1.08);
}

.btn-login:disabled[b-0do737o94r] {
    opacity: 0.65;
    cursor: wait;
}

@media (min-width: 481px) {
    .login-page-container[b-0do737o94r] {
        align-items: center;
        padding: 1.5rem 1.25rem;
    }

    .login-card[b-0do737o94r] {
        max-width: 26rem;
        padding: 1.65rem 1.5rem 1.4rem;
        border-radius: 18px;
    }

    .login-page-container[b-0do737o94r]  .login-input {
        height: 2.85rem;
        padding: 0.7rem 1rem;
    }
}

@media (min-width: 769px) {
    .login-page-container[b-0do737o94r] {
        padding: 2rem 1.5rem;
    }

    .login-card[b-0do737o94r] {
        max-width: 28rem;
        padding: 2rem 1.75rem 1.6rem;
        border-radius: 20px;
    }

    .login-header h1[b-0do737o94r] {
        font-size: 1.55rem;
    }

    .login-page-container[b-0do737o94r]  .login-input {
        height: 3rem;
        padding: 0.75rem 1.1rem;
    }

    .btn-login[b-0do737o94r] {
        min-height: 2.9rem;
    }
}
/* /Components/Shared/Navigation/NavContainer.razor.rz.scp.css */
.nav-container[b-4dqbavirfp] {
    display: flex;
    width: 100%;
    gap: 0.125rem;
}

.nav-container-vertical[b-4dqbavirfp] {
    flex-direction: column;
}

.nav-container-horizontal[b-4dqbavirfp] {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-container-vertical :deep(.nav-entry)[b-4dqbavirfp],
.nav-container-vertical :deep(.unified-nav-item)[b-4dqbavirfp] {
    width: 100%;
}
/* /Components/Shared/Navigation/NavEntry.razor.rz.scp.css */
.nav-entry[b-9v8k2s4z1y] {
    position: relative;
    width: 100%;
}

.nav-entry-horizontal[b-9v8k2s4z1y] {
    display: inline-block;
    width: auto;
}

.nav-entry-link[b-9v8k2s4z1y] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.65rem 1rem;
    text-decoration: none;
    color: var(--text-primary, #E2E8F0);
    background: none;
    border: 1px solid transparent;
    border-radius: var(--radius-md, 0.5rem);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-entry-link:hover[b-9v8k2s4z1y] {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.nav-entry-link.active[b-9v8k2s4z1y] {
    background-color: rgba(139, 92, 246, 0.28);
    border-color: rgba(168, 85, 247, 0.55);
    font-weight: 600;
}

.nav-entry-caret[b-9v8k2s4z1y] {
    margin-left: auto;
    padding-left: 0.5rem;
    transition: transform 0.25s ease;
    display: inline-flex;
}

.nav-entry-caret.expanded[b-9v8k2s4z1y] {
    transform: rotate(180deg);
}

.nav-entry-caret i[b-9v8k2s4z1y] {
    font-size: 0.75rem;
}

.nav-entry-children[b-9v8k2s4z1y] {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.nav-entry-children.show[b-9v8k2s4z1y] {
    max-height: 32rem;
}

.nav-entry-children.as-dropdown[b-9v8k2s4z1y] {
    padding-left: 0.75rem;
}

.nav-entry-children.inline-expanded[b-9v8k2s4z1y] {
    display: flex;
    flex-direction: column;
}

.nav-entry-horizontal .nav-entry-children.as-dropdown[b-9v8k2s4z1y] {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: var(--z-modal, 1000);
    min-width: 12.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-md, 0.5rem);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    max-height: none;
}

.nav-entry-horizontal .nav-entry-children.show[b-9v8k2s4z1y] {
    display: block;
}

.nav-entry-horizontal .nav-entry-children:not(.show)[b-9v8k2s4z1y] {
    display: none;
}
/* /Components/Shared/Navigation/UnifiedNavItem.razor.rz.scp.css */
.unified-nav-item[b-yc9mjuclpa] {
    position: relative;
    margin-bottom: 0.25rem;
    width: 100%;
}

.unified-nav-link[b-yc9mjuclpa],
:deep(.unified-nav-link)[b-yc9mjuclpa] {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    padding: 0.75rem 1rem;
    color: var(--text-primary, #F8FAFC);
    text-decoration: none;
    text-align: left;
    font: inherit;
    font-weight: 500;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.unified-nav-link > *:first-child[b-yc9mjuclpa],
:deep(.unified-nav-link > *:first-child)[b-yc9mjuclpa] {
    flex-shrink: 0;
    min-width: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.unified-nav-link:hover[b-yc9mjuclpa],
:deep(.unified-nav-link:hover)[b-yc9mjuclpa] {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(168, 85, 247, 0.28) 100%);
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transform: translateX(2px);
}

.unified-nav-link.active[b-yc9mjuclpa],
:deep(.unified-nav-link.active)[b-yc9mjuclpa],
.unified-nav-item.is-current .unified-nav-link[b-yc9mjuclpa],
.unified-nav-item.is-current :deep(.unified-nav-link)[b-yc9mjuclpa] {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5) 0%, rgba(168, 85, 247, 0.4) 100%);
    border-color: rgba(168, 85, 247, 0.7);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
    font-weight: 600;
}

.unified-nav-item.collapsed .unified-nav-link[b-yc9mjuclpa],
.unified-nav-item.collapsed :deep(.unified-nav-link)[b-yc9mjuclpa] {
    justify-content: center;
    padding: 0.75rem 0.5rem;
    transform: none;
}

.unified-nav-item.collapsed .nav-text[b-yc9mjuclpa],
.unified-nav-item.collapsed .dropdown-caret[b-yc9mjuclpa] {
    display: none;
}

.nav-text[b-yc9mjuclpa] {
    flex: 1;
    min-width: 0;
    margin-left: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-caret[b-yc9mjuclpa] {
    flex-shrink: 0;
    margin-left: auto;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.dropdown-caret.expanded[b-yc9mjuclpa] {
    transform: rotate(180deg);
}

.sidebar-submenu[b-yc9mjuclpa] {
    margin-top: 0.25rem;
    padding: 0.25rem 0 0.25rem 0.5rem;
    border-radius: 0.375rem;
    background-color: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-submenu .unified-nav-link[b-yc9mjuclpa] {
    padding-left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-tooltip[b-yc9mjuclpa] {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0.5rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    font-size: 0.875rem;
    color: var(--text-primary, #F8FAFC);
    background-color: var(--bg-elevated, #334155);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: var(--z-modal, 1000);
    pointer-events: none;
}

.nav-tooltip[b-yc9mjuclpa]::before {
    content: "";
    position: absolute;
    left: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0.25rem solid transparent;
    border-right-color: var(--bg-elevated, #334155);
}

.unified-nav-topbar[b-yc9mjuclpa] {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
}

.unified-nav-topbar-link[b-yc9mjuclpa],
:deep(.unified-nav-topbar-link)[b-yc9mjuclpa] {
    width: auto;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary, #CBD5E1);
    gap: 0.35rem;
}

.unified-nav-topbar-link:hover[b-yc9mjuclpa],
:deep(.unified-nav-topbar-link:hover)[b-yc9mjuclpa] {
    transform: none;
}

.unified-nav-topbar.is-current :deep(.unified-nav-topbar-link)[b-yc9mjuclpa],
.unified-nav-topbar :deep(.unified-nav-topbar-link.active)[b-yc9mjuclpa] {
    color: var(--text-primary, #F8FAFC);
}

.topbar-dropdown[b-yc9mjuclpa] {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    z-index: var(--z-modal, 1000);
    min-width: 12.5rem;
    padding: 0.5rem 0;
    background-color: var(--bg-elevated, #334155);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.emoji-icon[b-yc9mjuclpa] {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-tooltip[b-yc9mjuclpa] {
        display: none;
    }

    .topbar-dropdown[b-yc9mjuclpa] {
        right: 0;
        left: auto;
    }
}
