    @font-face {
        font-family: "Abolition";
        src: url("fonts/Abolition.73daceb77d30.otf");
    }

    @font-face {
        font-family: "Archimoto V01";
        src: url("fonts/ArchimotoV01-Regular.721b670e1b60.otf");
    }

    @font-face {
        font-family: "Archimoto V01 Black";
        src: url("fonts/ArchimotoV01-Black.78372add4418.otf")
    }

    @font-face{
        font-family: "Archimoto V01 Thin";
        src: url("fonts/ArchimotoV01-Thin.cf680a36a30b.otf");
    }

    html { overflow-y: scroll; }

    body {
        margin: 0 auto;
        background:
            linear-gradient(45deg, rgba(10,10,10,1), rgba(10,10,10,.85)),
            url("../images/noise.d0d3fc3d2c45.svg");
    }

    #main {
        min-height: 100vh;
        position: relative;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: flex-start;
        margin: 0;
    }

    /* ── Header ── */
    #header {
        width: 80vw;
        padding: 24px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
    }

    #header-logo {
        height: 44px;
        width: 44px;
        object-fit: contain;
        flex-shrink: 0;
    }

    #nav-links {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-link-item {
        height: 30px;
        padding: 0 14px;
        background-color: transparent;
        color: rgba(255,255,255,0.4);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 4px;
        font-family: "Archimoto V01 Black", sans-serif;
        font-size: 11px;
        letter-spacing: 2px;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: color 150ms, border-color 150ms;
        white-space: nowrap;
    }

    .nav-link-item:hover {
        color: rgba(255,255,255,0.7);
        border-color: rgba(255,255,255,0.3);
    }

    .nav-link-item.active {
        color: white;
        border-color: rgba(255,255,255,0.5);
    }

    /* ── Nav dropdown ── */
    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown-toggle {
        height: 30px;
        padding: 0 14px;
        background-color: transparent;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 4px;
        color: rgba(255,255,255,0.45);
        font-family: "Archimoto V01 Black", sans-serif;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
        transition: color 150ms, border-color 150ms;
        white-space: nowrap;
    }

    .nav-dropdown:hover .nav-dropdown-toggle,
    .nav-dropdown-toggle:focus {
        color: rgba(255,255,255,0.7);
        border-color: rgba(255,255,255,0.3);
        outline: none;
    }

    .nav-dropdown.active .nav-dropdown-toggle {
        color: white;
        border-color: rgba(255,255,255,0.5);
    }

    .nav-staff-badge {
        color: #4ade80 !important;
        border-color: rgba(74,222,128,0.3) !important;
        font-size: 10px !important;
    }
    .nav-staff-badge:hover {
        border-color: rgba(74,222,128,0.7) !important;
    }

    .nav-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        padding-top: 6px;
        min-width: 160px;
        z-index: 200;
    }

    .nav-dropdown-menu-inner {
        background: #1a1a1a;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 6px;
        padding: 6px 0;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-item {
        display: block;
        padding: 8px 16px;
        font-family: "Archimoto V01 Black", sans-serif;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.45);
        text-decoration: none;
        white-space: nowrap;
        transition: color 150ms, background 150ms;
    }

    .nav-dropdown-item:hover {
        color: white;
        background: rgba(255,255,255,0.06);
    }

    .nav-dropdown-item.active {
        color: white;
    }

    /* ── Stretched link helper ── */
    .stretched-link::after {
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        z-index: 10;
        pointer-events: auto;
        content: "";
        background-color: rgba(0,0,0,0);
    }

    /* ── Hamburger button (hidden on desktop) ── */
    #hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 4px;
        cursor: pointer;
        padding: 0;
        flex-shrink: 0;
    }

    #hamburger span {
        display: block;
        width: 18px;
        height: 2px;
        background: rgba(255,255,255,0.6);
        border-radius: 2px;
        transition: transform 250ms, opacity 250ms;
    }

    /* Animate to X when open */
    #header.nav-open #hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #header.nav-open #hamburger span:nth-child(2) { opacity: 0; }
    #header.nav-open #hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media screen and (max-width: 1024px) {
        #header { width: 95%; flex-wrap: wrap; }
        #nav-links { width: 100%; }
    }

    @media screen and (max-width: 768px) {
        #header {
            width: 100%;
            padding: 16px 16px 0;
            flex-wrap: nowrap;
            box-sizing: border-box;
        }

        #hamburger { display: flex; }

        /* Hide nav by default on mobile */
        #nav-links {
            display: none;
            position: absolute;
            top: 68px;
            left: 0;
            right: 0;
            background: #111;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            flex-direction: column;
            gap: 0;
            padding: 12px 16px 16px;
            z-index: 500;
            width: 100%;
            box-sizing: border-box;
        }

        #header.nav-open #nav-links { display: flex; }

        #header { position: relative; }

        /* Full-width nav items */
        .nav-link-item {
            width: 100%;
            height: 44px;
            justify-content: flex-start;
            border-radius: 4px;
            border-color: transparent;
        }

        /* Dropdowns: full width, no absolute positioning */
        .nav-dropdown { width: 100%; }

        .nav-dropdown-toggle {
            width: 100%;
            height: 44px;
            text-align: left;
            border-color: transparent;
        }

        /* Disable hover-based dropdown on mobile */
        .nav-dropdown:hover .nav-dropdown-menu { display: none; }

        /* Show on .mobile-open class (set by JS) */
        .nav-dropdown.mobile-open .nav-dropdown-menu { display: block; }

        .nav-dropdown-menu {
            position: static;
            padding-top: 0;
            min-width: 0;
        }

        .nav-dropdown-menu-inner {
            border: none;
            background: transparent;
            padding: 0 0 4px 16px;
        }

        .nav-dropdown-item {
            height: 38px;
            display: flex;
            align-items: center;
        }
    }

/* ── Shared page header text ───────────────────────────────── */
.header-text { font-family: "Archimoto V01 Black", sans-serif; color: white; margin: 0; }
.header-text.title    { font-size: 36px; letter-spacing: 2px; }
.header-text.subtitle { font-size: 14px; color: rgba(255,255,255,0.35); letter-spacing: 3px; }

@media screen and (max-width: 480px) {
    .header-text.title    { font-size: 24px; letter-spacing: 1px; }
    .header-text.subtitle { font-size: 12px; letter-spacing: 2px; }
}

/* ── Header filter container (year + specifier pills) ──────── */
.header-filters {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

@media screen and (max-width: 640px) {
    .header-filters { align-items: flex-start; }
}

/* ── Shared year / specifier filter pills ──────────────────── */
.year-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.year-filter a {
    height: 30px;
    padding: 0 14px;
    background-color: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    font-family: "Archimoto V01 Black", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 150ms, border-color 150ms;
}
.year-filter a.active { color: white; border-color: rgba(255,255,255,0.5); }
.year-filter a:not(.active):hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }

/* ── DataTables theme overrides ────────────────────────────── */
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_filter label {
    color: rgba(255,255,255,0.4);
    font-family: "Archimoto V01", sans-serif;
    font-size: 13px;
    margin-bottom: 12px;
    text-align: left;
}
.dataTables_wrapper .dataTables_filter input {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    color: rgba(255,255,255,0.9) !important;
    padding: 4px 10px;
    outline: none;
    margin-left: 8px;
}
.dataTables_wrapper .dataTables_filter input::placeholder { color: rgba(255,255,255,0.25); }
.dataTables_wrapper .dataTables_filter input:focus { border-color: rgba(255,255,255,0.3); }
.dataTables_wrapper .dataTables_info { display: none; }

/* ── Toast notifications ───────────────────────────────────── */
#toast-container {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast-msg {
    padding: 12px 20px;
    border-radius: 4px;
    font-family: "Archimoto V01 Black", sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: white;
    background: rgba(40, 40, 50, 0.96);
    border: 1px solid rgba(255,255,255,0.15);
    animation: toastIn 200ms ease, toastOut 300ms ease 3.5s forwards;
    pointer-events: none;
}
.toast-success { border-left: 3px solid rgba(100, 220, 130, 0.8); }
.toast-error   { border-left: 3px solid rgba(255, 80, 80, 0.8); }
@keyframes toastIn  { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

/* ── Shared table scroll wrapper ───────────────────────────── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
