/* /Layouts/MainLayout.razor.rz.scp.css */
.app-shell[b-zmfem8ho9f] {
    min-height: 100vh;
    background: var(--bg-base);
    color: var(--text-primary);
}

.top-nav[b-zmfem8ho9f] {
    position: sticky;
    top: 0;
    z-index: 120;
    background: rgba(9, 12, 17, 0.88);
    backdrop-filter: blur(8px);
}

.top-nav-inner[b-zmfem8ho9f] {
    height: 3.6rem;
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 0 var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(198, 214, 239, 0.08);
}

.brand-link[b-zmfem8ho9f] {
    color: #d4e2f8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.top-links[b-zmfem8ho9f] {
    display: none;
    align-items: center;
    gap: 1rem;
}

.top-link[b-zmfem8ho9f] {
    color: #9fb0cb;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.16rem 0;
    transition: color 140ms ease;
}

.top-link.active[b-zmfem8ho9f],
.top-link:hover[b-zmfem8ho9f] {
    color: #e7f0ff;
}

.mobile-menu-button[b-zmfem8ho9f] {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(198, 214, 239, 0.14);
    background: transparent;
    display: grid;
    gap: 0.2rem;
    align-content: center;
    justify-content: center;
}

.mobile-menu-button span[b-zmfem8ho9f] {
    display: block;
    width: 0.94rem;
    height: 0.1rem;
    background: #d7e5fd;
}

.drawer-overlay[b-zmfem8ho9f] {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(3, 7, 13, 0.72);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.drawer-overlay.open[b-zmfem8ho9f] {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer[b-zmfem8ho9f] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 130;
    width: 82vw;
    max-width: 320px;
    background: linear-gradient(180deg, var(--bg-panel), var(--bg-elevated));
    border-right: 1px solid rgba(198, 214, 239, 0.16);
    box-shadow: 10px 0 28px rgba(0, 0, 0, 0.33);
    transform: translateX(-102%);
    transition: transform 190ms ease;
    padding: var(--space-4);
    display: grid;
    align-content: start;
    gap: var(--space-4);
}

.mobile-drawer.open[b-zmfem8ho9f] {
    transform: translateX(0);
}

.drawer-header[b-zmfem8ho9f] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-3);
    border-bottom: 1px solid rgba(198, 214, 239, 0.1);
}

.drawer-brand[b-zmfem8ho9f] {
    color: #d6e6ff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.drawer-close-button[b-zmfem8ho9f] {
    min-height: 2rem;
    border: 1px solid rgba(198, 214, 239, 0.18);
    border-radius: var(--radius-sm);
    background: transparent;
    color: #cfe0fa;
    font-size: 0.78rem;
    padding: 0.22rem 0.58rem;
}

.drawer-body[b-zmfem8ho9f] {
    display: grid;
    gap: var(--space-3);
}

.drawer-links[b-zmfem8ho9f] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.36rem;
}

.drawer-link[b-zmfem8ho9f] {
    display: flex;
    align-items: center;
    gap: 0.68rem;
    min-height: 2.8rem;
    padding: 0.55rem 0.66rem;
    border-radius: 0.52rem;
    color: #99aac6;
    text-decoration: none;
    font-size: 0.86rem;
    background: transparent;
    transition: color 140ms ease, background-color 140ms ease;
}

.drawer-link.active[b-zmfem8ho9f],
.drawer-link:hover[b-zmfem8ho9f] {
    color: #e4eefe;
    background: rgba(107, 210, 255, 0.08);
}

[b-zmfem8ho9f] .drawer-icon {
    width: 1rem;
    height: 1rem;
    opacity: 0.9;
}

.content-shell[b-zmfem8ho9f] {
    padding: var(--space-6) var(--space-4) var(--space-14);
}

@media (min-width: 920px) {
    .top-nav-inner[b-zmfem8ho9f] {
        padding: 0 var(--space-8);
    }

    .top-links[b-zmfem8ho9f] {
        display: inline-flex;
    }

    .mobile-menu-button[b-zmfem8ho9f],
    .mobile-drawer[b-zmfem8ho9f],
    .drawer-overlay[b-zmfem8ho9f] {
        display: none;
    }

    .content-shell[b-zmfem8ho9f] {
        padding: var(--space-8) var(--space-8) var(--space-14);
    }
}

@media (prefers-reduced-motion: reduce) {
    .drawer-overlay[b-zmfem8ho9f],
    .mobile-drawer[b-zmfem8ho9f],
    .top-link[b-zmfem8ho9f],
    .drawer-link[b-zmfem8ho9f],
    .drawer-close-button[b-zmfem8ho9f] {
        transition: none;
    }
}
