/* /Layout/MainLayout.razor.rz.scp.css */
:global(body)[b-jncam7nvb5] {
    margin: 0;
    min-height: 100vh;
    background: var(--surface-gradient);
    color: #eff0ff;
    font-family: 'Outfit', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.01em;
}

.stellar-shell[b-jncam7nvb5] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.stellar-shell[b-jncam7nvb5]::before {
    content: '';
    position: absolute;
    inset: -20% 10% auto;
    height: 60vh;
    background: radial-gradient(circle, rgba(111, 76, 255, 0.35), transparent 60%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.stellar-shell[b-jncam7nvb5]::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 138, 244, 0.08) 0, transparent 35%),
        radial-gradient(circle at 80% 0, rgba(92, 255, 210, 0.08) 0, transparent 45%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(300deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 120px 120px, 240px 240px;
    opacity: 0.65;
    pointer-events: none;
}

.stellar-header[b-jncam7nvb5] {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem clamp(1.5rem, 4vw, 4rem);
    backdrop-filter: blur(16px);
    background: var(--shell-header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stellar-brand[b-jncam7nvb5] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-mark[b-jncam7nvb5] {
    background: linear-gradient(135deg, #ff8af4, #8c7dff);
    color: #050510;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    box-shadow: 0 0 25px rgba(255, 138, 244, 0.45);
}

.brand-copy strong[b-jncam7nvb5] {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.brand-copy small[b-jncam7nvb5] {
    opacity: 0.7;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
}

.header-cta[b-jncam7nvb5] {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8cf5ff;
}

.pulse-dot[b-jncam7nvb5] {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #5ffbf1;
    box-shadow: 0 0 12px rgba(95, 251, 241, 0.85);
    animation: pulse-b-jncam7nvb5 1.8s ease-in-out infinite;
}

.stellar-main[b-jncam7nvb5] {
    flex: 1;
    padding: clamp(1.5rem, 4vw, 4rem);
    position: relative;
    z-index: 1;
    background: var(--main-backdrop);
}

.stellar-main[b-jncam7nvb5]::before {
    content: '';
    position: absolute;
    inset: 3rem 2rem;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(4, 6, 12, 0.35);
    filter: blur(0);
    z-index: -1;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.stellar-footer[b-jncam7nvb5] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem clamp(1.5rem, 4vw, 4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--shell-footer-bg);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.theme-toggle[b-jncam7nvb5] {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #fdfdff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-toggle__icon[b-jncam7nvb5] {
    font-size: 1rem;
}

.theme-toggle:hover[b-jncam7nvb5] {
    opacity: 0.85;
    transform: translateY(-1px);
}

@keyframes pulse-b-jncam7nvb5 {
    0% { transform: scale(1); opacity: 1; }
    60% { transform: scale(1.6); opacity: 0.3; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 900px) {
    .stellar-main[b-jncam7nvb5]::before {
        inset: 1.5rem 1rem;
    }

    .stellar-header[b-jncam7nvb5] {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-cta[b-jncam7nvb5] {
        margin-left: 0;
    }

    .stellar-footer[b-jncam7nvb5] {
        flex-direction: column;
        text-align: center;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.stellar-nav[b-4gv5e9tixi] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.stellar-nav a[b-4gv5e9tixi] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.15rem;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.stellar-nav a[b-4gv5e9tixi]::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 138, 244, 0.8), rgba(140, 245, 255, 0.8));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.stellar-nav a:hover[b-4gv5e9tixi],
.stellar-nav a:focus-visible[b-4gv5e9tixi] {
    color: #ffffff;
}

.stellar-nav a:hover[b-4gv5e9tixi]::after,
.stellar-nav a:focus-visible[b-4gv5e9tixi]::after {
    transform: scaleX(1);
}

.stellar-nav .nav-cta[b-4gv5e9tixi] {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .stellar-nav[b-4gv5e9tixi] {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }
}
