:root {
    --bg: #eef1f3;
    --surface: #ffffff;
    --surface-2: #f6f7f8;
    --graphite: #15191e;
    --graphite-2: #1e242a;
    --graphite-3: #2a3138;
    --text: #20262c;
    --muted: #6b747d;
    --line: #dce1e5;
    --line-dark: #343b42;
    --red: #d71920;
    --red-dark: #b41117;
    --green: #26a269;
    --shadow: 0 14px 34px rgba(20, 26, 31, .08);
    --radius: 10px;
}

* { box-sizing: border-box; }
html { background: var(--bg); color: var(--text); }
body { margin: 0; min-width: 320px; font-family: "Segoe UI", Inter, Arial, sans-serif; background: var(--bg); color: var(--text); }
button, input, select { font: inherit; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.portal { min-height: 100%; }
.topbar {
    min-height: 72px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #101419;
    border-bottom: 1px solid #2b3137;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand-mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; letter-spacing: .06em; }
.brand-copy strong { font-size: 17px; font-weight: 800; }
.brand-copy span { margin-top: 5px; color: #b4bcc3; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.main-nav { display: flex; align-items: stretch; align-self: stretch; }
.nav-link {
    min-height: 72px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: #c5cbd0;
    font-size: 14px;
    font-weight: 650;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.035); }
.nav-link.active { color: #fff; }
.nav-link.active::after { content: ""; position: absolute; height: 3px; left: 17px; right: 17px; bottom: 0; background: var(--red); }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    padding: 58px 5vw 54px;
    background:
        radial-gradient(circle at 80% -20%, rgba(215,25,32,.2), transparent 34%),
        linear-gradient(135deg, #171c22 0%, #101419 72%);
    color: #fff;
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}
.hero::after { content: "L5"; position: absolute; right: 5vw; bottom: -50px; font-size: 240px; line-height: 1; font-weight: 900; font-style: italic; color: rgba(255,255,255,.025); pointer-events: none; }
.hero-content { position: relative; z-index: 1; width: min(870px, 100%); }
.eyebrow, .section-kicker, .dialog-kicker { color: #ec4b50; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.hero h1 { max-width: 760px; margin: 10px 0 10px; font-size: clamp(34px, 5vw, 56px); letter-spacing: -.035em; line-height: 1.04; }
.hero p { max-width: 720px; margin: 0 0 28px; color: #c2c8ce; font-size: 17px; line-height: 1.55; }
.search-box {
    width: min(720px, 100%);
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px 0 18px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.search-box svg { width: 22px; height: 22px; fill: none; stroke: #68727b; stroke-width: 2; stroke-linecap: round; }
.search-box input { flex: 1; min-width: 0; height: 54px; border: 0; outline: 0; color: #1e252a; font-size: 16px; background: transparent; }
.search-box input::placeholder { color: #8c949b; }
.clear-search { width: 36px; height: 36px; border: 0; border-radius: 6px; background: #edf0f2; color: #58626b; font-size: 24px; cursor: pointer; }
.hero-meta { margin-top: 15px; display: flex; flex-wrap: wrap; gap: 10px 24px; color: #8f9aa4; font-size: 12px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(38,162,105,.12); }

.content-shell { width: min(1420px, 92vw); margin: 0 auto; padding: 42px 0 70px; }
.featured-section, .quick-section, .browser-section { margin-bottom: 40px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.section-heading h2, .browser-header h2 { margin: 5px 0 0; font-size: 24px; letter-spacing: -.02em; }

.release-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, .7fr);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.release-main { padding: 26px 28px; display: flex; align-items: center; gap: 22px; min-width: 0; }
.release-badge { width: 72px; height: 72px; flex: 0 0 72px; display: grid; place-items: center; border-radius: 8px; background: var(--graphite); border-left: 5px solid var(--red); color: #fff; font-size: 24px; font-weight: 900; letter-spacing: -.05em; }
.release-copy { min-width: 0; }
.release-label { color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .14em; }
.release-copy h3 { margin: 5px 0 7px; font-size: 22px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.release-copy p { margin: 0; color: var(--muted); font-size: 13px; }
.release-actions { padding: 22px 24px; display: flex; align-items: center; justify-content: flex-end; gap: 10px; background: #f7f8f9; border-left: 1px solid var(--line); }

.folder-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.folder-card {
    min-width: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    cursor: pointer;
    text-align: left;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.folder-card:hover { border-color: #b9c0c6; transform: translateY(-2px); box-shadow: 0 9px 24px rgba(25,31,36,.08); }
.folder-card:focus-visible, .btn:focus-visible, .icon-btn:focus-visible, .view-toggle button:focus-visible, .breadcrumbs button:focus-visible, .brand:focus-visible, .nav-link:focus-visible, .dialog-close:focus-visible { outline: 3px solid rgba(215,25,32,.28); outline-offset: 2px; }
.folder-icon { width: 45px; height: 45px; flex: 0 0 45px; display: grid; place-items: center; border-radius: 7px; background: #f2f3f4; color: #3b444c; }
.folder-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.folder-card-copy { min-width: 0; }
.folder-card strong { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 14px; }
.folder-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }

.browser-section { padding: 0; }
.browser-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 14px; }
.breadcrumbs { min-height: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; }
.breadcrumbs button { padding: 0; border: 0; background: none; color: #505962; cursor: pointer; }
.breadcrumbs button:hover { color: var(--red); text-decoration: underline; }
.breadcrumb-sep { color: #a3aab0; }
.result-summary { min-height: 18px; margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.browser-tools { display: flex; align-items: center; gap: 12px; }
.sort-control { height: 40px; display: flex; align-items: center; border: 1px solid #cfd5da; border-radius: 6px; background: #fff; overflow: hidden; }
.sort-control span { padding: 0 9px 0 12px; color: #7a838b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.sort-control select { height: 38px; padding: 0 29px 0 7px; border: 0; outline: 0; background: #fff; color: #333b42; font-size: 13px; cursor: pointer; }
.view-toggle { display: flex; overflow: hidden; border: 1px solid #cfd5da; border-radius: 6px; background: #fff; }
.view-toggle button { width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-right: 1px solid #d8dde1; background: #fff; color: #68727a; cursor: pointer; }
.view-toggle button:last-child { border-right: 0; }
.view-toggle button.active { background: var(--graphite); color: #fff; }
.view-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }

.resource-list { overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(20,26,31,.045); }
.resource-list.view-card { overflow: visible; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; border: 0; border-radius: 0; box-shadow: none; background: transparent; }
.list-head { min-height: 42px; padding: 0 16px; display: grid; grid-template-columns: minmax(250px, 1fr) 150px 155px 110px 155px; align-items: center; gap: 12px; background: #f1f3f4; border-bottom: 1px solid var(--line); color: #6e7780; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.resource-row { min-height: 68px; padding: 9px 16px; display: grid; grid-template-columns: minmax(250px, 1fr) 150px 155px 110px 155px; align-items: center; gap: 12px; border-bottom: 1px solid #e8ebed; }
.resource-row:last-child { border-bottom: 0; }
.resource-row:hover { background: #fafbfb; }
.resource-name { min-width: 0; display: flex; align-items: center; gap: 12px; }
.file-badge { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border-radius: 6px; background: #f0f2f3; border-left: 3px solid #7b858e; color: #364049; font-size: 10px; font-weight: 900; letter-spacing: -.02em; }
.file-badge.folder { border-left-color: var(--red); background: #f5eeee; color: #6a292c; }
.file-title-wrap { min-width: 0; }
.file-title { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 13px; font-weight: 700; }
.file-path { display: block; margin-top: 3px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #899198; font-size: 10px; }
.resource-meta { color: #626c74; font-size: 12px; }
.resource-actions { display: flex; justify-content: flex-end; gap: 7px; }
.icon-btn { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid #d5dadf; border-radius: 5px; background: #fff; color: #4d5861; cursor: pointer; }
.icon-btn:hover { border-color: #aeb6bd; color: #181d21; }
.icon-btn.primary { background: var(--red); border-color: var(--red); color: #fff; }
.icon-btn.primary:hover { background: var(--red-dark); }
.icon-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.resource-card { min-width: 0; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 7px 20px rgba(20,26,31,.04); }
.resource-card .resource-name { align-items: flex-start; }
.resource-card .file-badge { width: 46px; height: 46px; flex-basis: 46px; }
.resource-card .file-title { font-size: 14px; }
.card-meta { margin: 16px 0; display: grid; gap: 8px; padding-top: 13px; border-top: 1px solid #e9ecee; }
.card-meta-row { display: flex; justify-content: space-between; gap: 12px; color: #747d85; font-size: 11px; }
.card-meta-row strong { color: #485159; font-weight: 650; }
.resource-card .resource-actions { justify-content: flex-start; }

.btn { min-height: 40px; padding: 0 16px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 5px; text-decoration: none; font-size: 12px; font-weight: 750; cursor: pointer; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { background: #fff; color: #273038; border-color: #cfd5da; }
.btn-secondary:hover { background: #f5f6f7; }
.btn-ghost { background: transparent; color: #68727b; border-color: transparent; }

.loading-state, .empty-state, .error-state { min-height: 180px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--muted); }
.spinner { width: 30px; height: 30px; border: 3px solid #dfe3e6; border-top-color: var(--red); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 8px; background: #252c32; border-left: 4px solid var(--red); color: #fff; font-weight: 900; }
.empty-state h3 { margin: 4px 0 0; color: #3a434a; }
.empty-state p { margin: 0; font-size: 13px; }
.error-state { padding: 25px; color: #8e262a; background: #fff6f6; border-color: #eccbcd; }

.site-footer { min-height: 88px; padding: 20px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #11161a; border-top: 3px solid var(--red); color: #7f8992; font-size: 11px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #bcc3c9; }
.footer-brand img { width: 28px; height: 28px; }

.portal-dialog { width: min(950px, calc(100vw - 30px)); max-height: calc(100% - 30px); padding: 0; border: 1px solid #cfd5d9; border-radius: 9px; background: #fff; box-shadow: 0 28px 90px rgba(0,0,0,.34); }
.portal-dialog::backdrop { background: rgba(5,8,10,.72); backdrop-filter: blur(3px); }
.dialog-header { min-height: 74px; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); background: #f8f9fa; }
.dialog-header h2 { margin: 4px 0 0; font-size: 19px; }
.dialog-close { width: 40px; height: 40px; border: 1px solid #d3d8dc; border-radius: 6px; background: #fff; color: #56616a; font-size: 24px; cursor: pointer; }
.preview-body { min-height: 450px; background: #2c3237; }
.preview-body iframe { width: 100%; height: 620px; display: block; border: 0; background: #fff; }
.preview-body img { max-width: 100%; max-height: 650px; display: block; margin: 0 auto; object-fit: contain; }
.preview-body pre { margin: 0; min-height: 450px; max-height: 620px; overflow: auto; padding: 22px; background: #15191e; color: #dce2e7; white-space: pre-wrap; word-break: break-word; font: 12px/1.6 Consolas, monospace; }
.office-preview-note { padding: 10px 14px; background: #f3f5f6; border-top: 1px solid #d9dee2; color: #606a72; font-size: 12px; line-height: 1.45; }
.dialog-actions { padding: 14px 20px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; border-top: 1px solid var(--line); background: #f8f9fa; }
.details-body { padding: 21px 20px; }
.detail-grid { display: grid; grid-template-columns: 160px minmax(0, 1fr); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.detail-grid dt, .detail-grid dd { margin: 0; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.detail-grid dt { background: #f4f6f7; color: #667078; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.detail-grid dd { min-width: 0; overflow-wrap: anywhere; font-size: 12px; }
.detail-grid dt:last-of-type, .detail-grid dd:last-of-type { border-bottom: 0; }
.hash-box { margin-top: 16px; padding: 13px 14px; border: 1px solid #d9dee2; border-left: 4px solid var(--red); border-radius: 5px; background: #f7f8f9; }
.hash-box label { display: block; margin-bottom: 6px; color: #737d85; font-size: 10px; font-weight: 800; letter-spacing: .07em; }
.hash-value { font: 11px/1.55 Consolas, monospace; overflow-wrap: anywhere; color: #283139; }

[hidden] { display: none !important; }

@media (max-width: 1050px) {
    .folder-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .resource-list.view-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .list-head, .resource-row { grid-template-columns: minmax(220px, 1fr) 125px 140px 140px; }
    .list-head > :nth-child(4), .resource-row > :nth-child(4) { display: none; }
    .release-card { grid-template-columns: 1fr; }
    .release-actions { justify-content: flex-start; border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 720px) {
    .topbar { min-height: 64px; padding: 0 18px; gap: 10px; }
    .brand-mark { width: 33px; height: 33px; }
    .brand-copy strong { font-size: 14px; }
    .brand-copy span { font-size: 8px; }
    .main-nav { align-self: stretch; }
    .nav-link { min-height: 64px; padding: 0 10px; font-size: 12px; }
    .nav-link.active::after { left: 9px; right: 9px; }
    .hero { padding: 42px 20px; min-height: 280px; }
    .hero::after { display: none; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 15px; }
    .content-shell { width: calc(100% - 28px); padding-top: 30px; }
    .folder-grid, .resource-list.view-card { grid-template-columns: 1fr; }
    .browser-header { align-items: stretch; flex-direction: column; }
    .browser-tools { justify-content: space-between; }
    .sort-control { flex: 1; }
    .sort-control select { flex: 1; min-width: 0; }
    .list-head { display: none; }
    .resource-row { min-height: 78px; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; padding: 12px; }
    .resource-row > .resource-meta { display: none; }
    .resource-actions { grid-column: 2; grid-row: 1; }
    .release-main { align-items: flex-start; padding: 20px; }
    .release-badge { width: 58px; height: 58px; flex-basis: 58px; font-size: 19px; }
    .release-copy h3 { font-size: 17px; }
    .release-actions { padding: 15px 20px; }
    .site-footer { align-items: flex-start; flex-direction: column; padding: 22px 20px; }
    .preview-body { min-height: 330px; }
    .preview-body iframe { height: 480px; }
    .detail-grid { grid-template-columns: 115px minmax(0,1fr); }
}

@media (max-width: 480px) {
    .brand-copy span { display: none; }
    .topbar { padding-left: 12px; padding-right: 12px; }
    .brand { gap: 7px; }
    .brand-mark { width: 30px; height: 30px; }
    .brand-copy strong { font-size: 12px; }
    .nav-link { padding: 0 6px; font-size: 10.5px; }
    .hero h1 { font-size: 31px; }
    .hero-meta { display: none; }
    .search-box { min-height: 54px; }
    .folder-card { padding: 16px; }
    .browser-tools { align-items: stretch; flex-direction: column; }
    .view-toggle { align-self: flex-end; }
    .release-main { gap: 12px; }
    .release-badge { display: none; }
    .dialog-actions .btn { flex: 1; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-grid dt { border-bottom: 0; padding-bottom: 4px; }
    .detail-grid dd { padding-top: 4px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}




/* EULA Center: intentionally not a directory browser. */

.eula-mode .hero { padding-bottom: 54px; }

.eula-mode .browser-section { margin-top: 0; }

.eula-mode .browser-tools[hidden] { display: none !important; }

.eula-mode .breadcrumbs { min-height: 20px; }

.eula-agreement-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;

}

.eula-agreement-card {

    min-width: 0;

    padding: 24px;

    border: 1px solid var(--border);

    border-top: 3px solid var(--red);

    border-radius: 12px;

    background: var(--panel);

    box-shadow: 0 16px 40px rgba(0,0,0,.12);

}

.eula-agreement-heading {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    min-width: 0;

}

.eula-badge {

    flex: 0 0 auto;

    width: 52px;

    height: 52px;

    font-size: 11px;

    letter-spacing: .08em;

}

.eula-kicker {

    display: block;

    margin-bottom: 7px;

    color: var(--red-soft);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .14em;

}

.eula-agreement-card h3 {

    margin: 0;

    color: var(--text);

    font-size: 20px;

    line-height: 1.25;

}

.eula-agreement-card .file-path {

    display: block;

    margin-top: 5px;

    word-break: break-word;

}

.eula-agreement-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 20px 0;

    padding-top: 16px;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 12px;

}

.eula-agreement-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}

.eula-agreement-actions .btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}

.eula-agreement-actions .btn svg {

    width: 17px;

    height: 17px;

}

.eula-mode .preview-dialog {

    width: min(1120px, calc(100% - 28px));

}

.eula-mode .preview-body iframe {

    min-height: 650px;

    background: #fff;

}



@media (max-width: 760px) {

    .eula-agreement-grid { grid-template-columns: 1fr; }

    .eula-agreement-card { padding: 20px; }

    .eula-agreement-actions { flex-direction: column; }

    .eula-agreement-actions .btn { width: 100%; }

    .eula-mode .preview-body iframe { min-height: 500px; }

}



.eula-description {

    margin: 10px 0 0;

    max-width: 62ch;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.55;

}



.release-notes-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 18px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: 10px;
    background: var(--panel);
}
.release-notes-banner[hidden] { display: none !important; }
.release-notes-banner-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.release-notes-kicker {
    color: var(--red-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}
.release-notes-banner-copy strong {
    color: var(--text);
    font-size: 16px;
}
.release-notes-banner-copy > span:last-child {
    color: var(--muted);
    font-size: 12px;
}
.release-notes-banner .btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.release-notes-banner .btn svg {
    width: 17px;
    height: 17px;
}
@media (max-width: 680px) {
    .release-notes-banner {
        align-items: stretch;
        flex-direction: column;
    }
    .release-notes-banner .btn {
        width: 100%;
        justify-content: center;
    }
}




/* Release 1.2.2: release notes are part of the selected version page. */

.release-notes-section {

    margin: 22px 0 28px;

    overflow: hidden;

    background: #17191c;

    border: 1px solid #343b42;

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    color: #f4f6f8;

}

.release-notes-page-header {

    padding: 22px 26px 18px;

    background:

        linear-gradient(90deg, rgba(215,25,32,.14), transparent 52%),

        #202327;

    border-bottom: 1px solid #343b42;

}

.release-notes-page-header h3 {

    margin: 6px 0 0;

    color: #fff;

    font-size: 24px;

    letter-spacing: -.02em;

}

.release-notes-content {

    padding: 4px 26px 28px;

}

.release-notes-loading {

    min-height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: #b7bdc4;

}

.release-notes-section .spinner {

    border-color: rgba(255,255,255,.16);

    border-top-color: var(--red);

}

.release-notes-inline-body {

    width: 100%;

}

.release-notes-inline-body .release-meta {

    margin: 22px 0 4px;

    color: #b7bdc4;

    font-size: 14px;

}

.release-notes-inline-body .section {

    margin-top: 28px;

}

.release-notes-inline-body .section-title {

    margin: 0;

    padding: 9px 12px;

    background: var(--red);

    color: #fff;

    border: 1px solid var(--red);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: .01em;

}

.release-notes-inline-body .notes-table {

    width: 100%;

    border-collapse: collapse;

    background: #202327;

}

.release-notes-inline-body .notes-table td {

    padding: 10px 12px;

    border: 1px solid #4a4f55;

    color: #f4f6f8;

    vertical-align: top;

    font-size: 14px;

    line-height: 1.5;

    overflow-wrap: anywhere;

}

.release-notes-inline-body .notes-table tr:nth-child(even) td {

    background: rgba(255,255,255,.018);

}

.release-notes-error {

    margin: 22px 0 0;

    padding: 18px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    background: rgba(215,25,32,.08);

    border: 1px solid rgba(215,25,32,.32);

    border-radius: 8px;

    color: #f4f6f8;

}

.release-notes-error span {

    color: #c5cbd0;

}

.release-files-heading {

    margin: 30px 0 14px;

    padding-top: 4px;

}

.release-files-heading h3 {

    margin: 5px 0 0;

    font-size: 21px;

    letter-spacing: -.02em;

}

.release-notes-section[aria-busy="true"] .release-notes-content {

    min-height: 180px;

}



@media (max-width: 700px) {

    .release-notes-page-header {

        padding: 19px 18px 16px;

    }

    .release-notes-page-header h3 {

        font-size: 21px;

    }

    .release-notes-content {

        padding: 2px 14px 20px;

    }

    .release-notes-inline-body .section {

        margin-top: 22px;

    }

    .release-notes-inline-body .section-title {

        font-size: 13px;

        line-height: 1.35;

    }

    .release-notes-inline-body .notes-table td {

        padding: 10px;

        font-size: 13px;

    }

}





/* Release 1.2.3 */

.release-notes-after-files {

    margin-top: 34px;

}

.release-notes-dialog {

    width: min(1050px, calc(100% - 30px));

}

.release-notes-dialog-body {

    max-height: min(72vh, 760px);

    overflow: auto;

    padding: 4px 24px 28px;

    background: #17191c;

    color: #f4f6f8;

}

.release-notes-popup-body {

    width: 100%;

}

.release-notes-popup-body .release-meta {

    margin: 22px 0 4px;

    color: #b7bdc4;

    font-size: 14px;

}

.release-notes-popup-body .section {

    margin-top: 26px;

}

.release-notes-popup-body .section-title {

    margin: 0;

    padding: 9px 12px;

    background: var(--red);

    color: #fff;

    border: 1px solid var(--red);

    font-size: 15px;

    font-weight: 800;

}

.release-notes-popup-body .notes-table {

    width: 100%;

    border-collapse: collapse;

    background: #202327;

}

.release-notes-popup-body .notes-table td {

    padding: 10px 12px;

    border: 1px solid #4a4f55;

    color: #f4f6f8;

    vertical-align: top;

    font-size: 14px;

    line-height: 1.5;

    overflow-wrap: anywhere;

}

.release-notes-popup-body .notes-table tr:nth-child(even) td {

    background: rgba(255,255,255,.018);

}



@media (max-width: 700px) {

    .release-notes-dialog-body {

        padding: 2px 12px 20px;

        max-height: 68vh;

    }

    .release-notes-popup-body .section-title {

        font-size: 13px;

        line-height: 1.35;

    }

    .release-notes-popup-body .notes-table td {

        padding: 10px;

        font-size: 13px;

    }

}



/* Release 1.5.0 - legal footer */
.site-footer {
    gap: 18px;
}
.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.site-footer-links a,
.site-footer-legal a {
    color: inherit;
    text-underline-offset: 2px;
}
.site-footer-legal {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 650px;
    color: inherit;
    font-size: 11px;
    line-height: 1.45;
}
