:root {
    --el-bg: #02070c;
    --el-panel: rgba(3, 12, 20, .965);
    --el-panel-strong: rgba(2, 9, 16, .992);
    --el-panel-hover: rgba(8, 24, 38, .98);
    --el-line: rgba(95, 155, 196, .27);
    --el-line-strong: rgba(52, 154, 221, .56);
    --el-red: #ed1c2b;
    --el-red-dark: #85040c;
    --el-blue: #129cf0;
    --el-blue-dark: #073d72;
    --el-text: #f6f8fa;
    --el-muted: #a5b1bc;
    --el-dim: #72808d;
    --el-display: "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
    --el-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --el-shadow: 0 22px 65px rgba(0, 0, 0, .58);
    --el-radius: 12px;
}

* { box-sizing: border-box; }
html { min-height: 100%; color-scheme: dark; scroll-behavior: smooth; }
body {
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    color: var(--el-text);
    font-family: var(--el-body);
    background-color: var(--el-bg);
    background-image:
        linear-gradient(rgba(1, 6, 12, .22), rgba(1, 6, 12, .33)),
        url("site-background.png");
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% -15%, rgba(18, 132, 217, .16), transparent 42%),
        linear-gradient(180deg, rgba(0, 6, 12, .04), rgba(0, 6, 12, .48));
}
body.el-modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { max-width: 100%; }
[hidden] { display: none !important; }
.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Site header */
.el-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 88px;
    background: rgba(1, 7, 13, .99);
    border-top: 1px solid rgba(147, 160, 173, .52);
    border-bottom: 1px solid rgba(35, 104, 157, .42);
    box-shadow: 0 13px 35px rgba(0, 0, 0, .52);
    backdrop-filter: blur(16px);
}
.el-header-inner {
    width: 100%;
    min-height: 87px;
    margin: 0 auto;
    padding: 0 7px;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr) 64px;
    align-items: center;
}
.el-header-brand {
    width: 390px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 6px 15px 6px 12px;
    color: white;
    text-decoration: none;
    background: linear-gradient(90deg, rgba(2, 13, 23, .98), rgba(1, 9, 16, .96));
    border: 1px solid rgba(27, 101, 155, .62);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .018);
}
.el-header-brand img {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, .13));
}
.el-header-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}
.el-header-brand-copy strong {
    color: #f5f5f5;
    font-family: var(--el-display);
    font-size: 29px;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;
    white-space: nowrap;
}
.el-header-brand-copy small {
    margin-top: 8px;
    color: #f12b36;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    white-space: nowrap;
}
.el-main-nav {
    min-width: 0;
    height: 87px;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}
.el-nav-item {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: stretch;
}
.el-main-nav > .el-nav-item > a {
    position: relative;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #c9ced4;
    font-family: var(--el-display);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease, background .18s ease;
}
.el-main-nav > .el-nav-item > a:hover,
.el-main-nav > .el-nav-item:focus-within > a {
    color: white;
    background: rgba(255, 255, 255, .022);
}
.el-has-submenu > a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 5px;
    height: 5px;
    border-right: 1px solid rgba(181, 202, 218, .72);
    border-bottom: 1px solid rgba(181, 202, 218, .72);
    transform: translateX(-50%) rotate(45deg);
    opacity: .66;
}
.el-submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    z-index: 30;
    min-width: 205px;
    padding: 8px;
    display: grid;
    gap: 3px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    border: 1px solid rgba(42, 126, 187, .5);
    border-top: 2px solid var(--el-red);
    border-radius: 0 0 9px 9px;
    background: rgba(2, 10, 17, .995);
    box-shadow: 0 20px 38px rgba(0, 0, 0, .62), 0 0 20px rgba(20, 124, 193, .1);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.el-nav-item:hover > .el-submenu,
.el-nav-item:focus-within > .el-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.el-submenu a {
    min-height: 39px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #d9dee3;
    font-family: var(--el-display);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .035em;
    text-transform: uppercase;
    text-decoration: none;
    border-left: 2px solid transparent;
    background: rgba(255, 255, 255, .012);
}
.el-submenu a:hover,
.el-submenu a:focus-visible {
    color: white;
    border-left-color: var(--el-blue);
    background: rgba(19, 158, 242, .1);
    outline: none;
}
.el-header-search,
.el-menu-toggle {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 0;
    cursor: pointer;
}
.el-header-search {
    justify-self: end;
    margin-right: 6px;
    background: linear-gradient(180deg, #c61522, #81030c);
    border-left: 1px solid rgba(255, 82, 89, .55);
    border-right: 1px solid rgba(255, 82, 89, .45);
}
.el-header-search:hover { filter: brightness(1.12); }
.el-menu-toggle {
    display: none;
    justify-self: end;
    border-radius: 8px;
    background: rgba(15, 38, 56, .92);
    border: 1px solid rgba(64, 147, 207, .32);
}
.el-search-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 13px;
    width: min(520px, calc(100% - 24px));
    padding: 12px;
    border-radius: 12px;
    background: rgba(2, 10, 17, .99);
    border: 1px solid var(--el-line-strong);
    box-shadow: var(--el-shadow);
}
.el-search-panel.open { display: block; }
.el-global-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 9px; }
.el-global-search input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    color: white;
    outline: none;
    border-radius: 8px;
    background: #030b12;
    border: 1px solid rgba(103, 150, 184, .3);
}
.el-global-search input:focus { border-color: var(--el-blue); box-shadow: 0 0 0 3px rgba(19, 158, 242, .13); }

/* Page shell and shared controls */
.el-page {
    width: min(calc(100% - 28px), 1500px);
    margin: 0 auto;
    padding: 12px 0 38px;
}
.el-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--el-radius);
    background: linear-gradient(180deg, rgba(4, 16, 26, .975), rgba(2, 10, 17, .97));
    border: 1px solid var(--el-line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}
.el-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 22px;
    color: white;
    border: 1px solid transparent;
    border-radius: 5px;
    font-family: var(--el-display);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .32);
    transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}
.el-button:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 16px 30px rgba(0, 0, 0, .42); }
.el-button-red { background: linear-gradient(180deg, #d81b28, #8c060d); border-color: rgba(255, 82, 89, .62); }
.el-button-blue { background: linear-gradient(180deg, #168fd7, #075287); border-color: rgba(88, 190, 255, .58); }
.el-text-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 0;
    color: var(--el-red);
    background: transparent;
    border: 0;
    font-family: var(--el-display);
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
    cursor: pointer;
}
.el-text-button:hover { color: white; }
.el-text-button svg { width: 18px; height: 18px; }

/* Hero */
.el-hero {
    position: relative;
    min-height: 310px;
    display: grid;
    grid-template-columns: 38% minmax(0, 1fr) 300px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(53, 139, 202, .38);
    border-radius: 12px 12px 0 0;
    background:
        linear-gradient(90deg, rgba(0, 5, 10, .99) 0%, rgba(0, 5, 10, .89) 28%, rgba(0, 5, 10, .18) 49%, rgba(0, 5, 10, .24) 70%, rgba(0, 5, 10, .96) 100%),
        url("evidence-hero.webp") center / cover no-repeat;
    box-shadow: var(--el-shadow);
}
.el-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 75%, rgba(0, 4, 8, .88));
}
.el-hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 28px 24px 28px 54px;
}
.el-kicker {
    display: inline-block;
    padding: 0 12px;
    color: #e4e8eb;
    font-family: var(--el-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.el-hero h1 {
    margin: 0;
    font-family: var(--el-display);
    line-height: .78;
    text-transform: uppercase;
    letter-spacing: -.025em;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .65));
}
.el-hero h1 span,
.el-hero h1 strong { display: block; }
.el-hero h1 span {
    color: #eef0f1;
    font-size: clamp(55px, 6.2vw, 105px);
    text-shadow: 3px 3px 0 #111820;
}
.el-hero h1 strong {
    color: var(--el-red);
    font-size: clamp(60px, 6.5vw, 112px);
    text-shadow: 3px 3px 0 #51050a;
}
.el-hero-copy p {
    max-width: 460px;
    margin: 22px 0 0 8px;
    color: #c7d0d7;
    line-height: 1.55;
    font-size: 15px;
}
.el-hero-cta {
    position: relative;
    z-index: 2;
    grid-column: 3;
    align-self: center;
    margin: 28px 24px 28px 0;
    padding: 22px;
    border: 1px solid rgba(48, 157, 226, .47);
    border-radius: 10px;
    background: linear-gradient(160deg, rgba(3, 15, 25, .97), rgba(2, 8, 14, .99));
    box-shadow: 0 18px 40px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .025);
}
.el-small-title {
    display: block;
    color: white;
    font-family: var(--el-display);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.el-hero-cta > p { margin: 14px 0 23px; color: #c2ccd4; font-size: 14px; line-height: 1.55; }
.el-hero-cta .el-button { width: 100%; min-height: 76px; }
.el-hero-cta .el-button > span { display: grid; gap: 4px; text-align: left; }
.el-hero-cta .el-button small { font-family: var(--el-body); font-size: 10px; font-weight: 600; letter-spacing: .02em; text-transform: none; color: #f3cfd2; }

/* Command bar */
.el-command-bar {
    border: 1px solid var(--el-line);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: rgba(2, 11, 18, .98);
    box-shadow: 0 15px 38px rgba(0, 0, 0, .28);
}
.el-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid rgba(74, 135, 174, .2);
}
.el-stats article {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-right: 1px solid rgba(74, 135, 174, .22);
}
.el-stats article:last-child { border-right: 0; }
.el-stat-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .018);
}
.el-stat-icon.red { color: var(--el-red); border: 1px solid rgba(237, 28, 43, .5); }
.el-stat-icon.blue { color: var(--el-blue); border: 1px solid rgba(18, 156, 240, .5); }
.el-stats small,
.el-stats em { display: block; font-style: normal; }
.el-stats small { color: #c9d0d5; font-family: var(--el-display); font-size: 13px; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.el-stats strong { display: block; margin: 1px 0 2px; color: white; font-family: var(--el-display); font-size: 32px; line-height: 1; }
.el-stats em { color: var(--el-dim); font-size: 11px; }
.el-filter-bar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 190px 180px;
    gap: 10px;
    padding: 10px 14px;
}
.el-search-input { position: relative; }
.el-search-input svg { position: absolute; left: 13px; top: 50%; width: 18px; height: 18px; color: var(--el-dim); transform: translateY(-50%); }
.el-filter-bar input,
.el-filter-bar select {
    width: 100%;
    min-height: 40px;
    padding: 0 13px;
    color: #d9e0e5;
    border: 1px solid rgba(98, 149, 185, .29);
    border-radius: 5px;
    outline: none;
    background: rgba(2, 10, 17, .94);
}
.el-filter-bar input { padding-left: 40px; }
.el-filter-bar input:focus,
.el-filter-bar select:focus { border-color: var(--el-blue); box-shadow: 0 0 0 3px rgba(18, 156, 240, .11); }

/* Main content */
.el-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 14px;
    margin-top: 14px;
}
.el-main-column,
.el-sidebar { display: grid; align-content: start; gap: 14px; }
.el-panel-heading {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(86, 137, 173, .21);
}
.el-panel-heading h2 {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: white;
    font-family: var(--el-display);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: .035em;
    text-transform: uppercase;
}
.el-panel-heading h2 svg { width: 21px; height: 21px; color: var(--el-red); }
.el-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
    padding: 13px;
}
.el-case-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(86, 137, 173, .3);
    border-radius: 6px;
    background: rgba(3, 12, 20, .95);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.el-case-card:hover { transform: translateY(-3px); border-color: rgba(31, 164, 246, .6); box-shadow: 0 18px 28px rgba(0, 0, 0, .3); }
.el-card-media {
    position: relative;
    width: 100%;
    height: 145px;
    display: block;
    padding: 0;
    border: 0;
    background: #050b11;
    cursor: pointer;
}
.el-media-preview { width: 100%; height: 100%; display: grid; place-items: center; overflow: hidden; background: #040a10; }
.el-media-preview img,
.el-media-preview video { width: 100%; height: 100%; display: block; object-fit: cover; }
.el-video-wrap { position: relative; }
.el-play-mark {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .62);
    background: rgba(0, 0, 0, .62);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, .6);
    pointer-events: none;
}
.el-play-mark svg { width: 22px; height: 22px; }
.el-media-empty { gap: 7px; color: #c6d2dc; background: radial-gradient(circle at 50% 25%, rgba(21, 132, 208, .14), transparent 45%), #050b11; }
.el-media-empty svg { width: 37px; height: 37px; color: var(--el-blue); }
.el-media-empty span { font-family: var(--el-display); font-size: 14px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.el-card-badge,
.el-new-chip {
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 3;
    padding: 5px 8px;
    color: white;
    border-radius: 3px;
    background: linear-gradient(180deg, #df1825, #99070f);
    font-family: var(--el-display);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.el-card-body { padding: 13px 13px 12px; }
.el-card-meta { display: flex; justify-content: space-between; gap: 8px; color: var(--el-dim); font-size: 10px; text-transform: uppercase; }
.el-card-body h3 { margin: 9px 0 7px; color: white; font-size: 16px; line-height: 1.2; }
.el-card-body p { min-height: 48px; margin: 0; color: #aeb9c2; font-size: 12px; line-height: 1.45; }
.el-card-footer { margin-top: 13px; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--el-dim); font-size: 10px; }
.el-card-footer button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    color: var(--el-blue);
    border: 0;
    background: transparent;
    font-family: var(--el-display);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}
.el-card-footer button svg { width: 16px; height: 16px; }
.el-empty-state { margin: 13px; padding: 24px; text-align: center; color: #aebbc5; border: 1px dashed rgba(79, 157, 210, .32); border-radius: 7px; background: rgba(255, 255, 255, .018); }

/* Recent evidence */
.el-recent-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; padding: 13px; }
.el-recent-card {
    position: relative;
    min-width: 0;
    padding: 0 0 9px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(86, 137, 173, .28);
    border-radius: 6px;
    background: #050d15;
    cursor: pointer;
}
.el-recent-card:hover { border-color: rgba(18, 156, 240, .55); }
.el-media-preview-compact { height: 92px; }
.el-recent-card strong,
.el-recent-card small { display: block; margin-inline: 9px; }
.el-recent-card strong { margin-top: 9px; color: white; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.el-recent-card small { margin-top: 3px; color: var(--el-dim); font-size: 9px; }

/* Sidebar */
.el-category-list { padding: 8px 14px 2px; }
.el-category-list > button {
    width: 100%;
    min-height: 60px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: white;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(86, 137, 173, .18);
    background: transparent;
    cursor: pointer;
}
.el-category-list > button:last-child { border-bottom: 0; }
.el-category-list > button:hover strong { color: var(--el-blue); }
.el-category-list > button > svg { width: 17px; height: 17px; color: var(--el-dim); }
.el-category-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: white;
    border: 1px solid rgba(18, 156, 240, .55);
    border-radius: 50%;
}
.el-category-icon.paranormal { color: #dfebf2; }
.el-category-icon.cryptid { color: #80d2ff; }
.el-category-icon.extraterrestrial { color: #c58aff; border-color: rgba(197, 138, 255, .6); }
.el-category-icon.strange-sounds { color: #ff414d; border-color: rgba(255, 65, 77, .6); }
.el-category-icon.other { color: #f3aa3d; border-color: rgba(243, 170, 61, .6); }
.el-category-icon svg { width: 19px; height: 19px; }
.el-category-list strong,
.el-category-list small { display: block; }
.el-category-list strong { font-family: var(--el-display); font-size: 15px; letter-spacing: .025em; text-transform: uppercase; }
.el-category-list small { margin-top: 2px; color: var(--el-dim); font-size: 10px; text-transform: uppercase; }
.el-view-all-categories { margin: 5px auto 11px; }
.el-contributor-list { list-style: none; margin: 0; padding: 8px 14px 13px; }
.el-contributor-list li {
    min-height: 62px;
    display: grid;
    grid-template-columns: 24px 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid rgba(86, 137, 173, .16);
}
.el-contributor-list li:last-child { border-bottom: 0; }
.el-contributor-list > li > span { color: var(--el-red); font-family: var(--el-display); font-size: 21px; font-weight: 900; text-align: center; }
.el-contributor-list i { width: 34px; height: 34px; display: grid; place-items: center; color: white; font-style: normal; font-weight: 900; border-radius: 50%; background: linear-gradient(135deg, #a30a13, #124f81); }
.el-contributor-list strong,
.el-contributor-list small { display: block; }
.el-contributor-list strong { font-size: 13px; }
.el-contributor-list small { color: var(--el-dim); font-size: 9px; }
.el-contributor-list b { color: white; font-size: 17px; text-align: right; }
.el-contributor-list b small { font-weight: 500; text-transform: uppercase; }
.el-no-contributors { grid-template-columns: 1fr !important; color: var(--el-muted); }
.el-admin-link {
    min-height: 43px;
    margin: 0 14px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #cbd8e1;
    border: 1px solid rgba(88, 156, 203, .27);
    border-radius: 5px;
    background: rgba(255, 255, 255, .025);
    font-family: var(--el-display);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}
.el-admin-link:hover { color: white; border-color: var(--el-blue); }
.el-admin-link svg { width: 17px; height: 17px; }

/* Bring your weird */
.el-bring-weird {
    min-height: 84px;
    margin-top: 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 25px;
    padding: 10px 26px;
    overflow: hidden;
    border: 1px solid rgba(66, 137, 184, .38);
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(152, 4, 15, .38), rgba(2, 11, 18, .97) 36%, rgba(2, 11, 18, .97) 70%, rgba(10, 63, 109, .44)),
        url("site-background.png") center / cover;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
}
.el-bring-brand { display: flex; align-items: center; gap: 14px; }
.el-bring-brand img { width: 70px; height: 70px; object-fit: contain; }
.el-bring-brand span { color: #ebedef; font-family: var(--el-display); font-size: clamp(29px, 3vw, 46px); font-weight: 900; letter-spacing: .02em; text-transform: uppercase; white-space: nowrap; text-shadow: 2px 2px 0 rgba(0, 0, 0, .62); }
.el-bring-weird p { max-width: 530px; margin: 0; color: #d2d9de; line-height: 1.45; }
.el-bring-weird .el-button { min-width: 300px; }
.el-footer { width: min(calc(100% - 28px), 1500px); min-height: 62px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 18px; color: #71808d; font-size: 12px; }
.el-footer strong { color: #9ba8b3; font-weight: 600; }

/* Modals and forms */
.el-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 16px;
    overflow: auto;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(8px);
}
.el-modal-backdrop.open { display: flex; }
.el-modal {
    position: relative;
    width: min(980px, 96vw);
    margin: auto;
    padding: 26px;
    border: 1px solid rgba(65, 155, 216, .4);
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(6, 20, 31, .995), rgba(2, 9, 15, .998));
    box-shadow: 0 34px 100px rgba(0, 0, 0, .75), 0 0 42px rgba(18, 156, 240, .08);
}
.el-modal-close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: white;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    cursor: pointer;
}
.el-modal-close:hover { background: rgba(237, 28, 43, .35); }
.el-modal-heading { display: flex; align-items: center; gap: 14px; margin: 0 54px 22px 0; }
.el-modal-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--el-blue); border: 1px solid rgba(18, 156, 240, .5); border-radius: 50%; }
.el-modal-icon.red { color: var(--el-red); border-color: rgba(237, 28, 43, .5); }
.el-modal-heading small { color: var(--el-blue); font-family: var(--el-display); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.el-modal-heading h2 { margin: 2px 0 0; font-family: var(--el-display); font-size: 34px; letter-spacing: .025em; text-transform: uppercase; }
.el-modal-intro { margin: -7px 0 22px; color: var(--el-muted); line-height: 1.55; }
.el-detail-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(250px, .65fr); gap: 16px; }
.el-detail-media { min-height: 300px; display: grid; gap: 12px; align-content: start; padding: 12px; border: 1px solid rgba(86, 137, 173, .23); border-radius: 8px; background: #030a10; }
.el-attachment { overflow: hidden; border: 1px solid rgba(86, 137, 173, .26); border-radius: 7px; background: #06101a; }
.el-attachment img,
.el-attachment video { width: 100%; max-height: 58vh; display: block; object-fit: contain; background: #000; }
.el-attachment audio { width: calc(100% - 24px); margin: 18px 12px; }
.el-attachment figcaption { display: flex; justify-content: space-between; gap: 10px; padding: 10px 12px; color: var(--el-muted); font-size: 11px; }
.el-attachment figcaption strong { color: white; word-break: break-word; }
.el-file-attachment { min-height: 160px; display: grid; place-items: center; gap: 9px; padding: 20px; text-align: center; }
.el-file-attachment svg { width: 45px; height: 45px; color: var(--el-blue); }
.el-file-attachment a { color: var(--el-blue); font-weight: 800; }
.el-detail-data { margin: 0; display: grid; align-content: start; border: 1px solid rgba(86, 137, 173, .22); border-radius: 8px; overflow: hidden; }
.el-detail-data div { padding: 11px 13px; border-bottom: 1px solid rgba(86, 137, 173, .16); background: rgba(255, 255, 255, .018); }
.el-detail-data div:last-child { border-bottom: 0; }
.el-detail-data dt { color: var(--el-dim); font-size: 10px; text-transform: uppercase; }
.el-detail-data dd { margin: 3px 0 0; color: white; font-size: 13px; font-weight: 700; word-break: break-word; }
.el-detail-description { margin-top: 16px; padding: 17px; border: 1px solid rgba(86, 137, 173, .22); border-radius: 8px; background: rgba(255, 255, 255, .018); }
.el-detail-description h3 { margin: 0 0 8px; font-family: var(--el-display); font-size: 22px; text-transform: uppercase; }
.el-detail-description p { margin: 0; color: #c4ced6; line-height: 1.65; white-space: pre-wrap; }
.el-alert { margin-bottom: 18px; padding: 13px 15px; border-radius: 7px; font-weight: 700; }
.el-alert.error { color: #ffd9dd; border: 1px solid rgba(237, 28, 43, .48); background: rgba(152, 4, 15, .25); }

.evidence-form { display: grid; gap: 17px; }
.evidence-form .grid.two { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.evidence-form label { display: block; margin: 0; }
.evidence-form label > span { display: block; margin-bottom: 7px; color: white; font-family: var(--el-display); font-size: 17px; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; }
.evidence-form input,
.evidence-form select,
.evidence-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    color: white;
    outline: none;
    border: 1px solid rgba(88, 144, 183, .3);
    border-radius: 6px;
    background: #030b12;
}
.evidence-form input:focus,
.evidence-form select:focus,
.evidence-form textarea:focus { border-color: var(--el-blue); box-shadow: 0 0 0 3px rgba(18, 156, 240, .12); }
.evidence-form textarea { min-height: 145px; resize: vertical; }
.evidence-form input[type="date"] { color-scheme: dark; }
.evidence-form .upload-box { padding: 17px; border: 1px dashed rgba(18, 156, 240, .42); border-radius: 8px; background: linear-gradient(90deg, rgba(152, 4, 15, .11), rgba(9, 65, 105, .13)); cursor: pointer; }
.evidence-form .upload-box input { margin-bottom: 10px; }
.evidence-form .upload-box strong { display: block; color: white; font-family: var(--el-display); font-size: 20px; text-transform: uppercase; }
.evidence-form .upload-box small { display: block; margin-top: 4px; color: var(--el-muted); }
.evidence-form .checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.evidence-form .checks label { display: flex; align-items: center; gap: 10px; min-height: 58px; padding: 12px; border: 1px solid rgba(88, 144, 183, .22); border-radius: 7px; background: rgba(255, 255, 255, .018); }
.evidence-form .checks input { width: 22px; min-height: 22px; flex: 0 0 22px; accent-color: var(--el-red); }
.evidence-form .checks span { margin: 0; font-family: var(--el-body); font-size: 12px; letter-spacing: 0; text-transform: none; }
.evidence-form > button[type="submit"] {
    min-height: 52px;
    color: white;
    border: 1px solid rgba(255, 82, 89, .62);
    border-radius: 5px;
    background: linear-gradient(180deg, #d81b28, #8c060d);
    font-family: var(--el-display);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
}

.el-toast-stack { position: fixed; right: 18px; bottom: 18px; z-index: 3000; display: grid; gap: 10px; width: min(390px, calc(100% - 36px)); }
.el-toast { padding: 14px 16px; opacity: 0; transform: translateY(12px); border: 1px solid rgba(18, 156, 240, .42); border-left: 4px solid var(--el-blue); border-radius: 8px; background: rgba(2, 12, 20, .98); box-shadow: 0 18px 45px rgba(0, 0, 0, .55); transition: opacity .2s ease, transform .2s ease; }
.el-toast.error { border-color: rgba(237, 28, 43, .42); border-left-color: var(--el-red); }
.el-toast.show { opacity: 1; transform: translateY(0); }
.el-toast strong { display: block; font-family: var(--el-display); font-size: 18px; text-transform: uppercase; }
.el-toast span { display: block; margin-top: 4px; color: #c5cfd7; font-size: 12px; line-height: 1.45; }

@media (max-width: 1320px) {
    .el-header-inner { grid-template-columns: 323px minmax(0, 1fr) 58px; }
    .el-header-brand { width: 323px; }
    .el-header-brand-copy strong { font-size: 24px; }
    .el-header-brand-copy small { font-size: 9px; }
    .el-main-nav > .el-nav-item > a { padding-inline: 11px; font-size: 14px; }
    .el-hero { grid-template-columns: 39% minmax(0, 1fr) 285px; }
    .el-case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .el-recent-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1040px) {
    .el-site-header { min-height: 71px; }
    .el-header-inner { min-height: 70px; grid-template-columns: auto 1fr auto auto; }
    .el-header-brand { width: 70px; height: 62px; padding: 6px; border: 0; background: transparent; }
    .el-header-brand img { width: 50px; height: 50px; flex-basis: 50px; }
    .el-header-brand-copy { display: none; }
    .el-menu-toggle { display: inline-flex; grid-column: 3; }
    .el-main-nav {
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 1px);
        height: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        border: 1px solid rgba(42, 126, 187, .45);
        border-top: 2px solid var(--el-red);
        border-radius: 0 0 10px 10px;
        background: rgba(2, 10, 17, .995);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .62);
    }
    .el-main-nav.open { display: flex; }
    .el-nav-item { display: block; }
    .el-main-nav > .el-nav-item > a { min-height: 43px; justify-content: flex-start; padding: 0 13px; }
    .el-has-submenu > a::before { left: auto; right: 14px; bottom: 20px; }
    .el-submenu { position: static; min-width: 0; padding: 0 0 5px 13px; opacity: 1; visibility: visible; pointer-events: auto; transform: none; border: 0; background: transparent; box-shadow: none; }
    .el-submenu a { min-height: 36px; }
    .el-header-search { grid-column: 4; margin-right: 0; }
    .el-hero { grid-template-columns: minmax(0, 1fr) 280px; }
    .el-hero-copy { padding-left: 34px; }
    .el-hero-cta { grid-column: 2; }
    .el-content-grid { grid-template-columns: minmax(0, 1fr); }
    .el-sidebar { grid-template-columns: 1fr 1fr; }
    .el-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .el-stats article:nth-child(2) { border-right: 0; }
    .el-stats article:nth-child(-n+2) { border-bottom: 1px solid rgba(74, 135, 174, .22); }
    .el-bring-weird { grid-template-columns: 1fr auto; }
    .el-bring-weird p { grid-column: 1; }
    .el-bring-weird .el-button { grid-column: 2; grid-row: 1 / span 2; }
}

@media (max-width: 760px) {
    .el-page { width: min(calc(100% - 14px), 1500px); padding-top: 7px; }
    .el-hero { min-height: 520px; grid-template-columns: 1fr; align-content: end; background-position: 62% center; }
    .el-hero-copy { align-self: end; padding: 30px 22px 18px; }
    .el-hero-copy p { margin-left: 0; }
    .el-hero-cta { grid-column: 1; margin: 0 16px 16px; }
    .el-stats { grid-template-columns: 1fr; }
    .el-stats article { border-right: 0; border-bottom: 1px solid rgba(74, 135, 174, .22); }
    .el-stats article:last-child { border-bottom: 0; }
    .el-filter-bar { grid-template-columns: 1fr; }
    .el-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .el-recent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .el-sidebar { grid-template-columns: 1fr; }
    .el-bring-weird { grid-template-columns: 1fr; text-align: center; padding: 18px; }
    .el-bring-brand { justify-content: center; }
    .el-bring-weird p { grid-column: 1; margin: 0 auto; }
    .el-bring-weird .el-button { grid-column: 1; grid-row: auto; min-width: 0; width: 100%; }
    .el-detail-layout { grid-template-columns: 1fr; }
    .evidence-form .grid.two,
    .evidence-form .checks { grid-template-columns: 1fr; }
    .el-footer { flex-direction: column; justify-content: center; padding: 18px 0; text-align: center; }
}

@media (max-width: 520px) {
    .el-header-inner { grid-template-columns: 52px 1fr 44px 48px; }
    .el-header-brand { width: 46px; height: 46px; }
    .el-header-brand img { width: 42px; height: 42px; flex-basis: 42px; }
    .el-header-search,
    .el-menu-toggle { width: 42px; height: 42px; }
    .el-hero h1 span { font-size: 53px; }
    .el-hero h1 strong { font-size: 59px; }
    .el-kicker { font-size: 22px; }
    .el-case-grid,
    .el-recent-grid { grid-template-columns: 1fr; }
    .el-card-media { height: 190px; }
    .el-media-preview-compact { height: 150px; }
    .el-panel-heading { align-items: flex-start; flex-direction: column; padding-block: 12px; }
    .el-modal { padding: 20px 14px; }
    .el-modal-heading h2 { font-size: 27px; }
    .el-bring-brand { flex-direction: column; gap: 6px; }
    .el-bring-brand span { white-space: normal; }
}
