@import '_content/Nihilo.UI/Nihilo.UI.bundle.scp.css';

/* _content/Nihilo.Web/UI/Components/NihiloBrand.razor.rz.scp.css */
/* =========================
   Base Layout
========================= */

.nihilo-brand[b-mhc6z00dhw] {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    gap: 0;
    padding:5px 10px;
}

/* =========================
   Text Styling + Ease-Out
========================= */

.brand-prefix[b-mhc6z00dhw],
.brand-suffix[b-mhc6z00dhw] {
    font-size: 30px;
    font-weight: 400;
    color: var(--nh-color-text);
    display: inline-block;

    /* Enables smooth "ease-out" when hover ends */
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);

    /* Ensure clean baseline */
    transform: translate(0, 0) rotate(0deg) scale(1);

    /* Prevent flicker on some browsers */
    will-change: transform;
}

/* =========================
   Icon Styling
========================= */

.brand-icon[b-mhc6z00dhw] {
    width: 40px;
    height: auto;
    margin:-5px;
    transition: transform 0.4s ease;
}

/* =========================
   Animations
========================= */

/* Infinite spin for the icon */
@keyframes spin-infinite-b-mhc6z00dhw {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Organic float using CSS variables */
@keyframes nihilo-float-b-mhc6z00dhw {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(var(--x1), var(--y1)) rotate(var(--r1)) scale(var(--s1));
    }
    50% {
        transform: translate(var(--x2), var(--y2)) rotate(var(--r2)) scale(var(--s2));
    }
    75% {
        transform: translate(var(--x3), var(--y3)) rotate(var(--r3)) scale(var(--s3));
    }
    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

/* =========================
   Hover Behavior
========================= */

/* Floating letters */
.nihilo-brand:hover .brand-prefix[b-mhc6z00dhw],
.nihilo-brand:hover .brand-suffix[b-mhc6z00dhw] {
    animation: nihilo-float-b-mhc6z00dhw var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

/* Spinning icon */
.nihilo-brand:hover .brand-icon[b-mhc6z00dhw] {
    animation: spin-infinite-b-mhc6z00dhw 5s linear infinite;
}

/* =========================
   Optional Polish
========================= */
/* _content/Nihilo.Web/UI/Components/NihiloSidebarNav.razor.rz.scp.css */
/* Components/NihiloSidebarNav.razor.css */

/* ─── Shell ─────────────────────────────────────────────────────────── */

.sidebar-nav[b-wvcus8tyj3] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px 0;
    width: 100%;
}

/* ─── Section ────────────────────────────────────────────────────────── */

.sidebar-section[b-wvcus8tyj3] {
    display: flex;
    flex-direction: column;
}

.sidebar-section-header[b-wvcus8tyj3] {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 20px 6px 16px;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 8px;
    transition: background-color 120ms ease;
}

    .sidebar-section-header:hover[b-wvcus8tyj3] {
        background-color: var(--nh-color-bg-surface-hover, rgba(255,255,255,0.05));
    }

.sidebar-section-label[b-wvcus8tyj3] {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nh-color-text-muted, #6b7280);
    font-family: var(--nh-font-mono, ui-monospace, monospace);
    user-select: none;
}

/* ─── Chevron ────────────────────────────────────────────────────────── */

.sidebar-chevron[b-wvcus8tyj3] {
    display: flex;
    align-items: center;
    color: var(--nh-color-text-muted, #6b7280);
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.sidebar-section-header.expanded .sidebar-chevron[b-wvcus8tyj3] {
    transform: rotate(180deg);
}

/* ─── Collapsible container ──────────────────────────────────────────── */

.sidebar-links-container[b-wvcus8tyj3] {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .sidebar-links-container.expanded[b-wvcus8tyj3] {
        grid-template-rows: 1fr;
    }

.sidebar-links[b-wvcus8tyj3] {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 4px 0 8px 0;
}

/* ─── Links ──────────────────────────────────────────────────────────── */

.sidebar-link[b-wvcus8tyj3] {
    all: unset;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px 6px 32px;
    margin: 0 8px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 120ms ease, color 120ms ease;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--nh-color-text-secondary, #9ca3af);
    font-family: var(--nh-font-sans, system-ui, sans-serif);
    line-height: 1.4;
}

    .sidebar-link:hover[b-wvcus8tyj3] {
        background-color: var(--nh-color-bg-surface-hover, rgba(255,255,255,0.05));
        color: var(--nh-color-text-primary, #f3f4f6);
    }

    /* Active state */

    .sidebar-link.active[b-wvcus8tyj3] {
        color: var(--nh-color-text-primary, #f3f4f6);
        background-color: var(--nh-color-bg-surface-active, rgba(255,255,255,0.08));
        font-weight: 500;
    }

/* Left pip on active link */

.sidebar-link-pip[b-wvcus8tyj3] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 14px;
    border-radius: 99px;
    background-color: var(--nh-color-accent, #60a5fa);
    flex-shrink: 0;
}

.sidebar-link-label[b-wvcus8tyj3] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ─── Empty state ────────────────────────────────────────────────────── */

.sidebar-empty[b-wvcus8tyj3] {
    padding: 24px 20px;
    font-size: 12px;
    color: var(--nh-color-text-muted, #6b7280);
    font-family: var(--nh-font-mono, ui-monospace, monospace);
    text-align: center;
}
/* _content/Nihilo.Web/UI/Pages/Main/Index.razor.rz.scp.css */
/* ── Hero ──────────────────────────────────────────────── */
.home-hero[b-7edir7d43e] {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 40px;
}

.home-hero-bg[b-7edir7d43e] {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center 35%;
    opacity: 0.75;
    animation: hero-drift-b-7edir7d43e 40s ease-in-out infinite alternate;
}

@keyframes hero-drift-b-7edir7d43e {
    0% {
        transform: scale(1.08) translate(0%, 0%);
    }

    50% {
        transform: scale(1.14) translate(-1.5%, 1%);
    }

    100% {
        transform: scale(1.1) translate(1%, 1.5%);
    }
}

.home-hero-overlay[b-7edir7d43e] {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(20,14,30,0.15) 0%, rgba(20,14,30,0.85) 100% ), radial-gradient( circle at center, transparent 40%, rgba(0,0,0,0.35) 100% );
}

.home-hero-content[b-7edir7d43e] {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 28px 10%;
}

.home-eyebrow[b-7edir7d43e] {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(191,160,224,0.9);
    font-weight: 500;
    margin: 0 0 8px;
}

.home-title[b-7edir7d43e] {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    color: rgba(255,255,255,0.95);
    margin: 0 0 10px;
}

.home-desc[b-7edir7d43e] {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    max-width: 380px;
    margin: 0;
}

/* ── Signup ─────────────────────────────────────────────── */

.home-signup-section[b-7edir7d43e] {
    margin: 0 10%;
    margin-bottom: 40px;
}

.home-hero-inner[b-7edir7d43e] {
    display: flex;
    gap: 24px;
    align-items: stretch;
    background: var(--nh-color-bg-surface);
    border: 0.5px solid var(--nh-color-border-subtle);
    border-radius: 12px;
    padding: 28px;
}

.home-hero-img[b-7edir7d43e] {
    width: 160px;
    flex-shrink: 0;
    /*border-radius: 8px;
    overflow: hidden;
    border: 0.5px solid var(--nh-color-border);*/
}

    .home-hero-img img[b-7edir7d43e] {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.home-form-side[b-7edir7d43e] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-form-heading[b-7edir7d43e] {
    font-size: 18px;
    font-weight: 500;
    color: var(--nh-color-text);
    margin: 0 0 5px;
}

.home-form-sub[b-7edir7d43e] {
    font-size: 14px;
    color: var(--nh-color-text-muted);
    line-height: 1.6;
    margin: 0 0 18px;
}

.home-name-row[b-7edir7d43e] {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

    .home-name-row .home-field[b-7edir7d43e] {
        flex: 1;
    }

.home-field[b-7edir7d43e] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.home-field-label[b-7edir7d43e] {
    font-size: 12px;
    color: var(--nh-color-text-muted);
}

.home-submit-row[b-7edir7d43e] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.home-success[b-7edir7d43e] {
    font-size: 13px;
    color: var(--nh-color-success-icon-fg);
}

/* ── Divider ────────────────────────────────────────────── */

.home-divider[b-7edir7d43e] {
    border: none;
    border-top: 0.5px solid var(--nh-color-border-subtle);
    margin: 0 0 32px;
}

/* ── Jettison ───────────────────────────────────────────── */

.home-jettison[b-7edir7d43e] {
    padding: 12px 10% 80px;
}

.home-jettison-inner[b-7edir7d43e] {
    max-width: 620px;
}

.home-jettison-header[b-7edir7d43e] {
    margin-bottom: 32px;
}

.home-jettison-title[b-7edir7d43e] {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--nh-color-text);
    margin: 0;
}

.home-jettison-body[b-7edir7d43e] {
    border-left: 1px solid var(--nh-color-border-subtle);
    padding-left: 24px;
}

.home-jettison-lead[b-7edir7d43e] {
    font-size: 18px;
    line-height: 1.6;
    color: var(--nh-color-text);
    margin: 0 0 16px;
}

.home-jettison-desc[b-7edir7d43e] {
    font-size: 14px;
    line-height: 1.8;
    color: var(--nh-color-text-muted);
    margin: 0 0 14px;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 500px) {
    .home-hero[b-7edir7d43e] {
        height: 260px;
    }

    .home-hero-content[b-7edir7d43e] {
        padding: 20px;
    }

    .home-title[b-7edir7d43e] {
        font-size: 26px;
    }

    .home-signup-section[b-7edir7d43e] {
        margin: 0 0 32px;
    }

    .home-hero-inner[b-7edir7d43e] {
        flex-direction: column;
    }

    .home-hero-img[b-7edir7d43e] {
        display: none;
    }

    .home-name-row[b-7edir7d43e] {
        flex-direction: column;
    }
}
/* _content/Nihilo.Web/UI/Pages/Main/MainLayout.razor.rz.scp.css */
.page[b-eqm2039ddn] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-eqm2039ddn] {
    background-color: var(--color-bg);
}

.top-row[b-eqm2039ddn] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-eqm2039ddn]  a, .top-row[b-eqm2039ddn]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-eqm2039ddn]  a:hover, .top-row[b-eqm2039ddn]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-eqm2039ddn]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-eqm2039ddn] {
        justify-content: space-between;
    }

    .top-row[b-eqm2039ddn]  a, .top-row[b-eqm2039ddn]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-eqm2039ddn] {
        flex-direction: row;
    }

    .sidebar[b-eqm2039ddn] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-eqm2039ddn] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-eqm2039ddn]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-eqm2039ddn], article[b-eqm2039ddn] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

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

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


.nh-navbar[b-eqm2039ddn] {
    background-color: var(--nh-color-bg-surface);
    border:var(--nh-color-border-strong);
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Core/CoreIndex.razor.rz.scp.css */

.core-marketing[b-9g4hrunfe2] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    color: var(--nh-text, #e8e8e8);
}

/* ── HERO ── */
.hero[b-9g4hrunfe2] {
    padding: 5rem 0 4rem;
}

.hero-eyebrow[b-9g4hrunfe2] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--nh-blue, #5b9bd5);
    margin-bottom: 1.5rem;
}

.hero-title[b-9g4hrunfe2] {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0 0 1.25rem;
    color: var(--nh-text, #e8e8e8);
}

.hero-title-accent[b-9g4hrunfe2] {
    color: var(--nh-color-accent, #d4a843);
}

.hero-subtitle[b-9g4hrunfe2] {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 520px;
    color: var(--nh-color-text-secondary, #888);
    margin: 0 0 2rem;
}

.hero-cta-row[b-9g4hrunfe2] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    font-size: 0.9rem;
}

.hero-free-badge[b-9g4hrunfe2] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nh-bg, #111);
    background: var(--nh-blue, #5b9bd5);
    padding: 0.25em 0.65em;
    border-radius: 2px;
}

.hero-rule[b-9g4hrunfe2] {
    height: 1px;
    background: linear-gradient(to right, var(--nh-blue, #5b9bd5) 0%, transparent 60%);
    opacity: 0.25;
}

/* ── FEATURES ── */
.features[b-9g4hrunfe2] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    margin: 0 -2rem;
    background: var(--nh-border, #2a2a2a);
    border-top: 1px solid var(--nh-border, #2a2a2a);
    border-bottom: 1px solid var(--nh-border, #2a2a2a);
}

.feature-card[b-9g4hrunfe2] {
    background: var(--nh-bg, #111);
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    transition: background 0.15s ease;
}

    .feature-card:hover[b-9g4hrunfe2] {
        background: var(--nh-bg-raised, #161616);
    }

[b-9g4hrunfe2] .feature-icon {
    font-size: 1.5rem !important;
    color: var(--nh-blue, #5b9bd5);
    margin-bottom: 0.15rem;
    line-height: 1;
    opacity: 0.85;
}


.feature-name-row[b-9g4hrunfe2] {
    display: flex;
    gap: 5px;
    align-items: center;
}

.feature-name[b-9g4hrunfe2] {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--nh-text, #e8e8e8);
}

.feature-desc[b-9g4hrunfe2] {
    font-size: 0.855rem;
    line-height: 1.65;
    color: var(--nh-color-text-secondary, #888);
    margin: 0;
    flex: 1;
}

    .feature-desc code[b-9g4hrunfe2] {
        font-size: 0.82rem;
        color: var(--nh-yellow, #d4a843);
        background: transparent;
    }

.feature-card a[b-9g4hrunfe2],
.feature-card :deep(a)[b-9g4hrunfe2] {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    margin-top: 0.4rem;
    align-self: flex-start;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.feature-card:hover a[b-9g4hrunfe2],
.feature-card:hover :deep(a)[b-9g4hrunfe2] {
    opacity: 1;
}

/* ── PHILOSOPHY ── */
.philosophy[b-9g4hrunfe2] {
    padding: 4.5rem 0 0;
}

.philosophy-inner[b-9g4hrunfe2] {
    max-width: 600px;
}

.philosophy-label[b-9g4hrunfe2] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--nh-blue, #5b9bd5);
    margin-bottom: 1.25rem;
}

.philosophy-quote[b-9g4hrunfe2] {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: var(--nh-yellow, #d4a843);
    margin: 0 0 1.25rem;
    padding: 0;
    border: none;
    opacity: 0.9;
}

.philosophy-body[b-9g4hrunfe2] {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--nh-color-text-secondary, #888);
    margin: 0;
}


/* _content/Nihilo.Web/UI/Pages/Plugins/Core/CoreLayout.razor.rz.scp.css */

.plugin-layout-base[b-ueqpvz23ud] {
    height:100%;
    background-color: var(--nh-color-bg-surface);
    display:flex;
    flex-direction:column;
}

.plugin-layout-header[b-ueqpvz23ud] {

}

.plugin-layout-sidebar[b-ueqpvz23ud] {
    min-width:300px;
    padding:20px;
    
}

[b-ueqpvz23ud] .plugin-layout-body-outer {
    min-width: 0; /* ← this is the fix */
    flex: 1;
    width:100%;
    overflow-y: auto;
    /*height: 100%;*/
    padding-bottom: 10px;
}

.plugin-layout-body[b-ueqpvz23ud] {
    background-color: var(--nh-color-bg);
    border: solid 1px var(--nh-color-border);
    border-radius: var(--nh-border-radius);
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.plugin-layout-sections[b-ueqpvz23ud] {
    min-width: 200px;
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Core/Libraries/CoreDocs_ArrayLibrary.razor.rz.scp.css */
.first-column[b-xq0owt6o6a] {
    background-color: var(--nh-color-accent-darkest);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    min-width: 10rem;
}

.second-column[b-xq0owt6o6a] {
    color: var(--nh-color-text-muted);
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Core/Libraries/CoreDocs_MapLibrary.razor.rz.scp.css */
.first-column[b-dpp0k97igh] {
    background-color: var(--nh-color-accent-darkest);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    min-width: 10rem;
}

.second-column[b-dpp0k97igh] {
    color: var(--nh-color-text-muted);
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Core/Libraries/CoreDocs_StringLibrary.razor.rz.scp.css */
.first-column[b-hfi2oxcdbb] {
    background-color: var(--nh-color-accent-darkest);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    min-width: 10rem;
}

.second-column[b-hfi2oxcdbb] {
    color: var(--nh-color-text-muted);
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Gateway/GatewayIndex.razor.rz.scp.css */
.gateway-marketing[b-cig6iwpo3p] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    color: var(--nh-text, #e8e8e8);
}

/* ── HERO ── */
.hero[b-cig6iwpo3p] {
    padding: 5rem 0 4rem;
}

.hero-eyebrow[b-cig6iwpo3p] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--nh-blue, #5b9bd5);
    margin-bottom: 1.5rem;
}

.hero-title[b-cig6iwpo3p] {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0 0 1.25rem;
    color: var(--nh-text, #e8e8e8);
}

.hero-title-accent[b-cig6iwpo3p] {
    color: var(--nh-color-accent, #d4a843);
}

.hero-subtitle[b-cig6iwpo3p] {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 560px;
    color: var(--nh-color-text-secondary, #888);
    margin: 0 0 2rem;
}

.hero-cta-row[b-cig6iwpo3p] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    font-size: 0.9rem;
}

.hero-rule[b-cig6iwpo3p] {
    height: 1px;
    background: linear-gradient(to right, var(--nh-blue, #5b9bd5) 0%, transparent 60%);
    opacity: 0.25;
}

/* ── INTRO ── */
.intro[b-cig6iwpo3p] {
    padding: 3rem 0 0;
    padding-top:0px;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .intro p[b-cig6iwpo3p] {
        font-size: 0.975rem;
        line-height: 1.8;
        color: var(--nh-color-text-secondary, #888);
        margin: 0;
    }

/* ── FEATURES ── */
.features[b-cig6iwpo3p] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    margin: 3rem -2rem 0;
    background: var(--nh-border, #2a2a2a);
    border-top: 1px solid var(--nh-border, #2a2a2a);
    border-bottom: 1px solid var(--nh-border, #2a2a2a);
}

.feature-card[b-cig6iwpo3p] {
    background: var(--nh-bg, #111);
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    transition: background 0.15s ease;
}

    .feature-card:hover[b-cig6iwpo3p] {
        background: var(--nh-bg-raised, #161616);
    }

.feature-name-row[b-cig6iwpo3p] {
    display:flex;
    gap:5px;
    align-items:center;
}

[b-cig6iwpo3p] .feature-icon {
    font-size: 1.5rem !important;
    color: var(--nh-blue, #5b9bd5);
    margin-bottom: 0.15rem;
    line-height: 1;
    opacity: 0.85;
}

.feature-name[b-cig6iwpo3p] {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--nh-text, #e8e8e8);
}

.feature-desc[b-cig6iwpo3p] {
    font-size: 0.855rem;
    line-height: 1.65;
    color: var(--nh-color-text-secondary, #888);
    margin: 0;
    flex: 1;
}

.feature-card a[b-cig6iwpo3p],
.feature-card :deep(a)[b-cig6iwpo3p] {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    margin-top: 0.4rem;
    align-self: flex-start;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.feature-card:hover a[b-cig6iwpo3p],
.feature-card:hover :deep(a)[b-cig6iwpo3p] {
    opacity: 1;
}

/* ── PHILOSOPHY ── */
.philosophy[b-cig6iwpo3p] {
    padding: 4.5rem 0 0;
}

.philosophy-inner[b-cig6iwpo3p] {
    max-width: 600px;
}

.philosophy-label[b-cig6iwpo3p] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--nh-blue, #5b9bd5);
    margin-bottom: 1.25rem;
}

.philosophy-quote[b-cig6iwpo3p] {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: var(--nh-yellow, #d4a843);
    margin: 0 0 1.25rem;
    padding: 0;
    border: none;
    opacity: 0.9;
}

.philosophy-body[b-cig6iwpo3p] {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--nh-color-text-secondary, #888);
    margin: 0;
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Gateway/GatewayLayout.razor.rz.scp.css */

.plugin-layout-base[b-3ubu6ozcg2] {
    height:100%;
    background-color: var(--nh-color-bg-surface);
    display:flex;
    flex-direction:column;
}

.plugin-layout-header[b-3ubu6ozcg2] {

}

.plugin-layout-sidebar[b-3ubu6ozcg2] {
    min-width:300px;
    padding:20px;
    
}

[b-3ubu6ozcg2] .plugin-layout-body-outer {
    min-width: 0; /* ← this is the fix */
    flex: 1;
    width:100%;
    overflow-y: auto;
    /*height: 100%;*/
    padding-bottom: 10px;
}

.plugin-layout-body[b-3ubu6ozcg2] {
    background-color: var(--nh-color-bg);
    border: solid 1px var(--nh-color-border);
    border-radius: var(--nh-border-radius);
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.plugin-layout-sections[b-3ubu6ozcg2] {
    min-width: 200px;
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Gateway/Guides/GatewayGuides_Challenges.razor.rz.scp.css */
.first-column[b-swdslefxvz] {
    background-color: var(--nh-color-accent-darkest);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    min-width: 10rem;
}

.second-column[b-swdslefxvz] {
    color: var(--nh-color-text-muted);
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Gateway/Guides/GatewayGuides_Cheats.razor.rz.scp.css */
.first-column[b-gxdw5zld0p] {
    background-color: var(--nh-color-accent-darkest);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    min-width: 10rem;
}

.second-column[b-gxdw5zld0p] {
    color: var(--nh-color-text-muted);
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Gateway/Guides/GatewayGuides_GatewayComponent.razor.rz.scp.css */
.first-column[b-9nqjzt8mmk] {
    background-color: var(--nh-color-accent-darkest);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    min-width: 10rem;
}

.second-column[b-9nqjzt8mmk] {
    color: var(--nh-color-text-muted);
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Gateway/Guides/GatewayGuides_Library.razor.rz.scp.css */



.first-column[b-qjm1cx0h1n] {
    background-color: var(--nh-color-accent-darkest);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    min-width: 10rem;
}

.second-column[b-qjm1cx0h1n] {
    color: var(--nh-color-text-muted);
}


[b-qjm1cx0h1n] code {
    background-color: var(--nh-color-bg-surface) !important;
    color: var(--nh-teal) !important;
    border: 1px solid var(--nh-color-border-subtle) !important;
    border-radius: 4px !important;
    padding: 2px 7px !important;
    font-family: 'Cascadia Code', 'Consolas', 'Fira Code', monospace !important;
    font-size: 0.875em !important;
    letter-spacing: 0.01em !important;
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Gateway/Guides/GatewayGuides_Rewards.razor.rz.scp.css */
.first-column[b-sd7ia0dbw2] {
    background-color: var(--nh-color-accent-darkest);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    min-width: 10rem;
}

.second-column[b-sd7ia0dbw2] {
    color: var(--nh-color-text-muted);
}
/* _content/Nihilo.Web/UI/Pages/Plugins/Gateway/Guides/GatewayGuides_Stats.razor.rz.scp.css */



.first-column[b-7xl1hqxa6r] {
    background-color:var(--nh-color-accent-darkest);
    text-align:center;
    vertical-align:middle;
    font-weight:bold;
    min-width:10rem;
}

.second-column[b-7xl1hqxa6r] {
    color: var(--nh-color-text-muted);
}
/* _content/Nihilo.Web/UI/Pages/Plugins/NihiloDocsPageBase.razor.rz.scp.css */
.nh-gateway-page[b-yc2sjs1egb] {
    padding: 10px 2%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
