/* Endernet™ — global shell & branding */

:root {
    --neon-blue: #00e8ff;
    --neon-green: #39ff8e;
    --color-bg: #05060a;
    --color-bg-elevated: #0a0e14;
    --color-surface: rgba(10, 18, 28, 0.78);
    --color-border: rgba(0, 232, 255, 0.18);
    --color-text: #e8f4ff;
    --color-text-muted: rgba(200, 230, 255, 0.58);
    --color-accent: var(--neon-green);
    --color-accent-alt: var(--neon-blue);
    --color-accent-soft: rgba(57, 255, 142, 0.14);
    --color-accent-soft-blue: rgba(0, 232, 255, 0.1);
    --color-glow: rgba(0, 232, 255, 0.38);
    --color-glow-green: rgba(57, 255, 142, 0.32);
    --font-sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display: "Syne", var(--font-sans);
    --radius-lg: 16px;
    --radius-md: 10px;
    --header-h: 64px;
    --max-width: 1120px;
    --space: clamp(1rem, 3vw, 1.75rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--color-text);
    background: var(--color-bg);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    color: #030508;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.skip-link:focus {
    left: var(--space);
    outline: 2px solid var(--color-text);
    outline-offset: 2px;
}

.site-bg {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 75% 45% at 50% -15%, var(--color-glow-green), transparent 58%),
        radial-gradient(ellipse 55% 40% at 100% 5%, var(--color-glow), transparent 52%),
        radial-gradient(ellipse 45% 35% at 0% 80%, rgba(57, 255, 142, 0.12), transparent 50%),
        linear-gradient(180deg, #060a12 0%, var(--color-bg) 42%, #020308 100%);
}

.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(0, 232, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 142, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 20%, transparent 70%);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 0 32px rgba(0, 232, 255, 0.06);
    background: rgba(5, 6, 10, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.brand:focus-visible {
    outline: 2px solid var(--color-accent-alt);
    outline-offset: 4px;
    border-radius: 4px;
}

.brand__mark {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-green) 100%);
    box-shadow:
        0 0 20px var(--color-glow),
        0 0 36px var(--color-glow-green);
    position: relative;
}

.brand__mark::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 4px;
    border: 2px solid rgba(7, 8, 12, 0.35);
    opacity: 0.9;
}

.brand__tm {
    font-size: 0.45em;
    font-weight: 600;
    margin-left: 0.12em;
    vertical-align: super;
    color: var(--color-text-muted);
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav__link {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.925rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-nav__link:hover {
    background: linear-gradient(
        135deg,
        var(--color-accent-soft-blue),
        var(--color-accent-soft)
    );
    color: var(--neon-blue);
    text-shadow: 0 0 18px var(--color-glow);
}

.site-nav__link--muted {
    color: var(--color-text-muted);
}

.site-nav__link:focus-visible {
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
}

/* Main column */
.site-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 4rem) var(--space);
}

/* Hero */
.hero {
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
}

.hero__inner {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow:
        0 0 0 1px rgba(57, 255, 142, 0.06),
        0 24px 80px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(0, 232, 255, 0.08),
        0 0 80px rgba(57, 255, 142, 0.06);
}

.hero__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(0, 232, 255, 0.35));
}

.hero__title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero__lede {
    margin: 0;
    max-width: 42ch;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Content panels */
.panel {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(8, 14, 22, 0.65);
    box-shadow: 0 0 40px rgba(0, 232, 255, 0.04);
}

.panel__inner {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.panel__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.panel__text {
    margin: 0;
    color: var(--color-text-muted);
}

/* Footer */
.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -12px 40px rgba(57, 255, 142, 0.04);
    background: rgba(3, 5, 10, 0.92);
}

.site-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem var(--space);
}

.site-footer__legal {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.site-footer__brand {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-text);
}

.site-footer__sep {
    margin: 0 0.35rem;
    opacity: 0.5;
}

body {
    display: flex;
    flex-direction: column;
}

/* Static error document pages (errors/*.html) */
.error-doc .site-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
    padding-bottom: clamp(2rem, 6vw, 4rem);
}

.error-doc__panel {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(57, 255, 142, 0.06),
        0 24px 80px rgba(0, 0, 0, 0.45),
        0 0 60px rgba(0, 232, 255, 0.08),
        0 0 80px rgba(57, 255, 142, 0.06);
}

.error-doc__code {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(3rem, 14vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 14px rgba(0, 232, 255, 0.35));
}

.error-doc__title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.error-doc__text {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.02rem;
}

.error-doc__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.error-doc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: 0.925rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: rgba(8, 14, 22, 0.65);
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.error-doc__btn:hover {
    color: var(--neon-blue);
    background: linear-gradient(
        135deg,
        var(--color-accent-soft-blue),
        var(--color-accent-soft)
    );
    box-shadow: 0 0 24px rgba(0, 232, 255, 0.12);
}

.error-doc__btn--primary {
    border-color: transparent;
    color: #030508;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
}

.error-doc__btn--primary:hover {
    color: #030508;
    box-shadow: 0 0 28px var(--color-glow-green);
}

/* ——— App shell (hub + static pages, was hub.css) ——— */

html,
body.hub-app,
body.ender-shell {
    height: 100%;
}

body.hub-app,
body.ender-shell {
    --hub-topbar-h: 56px;
    display: block;
    margin: 0;
    min-height: 100%;
    height: 100%;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow: hidden;
}

.hub-app .site-bg,
.ender-shell .site-bg {
    z-index: 0;
}

.shell-main--page {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    padding-top: calc(var(--hub-topbar-h) + 2rem);
    padding-bottom: calc(90px + 6.25rem);
    overflow-y: auto;
    overflow-x: hidden;
}

body.ender-shell--no-ad .shell-main--page {
    padding-bottom: 5.25rem;
}

.shell-page-inner {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 1.25rem 2.75rem;
    box-sizing: border-box;
}

.shell-page-inner h1 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-align: center;
}

.shell-prose {
    margin-top: 0.5rem;
    padding: 1.65rem 1.75rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    text-align: left;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(8, 14, 22, 0.55);
}

.shell-prose p {
    margin: 0 0 1rem;
}

.shell-prose p:last-child {
    margin-bottom: 0;
}

.hub-preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    z-index: 9999;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hub-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hub-preloader video {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    object-fit: cover;
}

.hub-auth {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.94);
    z-index: 8000;
}

.hub-auth.is-open {
    display: flex;
}

.hub-auth__card {
    max-width: 380px;
    width: min(90%, 380px);
    padding: 2rem 2.25rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow:
        0 0 60px rgba(0, 232, 255, 0.08),
        0 24px 80px rgba(0, 0, 0, 0.5);
}

.hub-auth__logo {
    width: 55px;
    height: 55px;
    margin: 0 auto 1.25rem;
    border-radius: 12px;
}

.hub-auth__title {
    margin: 0 0 1.25rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hub-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: var(--hub-topbar-h);
    padding: 0 1rem 0 0.5rem;
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-border);
    background: rgba(5, 6, 10, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 0 32px rgba(0, 232, 255, 0.06);
}

.hub-topbar__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    padding: 0.35rem 0.5rem 0.35rem 0.15rem;
    margin-left: 0.1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.hub-topbar__brand:hover {
    background: linear-gradient(
        135deg,
        var(--color-accent-soft-blue),
        var(--color-accent-soft)
    );
    box-shadow: 0 0 20px rgba(0, 232, 255, 0.08);
}

.hub-topbar__brand:focus-visible {
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
}

.hub-topbar__mark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    box-shadow:
        0 0 18px rgba(0, 232, 255, 0.22),
        0 0 28px rgba(57, 255, 142, 0.1);
}

.hub-topbar__brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    min-width: 0;
}

.hub-topbar__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.hub-topbar__tm {
    font-size: 0.55em;
    font-weight: 600;
    margin-left: 0.06em;
    vertical-align: super;
    color: var(--color-text-muted);
}

.hub-topbar__meta {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hub-menu-toggle {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin: 0 0 0 0.15rem;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(14, 16, 24, 0.65);
    cursor: pointer;
    color: var(--color-text);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hub-menu-toggle:hover {
    border-color: rgba(0, 232, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 232, 255, 0.12);
}

.hub-menu-toggle:focus-visible {
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
}

.hub-menu-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.hub-menu-toggle[aria-expanded="true"] .hub-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
}

.hub-menu-toggle[aria-expanded="true"] .hub-menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.hub-menu-toggle[aria-expanded="true"] .hub-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
}

.hub-sidebar {
    position: fixed;
    top: var(--hub-topbar-h);
    left: 0;
    z-index: 1500;
    width: min(300px, 92vw);
    height: calc(100% - var(--hub-topbar-h));
    padding: 1.15rem 1.15rem 1.5rem;
    box-sizing: border-box;
    overflow-y: auto;
    background: var(--color-bg-elevated);
    border-right: 1px solid var(--color-border);
    transform: translateX(-105%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: none;
}

.hub-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.45);
}

.hub-sidebar__label {
    display: block;
    margin: 1.5rem 0 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hub-sidebar__label:first-child {
    margin-top: 0;
}

.hub-nav__link {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.65rem 0.75rem;
    box-sizing: border-box;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--color-text);
    font: inherit;
    font-size: 0.9rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

a.hub-nav__link {
    color: inherit;
}

.hub-nav__link:hover {
    background: linear-gradient(
        135deg,
        var(--color-accent-soft-blue),
        var(--color-accent-soft)
    );
    color: var(--neon-blue);
}

.hub-nav__link--danger {
    color: #ff6b7a !important;
    font-size: 0.8rem;
}

.hub-nav__link--danger:hover {
    color: #ff8a96 !important;
}

.hub-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.hub-nav__chevron {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.hub-nav__toggle[aria-expanded="true"] .hub-nav__chevron {
    transform: rotate(-180deg);
}

.hub-sub {
    display: none;
    margin: 0.15rem 0 0.35rem 0.75rem;
    padding-left: 0.65rem;
    border-left: 1px solid var(--color-border);
}

.hub-sub.is-open {
    display: block;
}

.hub-main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: calc(var(--hub-topbar-h) + 2rem) 1.25rem calc(90px + 6.25rem);
    text-align: center;
    overflow-y: auto;
    box-sizing: border-box;
}

.hub-content {
    position: relative;
    max-width: 750px;
    width: 100%;
    padding-bottom: 2rem;
    animation: hubFadeUp 0.55s ease forwards;
}

@keyframes hubFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hub-preloader,
    .hub-sidebar,
    .hub-menu-toggle__bar,
    .hub-content,
    .hub-topbar,
    .hub-topbar__brand,
    .hub-footer a,
    .shell-main--page,
    .shell-prose {
        animation: none !important;
        transition: none !important;
    }
}

.hub-content.is-animating {
    animation: hubFadeUp 0.55s ease forwards;
}

.hub-curtain-ad {
    position: absolute;
    right: -180px;
    top: 100px;
    width: 160px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 1100px) {
    .hub-curtain-ad {
        display: none;
    }
}

.hub-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    filter: drop-shadow(0 0 22px rgba(0, 232, 255, 0.25));
    object-fit: contain;
}

.hub-view-title {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hub-view-body {
    margin: 0;
    padding: 1.75rem;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(8, 14, 22, 0.55);
}

.hub-view-body b,
.hub-view-body strong {
    color: var(--neon-blue);
    font-weight: 600;
}

.hub-bottom-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: rgba(3, 5, 10, 0.94);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -12px 40px rgba(57, 255, 142, 0.04);
}

.hub-footer {
    padding: 0.55rem 1rem 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.hub-footer__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
}

.hub-footer__row--meta {
    padding-top: 0.4rem;
    margin-top: 0.15rem;
    border-top: 1px solid rgba(0, 232, 255, 0.1);
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.hub-footer a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.15s ease, text-shadow 0.15s ease;
}

.hub-footer a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 14px rgba(0, 232, 255, 0.25);
}

.hub-footer__strong {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-text) !important;
}

.hub-footer__strong:hover {
    color: var(--neon-green) !important;
}

.hub-footer__sep {
    color: var(--color-text-muted);
    opacity: 0.45;
    user-select: none;
}

.hub-bottom-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-elevated);
}
