/* ===========================================================================
   GIX page systems
   Board, gallery, authentication, administration and error experiences
   ========================================================================== */

body.gix-board-page,
body.gix-gallery-page,
body.gix-auth-page,
body.gix-admin-page {
    background:
        radial-gradient(circle at 86% 4%, rgba(var(--gx-event-accent-rgb), 0.105), transparent 25rem),
        radial-gradient(circle at 7% 62%, rgba(var(--gx-event-accent-rgb), 0.09), transparent 28rem),
        linear-gradient(180deg, var(--gx-bg-deep) 0, var(--gx-bg) 48%, var(--gx-bg-deep) 100%);
}

.gx-page__shell--narrow {
    max-width: 1120px;
}

.gx-page__shell--auth {
    max-width: 1120px;
}

.gx-page__shell--error {
    max-width: 980px;
}

.gx-button--text {
    min-height: 40px;
    padding-inline: 8px;
    border-color: transparent;
    color: var(--gx-muted);
    background: transparent;
    font-size: 0.74rem;
}

.gx-button--text:hover {
    color: var(--gx-cyan);
    background: rgba(var(--gx-event-accent-rgb), 0.04);
}

.gx-button--small {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 0.7rem;
}

.gx-button--block {
    width: 100%;
}

.gx-form-control {
    min-width: 0;
}

.gx-form-label-row {
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gx-form-required,
.gx-form-optional {
    font: 800 0.58rem/1 var(--gx-mono);
    letter-spacing: 0.06em;
}

.gx-form-required {
    color: #ff9bab;
}

.gx-form-optional {
    color: var(--gx-faint);
}

.gx-form-alert {
    margin: 20px 0;
    line-height: 1.55;
}

.gx-form-alert__icon {
    width: 27px;
    height: 27px;
    display: inline-grid;
    flex: 0 0 27px;
    place-items: center;
    border: 1px solid rgba(255, 113, 133, 0.55);
    border-radius: 50%;
    color: #ffd3da;
    font: 900 0.75rem/1 var(--gx-mono);
}

.gx-form-alert-title,
.gx-form-alert strong {
    color: #ffe5e9;
}

.gx-form-alert__body {
    min-width: 0;
}

.gx-form-alert-list {
    width: 100%;
}

.gx-form-alert--compact {
    margin: 0 0 22px;
    padding: 12px 14px;
    align-items: center;
}

.gx-form-alert--compact p {
    margin: 0;
    font-size: 0.76rem;
}

.gx-form-select,
.gx-form-input,
.gx-form-input-prefix,
.gx-form-file {
    position: relative;
}

.gx-form-select::after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--gx-cyan);
    border-bottom: 1px solid var(--gx-cyan);
    content: '';
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}

.gx-form-select select {
    appearance: none;
}

.gx-form-input-prefix > span {
    position: absolute;
    top: 50%;
    left: 13px;
    z-index: 1;
    min-width: 28px;
    color: var(--gx-cyan);
    font: 800 0.58rem/1 var(--gx-mono);
    letter-spacing: 0.05em;
    pointer-events: none;
    transform: translateY(-50%);
}

.gx-form .gx-form-field .gx-form-input-prefix input.gx-form-control {
    padding-left: 54px;
}

.gx-form-field:focus-within .gx-form-label,
.gx-form-group:focus-within .gx-form-label,
.gx-form-row:focus-within .gx-form-row__label label {
    color: var(--gx-cyan-bright);
}

.gx-form--inline,
.gx-form--editor {
    width: 100%;
}

.gx-form-field--select,
.gx-form-field--compact,
.gx-form-field--wide {
    min-width: 0;
}

.gx-form-select--large select {
    min-height: 52px;
}

.gx-table-caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Board system
   -------------------------------------------------------------------------- */

.gx-board {
    position: relative;
    width: min(calc(100% - 40px), var(--gx-page));
    margin-inline: auto;
    padding: 42px 0 96px;
}

.gx-board--list {
    max-width: var(--gx-page);
}

.gx-board--detail,
.gx-board--editor {
    max-width: var(--gx-page);
}

.gx-board-hero {
    position: relative;
    min-height: 282px;
    padding: clamp(30px, 4.5vw, 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    align-items: end;
    gap: clamp(28px, 7vw, 90px);
    overflow: hidden;
    border: 1px solid var(--gx-line-strong);
    border-radius: 13px 13px 4px 4px;
    background:
        linear-gradient(90deg, rgba(var(--gx-event-accent-rgb), 0.035) 1px, transparent 1px),
        linear-gradient(rgba(var(--gx-event-accent-rgb), 0.035) 1px, transparent 1px),
        radial-gradient(circle at 84% 14%, rgba(var(--gx-event-accent-rgb), 0.17), transparent 27%),
        linear-gradient(128deg, rgba(10, 39, 42, 0.97), rgba(3, 12, 15, 0.99) 62%);
    background-size:
        38px 38px,
        38px 38px,
        auto,
        auto;
    box-shadow:
        var(--gx-shadow),
        inset 0 1px rgba(209, 255, 249, 0.04);
}

.gx-board-hero::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    height: 4px;
    content: '';
    background: linear-gradient(90deg, transparent, var(--gx-cyan));
    box-shadow: 0 0 18px rgba(var(--gx-event-accent-rgb), 0.4);
}

.gx-board-hero__signal {
    position: absolute;
    top: 22px;
    left: 24px;
    display: flex;
    gap: 6px;
}

.gx-board-hero__signal span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gx-faint);
}

.gx-board-hero__signal span:first-child {
    background: var(--gx-cyan);
    box-shadow: 0 0 9px var(--gx-cyan);
}

.gx-board-hero__copy,
.gx-board-hero__console,
.gx-board-detail__topline,
.gx-board-breadcrumb,
.gx-board-detail__title,
.gx-board-detail__meta {
    position: relative;
    z-index: 2;
}

.gx-board-eyebrow {
    margin: 0 0 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #729093;
    font: 800 0.66rem/1.4 var(--gx-mono);
    letter-spacing: 0.1em;
}

.gx-board-eyebrow span {
    color: var(--gx-cyan);
}

.gx-board-eyebrow b {
    color: #315052;
    font-weight: 400;
}

.gx-board-hero h1 {
    max-width: 800px;
    margin: 0;
    color: var(--gx-ink);
    font-size: clamp(2.25rem, 5.8vw, 4.9rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 1.02;
    text-wrap: balance;
}

.gx-board-hero__description {
    max-width: 610px;
    margin: 18px 0 0;
    color: #98adaf;
    font-size: 0.88rem;
}

.gx-board-hero__console {
    padding: 19px;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.2);
    border-radius: 7px;
    background: rgba(2, 13, 15, 0.7);
    box-shadow: inset 0 0 30px rgba(var(--gx-event-accent-rgb), 0.035);
    backdrop-filter: blur(8px);
}

.gx-board-status {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9db0b1;
    font: 800 0.59rem/1.4 var(--gx-mono);
    letter-spacing: 0.06em;
}

.gx-board-status i {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background: var(--gx-success);
    box-shadow: 0 0 10px var(--gx-success);
}

.gx-board-counter {
    margin: 16px 0 19px;
    padding: 15px 0;
    border-top: 1px solid rgba(var(--gx-event-accent-rgb), 0.1);
    border-bottom: 1px solid rgba(var(--gx-event-accent-rgb), 0.1);
}

.gx-board-counter div {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.gx-board-counter dt {
    color: #577174;
    font: 700 0.55rem/1.3 var(--gx-mono);
    letter-spacing: 0.06em;
}

.gx-board-counter dd {
    margin: 0;
    color: var(--gx-ink);
    font: 900 1.7rem/1 var(--gx-mono);
}

.gx-board-counter small {
    margin-left: 6px;
    color: var(--gx-cyan);
    font-size: 0.47rem;
    letter-spacing: 0.08em;
}

.gx-board-hero__console .gx-button {
    width: 100%;
}

.gx-board-hero__orbit {
    position: absolute;
    top: -148px;
    right: -95px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.gx-board-hero__orbit::before,
.gx-board-hero__orbit::after {
    position: absolute;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.12);
    border-radius: 50%;
    content: '';
}

.gx-board-hero__orbit::before {
    inset: 58px;
    border-style: dashed;
}

.gx-board-hero__orbit::after {
    inset: 126px;
    box-shadow: 0 0 42px rgba(var(--gx-event-accent-rgb), 0.06);
}

.gx-board-search {
    margin-top: 18px;
    padding: clamp(24px, 3.5vw, 38px);
    border: 1px solid var(--gx-line);
    border-radius: 4px 4px 10px 10px;
    background: linear-gradient(145deg, rgba(9, 27, 30, 0.9), rgba(3, 12, 15, 0.96));
}

.gx-board-search__heading {
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 22px;
}

.gx-board-section-code {
    margin: 0;
    color: var(--gx-cyan);
    font: 800 0.6rem/1.45 var(--gx-mono);
    letter-spacing: 0.1em;
}

.gx-board-search__heading h2,
.gx-board-stream__header h2,
.gx-board-article__header h2 {
    margin: 0;
    color: var(--gx-ink);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.gx-board-search__heading div > p {
    margin: 7px 0 0;
    color: var(--gx-muted);
    font-size: 0.76rem;
}

.gx-form--search {
    display: grid;
    grid-template-columns: minmax(160px, 0.82fr) minmax(190px, 1fr) minmax(260px, 1.7fr) auto;
    align-items: end;
    gap: 13px;
}

.gx-form-field label {
    margin-bottom: 8px;
    display: block;
}

.gx-form--search .gx-form-field label {
    color: #9badaf;
    font: 800 0.69rem/1.3 var(--gx-sans);
}

.gx-form--search .gx-form-field label span {
    margin-right: 5px;
    color: var(--gx-cyan);
    font: 800 0.55rem/1 var(--gx-mono);
}

.gx-form-input--search > span {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 1;
    color: var(--gx-cyan);
    pointer-events: none;
    transform: translateY(-50%);
}

.gx-form.gx-form--search .gx-form-field.gx-form-field--query .gx-form-input--search input {
    padding-left: 43px;
}

.gx-board-search__actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gx-board-stream {
    margin-top: 58px;
}

.gx-board-stream__header,
.gx-board-article__header {
    margin-bottom: 17px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.gx-board-stream__total {
    margin: 0;
    color: var(--gx-muted);
    font: 700 0.62rem/1.4 var(--gx-mono);
    letter-spacing: 0.08em;
}

.gx-board-stream__total strong {
    margin-left: 7px;
    color: var(--gx-cyan);
    font-size: 1rem;
}

.gx-board-table-wrap {
    overflow: hidden;
    border-top: 1px solid var(--gx-cyan);
    border-bottom: 1px solid var(--gx-line);
    background: rgba(3, 12, 15, 0.5);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.gx-board-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.gx-board-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.gx-board-table th,
.gx-board-table td {
    padding: 19px 18px;
    border-bottom: 1px solid rgba(var(--gx-event-accent-rgb), 0.09);
    text-align: left;
}

.gx-board-table th {
    color: #648083;
    background: rgba(10, 31, 34, 0.88);
    font: 800 0.6rem/1.3 var(--gx-mono);
    letter-spacing: 0.09em;
}

.gx-board-table th:first-child,
.gx-board-table td:first-child {
    width: 110px;
}

.gx-board-table th:nth-child(3),
.gx-board-table td:nth-child(3) {
    width: 150px;
}

.gx-board-table th:nth-child(4),
.gx-board-table td:nth-child(4) {
    width: 145px;
}

.gx-board-table th:last-child,
.gx-board-table td:last-child {
    width: 88px;
    text-align: right;
}

.gx-board-table tbody tr {
    transition:
        background 150ms ease,
        box-shadow 150ms ease;
}

.gx-board-table tbody tr:hover {
    background: rgba(var(--gx-event-accent-rgb), 0.045);
    box-shadow: inset 3px 0 var(--gx-cyan);
}

.gx-board-table tbody tr:last-child td {
    border-bottom: 0;
}

.gx-board-table__node,
.gx-board-table time,
.gx-board-table__views {
    color: #71888a;
    font: 700 0.68rem/1.4 var(--gx-mono);
}

.gx-board-table__author {
    color: #9fb2b3;
    font-size: 0.76rem;
}

.gx-board-table__title a {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #dce9e8;
    font-size: 0.87rem;
    font-weight: 800;
}

.gx-board-table__title a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gx-board-table__title a b {
    color: var(--gx-faint);
    font-family: var(--gx-mono);
    transition:
        color 150ms ease,
        transform 150ms ease;
}

.gx-board-table__title a:hover {
    color: var(--gx-cyan-bright);
}

.gx-board-table__title a:hover b {
    color: var(--gx-cyan);
    transform: translate(2px, -2px);
}

.gx-board-table__empty-row:hover {
    background: transparent;
    box-shadow: none;
}

.gx-board-empty {
    min-height: 270px;
    display: grid;
    place-items: center;
    align-content: center;
    color: var(--gx-muted);
    text-align: center;
}

.gx-board-empty__symbol {
    margin-bottom: 15px;
    color: var(--gx-cyan-dim);
    font: 300 2.3rem/1 var(--gx-mono);
}

.gx-board-empty strong {
    color: var(--gx-ink);
    font-size: 0.9rem;
}

.gx-board-empty p {
    margin: 6px 0 0;
    font-size: 0.73rem;
}

.gx-board-pagination {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gx-board-pagination > p {
    margin: 0;
    color: var(--gx-faint);
    font: 700 0.55rem/1.3 var(--gx-mono);
    letter-spacing: 0.1em;
}

.gx-board-pagination ol {
    margin: 0;
    padding: 0;
    display: flex;
    overflow-x: auto;
    list-style: none;
}

.gx-board-pagination a,
.gx-board-pagination strong {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.12);
    color: #788d90;
    font: 800 0.68rem/1 var(--gx-mono);
}

.gx-board-pagination a:hover {
    border-color: var(--gx-line-strong);
    color: var(--gx-cyan);
    background: rgba(var(--gx-event-accent-rgb), 0.06);
}

.gx-board-pagination strong {
    border-color: var(--gx-cyan);
    color: var(--gx-on-accent);
    background: var(--gx-cyan);
    box-shadow: 0 0 16px rgba(var(--gx-event-accent-rgb), 0.18);
}

.gx-board-pagination__direction a {
    color: var(--gx-ink);
}

/* Board detail */
.gx-board-hero--detail {
    min-height: 390px;
    display: block;
}

.gx-board-hero--editor {
    background:
        linear-gradient(90deg, rgba(var(--gx-event-accent-rgb), 0.032) 1px, transparent 1px),
        linear-gradient(rgba(var(--gx-event-accent-rgb), 0.032) 1px, transparent 1px),
        radial-gradient(circle at 84% 14%, rgba(var(--gx-event-accent-rgb), 0.19), transparent 29%),
        linear-gradient(128deg, rgba(8, 34, 37, 0.98), rgba(2, 11, 14, 0.99) 64%);
    background-size:
        38px 38px,
        38px 38px,
        auto,
        auto;
}

.gx-board-detail__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gx-board-detail__topline .gx-board-eyebrow {
    margin: 0;
}

.gx-board-breadcrumb {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #607b7d;
    font-size: 0.7rem;
}

.gx-board-breadcrumb a:hover {
    color: var(--gx-cyan);
}

.gx-board-breadcrumb strong {
    color: #9aadaf;
}

.gx-board-detail__title {
    max-width: 900px;
    margin-top: 22px;
}

.gx-board-detail__title > p {
    margin: 0 0 7px;
    color: var(--gx-cyan);
    font: 800 0.66rem/1.4 var(--gx-mono);
}

.gx-board-hero--detail h1 {
    font-size: clamp(2rem, 4.5vw, 3.9rem);
}

.gx-board-detail__meta {
    margin: 44px 0 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(var(--gx-event-accent-rgb), 0.18);
}

.gx-board-detail__meta > div {
    min-width: 0;
    padding: 18px 18px 0 0;
}

.gx-board-detail__meta > div + div {
    padding-left: 22px;
    border-left: 1px solid rgba(var(--gx-event-accent-rgb), 0.1);
}

.gx-board-detail__meta dt {
    color: #557174;
    font: 700 0.54rem/1.3 var(--gx-mono);
    letter-spacing: 0.08em;
}

.gx-board-detail__meta dd {
    margin: 5px 0 0;
    overflow: hidden;
    color: #c7d6d7;
    font-size: 0.76rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gx-board-article {
    margin-top: 28px;
    border: 1px solid var(--gx-line);
    border-top-color: var(--gx-line-strong);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(8, 25, 28, 0.88), rgba(2, 10, 13, 0.98));
    box-shadow: var(--gx-shadow);
}

.gx-board-article__header {
    margin: 0;
    padding: 21px 26px;
    border-bottom: 1px solid var(--gx-line);
    background: rgba(13, 38, 41, 0.42);
}

.gx-board-article__header > p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #607779;
    font: 700 0.53rem/1.4 var(--gx-mono);
    letter-spacing: 0.07em;
}

.gx-board-article__header > p span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gx-success);
    box-shadow: 0 0 8px var(--gx-success);
}

.gx-board-article__body {
    min-height: 360px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
}

.gx-board-article__rail {
    padding: 27px 0 22px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 11px;
    border-right: 1px solid rgba(var(--gx-event-accent-rgb), 0.1);
    color: #4d696b;
    font: 700 0.54rem/1 var(--gx-mono);
}

.gx-board-article__rail i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #345154;
}

.gx-board-article__rail i:first-of-type {
    background: var(--gx-cyan);
    box-shadow: 0 0 7px var(--gx-cyan);
}

.gx-board-article__rail b {
    margin-top: auto;
    color: #365255;
}

.gx-board-article__body pre {
    min-width: 0;
    margin: 0;
    padding: clamp(28px, 5vw, 58px);
    color: #c7d4d5;
    font: 400 0.94rem/2 var(--gx-sans);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.gx-board-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gx-board-actions__admin {
    display: flex;
    gap: 9px;
}

.gx-board-delete {
    margin: 0;
}

/* Board editor */
.gx-board--editor .gx-form-alert {
    margin-top: 22px;
}

.gx-form-workspace {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 225px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.gx-form-rail {
    position: sticky;
    top: 122px;
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 8px;
    background: rgba(4, 16, 19, 0.9);
}

.gx-form-rail__heading {
    padding: 16px 17px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--gx-line);
    color: var(--gx-cyan);
    font: 800 0.56rem/1.3 var(--gx-mono);
    letter-spacing: 0.07em;
}

.gx-form-rail__heading b {
    color: #587174;
}

.gx-form-rail ol {
    margin: 0;
    padding: 14px 17px;
    display: grid;
    list-style: none;
}

.gx-form-rail li {
    position: relative;
    padding: 13px 0;
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 10px;
}

.gx-form-rail li + li::before {
    position: absolute;
    top: -7px;
    left: 14px;
    width: 1px;
    height: 16px;
    content: '';
    background: rgba(var(--gx-event-accent-rgb), 0.16);
}

.gx-form-rail li > span {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 50%;
    color: var(--gx-cyan);
    font: 800 0.52rem/1 var(--gx-mono);
}

.gx-form-rail li strong,
.gx-form-rail li small {
    display: block;
}

.gx-form-rail li strong {
    color: #c5d3d4;
    font-size: 0.74rem;
}

.gx-form-rail li small {
    margin-top: 2px;
    color: #607476;
    font-size: 0.64rem;
}

.gx-form-rail__notice {
    padding: 16px 17px;
    border-top: 1px solid var(--gx-line);
    background: rgba(var(--gx-event-accent-rgb), 0.025);
}

.gx-form-rail__notice p {
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8ea3a5;
    font: 700 0.55rem/1.3 var(--gx-mono);
}

.gx-form-rail__notice i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gx-warning);
    box-shadow: 0 0 7px var(--gx-warning);
}

.gx-form-rail__notice small {
    color: #627779;
    font-size: 0.63rem;
    line-height: 1.55;
}

.gx-form-panel {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 9px;
    background: rgba(3, 13, 16, 0.94);
    box-shadow: var(--gx-shadow);
}

.gx-board--editor .gx-form-section + .gx-form-section {
    border-top: 1px solid var(--gx-line);
}

.gx-board--editor .gx-form-section__header {
    min-height: 92px;
    padding: 21px clamp(20px, 3.5vw, 34px);
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    background: linear-gradient(90deg, rgba(17, 47, 50, 0.66), rgba(6, 21, 24, 0.4));
}

.gx-board--editor .gx-form-section__header > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 50%;
    color: var(--gx-cyan);
    font: 800 0.61rem/1 var(--gx-mono);
}

.gx-board--editor .gx-form-section__header p,
.gx-board--editor .gx-form-section__header h2 {
    margin: 0;
}

.gx-board--editor .gx-form-section__header p {
    color: #527073;
    font: 800 0.53rem/1.4 var(--gx-mono);
    letter-spacing: 0.08em;
}

.gx-board--editor .gx-form-section__header h2 {
    margin-top: 2px;
    color: var(--gx-ink);
    font-size: 1.12rem;
    letter-spacing: -0.03em;
}

.gx-board--editor .gx-form-section__header > small {
    color: #526b6e;
    font: 700 0.52rem/1.3 var(--gx-mono);
    letter-spacing: 0.06em;
}

.gx-board--editor .gx-form-section__body {
    padding: 4px clamp(20px, 3.5vw, 34px) 12px;
}

.gx-form-row {
    padding: 25px 0;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
}

.gx-form-row + .gx-form-row {
    border-top: 1px solid rgba(var(--gx-event-accent-rgb), 0.08);
}

.gx-form-row__label {
    padding-top: 11px;
}

.gx-form-row__label label,
.gx-form-row__label span {
    display: block;
}

.gx-form-row__label label {
    color: #c5d3d4;
    font-size: 0.8rem;
    font-weight: 800;
}

.gx-form-row__label span {
    margin-top: 4px;
    color: var(--gx-danger);
    font: 700 0.54rem/1.3 var(--gx-mono);
}

.gx-form-row__control {
    min-width: 0;
}

.gx-form-row--textarea .gx-form-row__label {
    align-self: start;
}

.gx-form-input--counter > span {
    position: absolute;
    top: 50%;
    right: 13px;
    color: #50696b;
    font: 700 0.52rem/1 var(--gx-mono);
    pointer-events: none;
    transform: translateY(-50%);
}

.gx-form.gx-form--editor .gx-form-row .gx-form-input--counter input {
    padding-right: 76px;
}

.gx-form-textarea {
    overflow: hidden;
    border: 1px solid rgba(137, 202, 196, 0.28);
    border-radius: 5px;
    background: rgba(3, 14, 17, 0.9);
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.gx-form-textarea:focus-within {
    border-color: var(--gx-cyan);
    box-shadow: 0 0 0 3px rgba(var(--gx-event-accent-rgb), 0.1);
}

.gx-form-textarea__bar {
    height: 38px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(var(--gx-event-accent-rgb), 0.12);
    color: #628083;
    background: rgba(12, 35, 38, 0.82);
    font: 700 0.52rem/1 var(--gx-mono);
}

.gx-form-textarea__bar i {
    height: 1px;
    flex: 1;
    background: rgba(var(--gx-event-accent-rgb), 0.1);
}

.gx-form-textarea__bar b {
    color: var(--gx-cyan);
}

.gx-form .gx-form-textarea textarea {
    min-height: 370px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.gx-form-section--publish .gx-form-section__body {
    padding-block: 18px 28px;
}

.gx-form-publish {
    padding: 4px 0;
}

.gx-form-switch {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.gx-form-switch > input,
.gx-form-switch-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.gx-form-switch__track,
.gx-form-switch-visual {
    position: relative;
    width: 54px;
    height: 29px;
    display: block;
    flex: 0 0 54px;
    border: 1px solid rgba(137, 202, 196, 0.3);
    border-radius: 999px;
    background: #142326;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.gx-form-switch__track i,
.gx-form-switch-visual i {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #788b8d;
    transition:
        left 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.gx-form-switch > input:checked + .gx-form-switch__track,
.gx-form-switch-input:checked + .gx-form-switch-visual {
    border-color: var(--gx-cyan);
    background: rgba(25, 116, 106, 0.55);
    box-shadow: 0 0 14px rgba(var(--gx-event-accent-rgb), 0.12);
}

.gx-form-switch > input:checked + .gx-form-switch__track i,
.gx-form-switch-input:checked + .gx-form-switch-visual i {
    left: 29px;
    background: var(--gx-cyan-bright);
    box-shadow: 0 0 9px rgba(var(--gx-event-accent-rgb), 0.5);
}

.gx-form-switch > input:focus-visible + .gx-form-switch__track,
.gx-form-switch-input:focus-visible + .gx-form-switch-visual {
    outline: 2px solid var(--gx-cyan);
    outline-offset: 3px;
}

.gx-form-switch__copy,
.gx-form-switch-copy {
    min-width: 0;
    display: grid;
}

.gx-form-switch__copy strong,
.gx-form-switch-copy strong {
    color: var(--gx-ink);
    font-size: 0.8rem;
}

.gx-form-switch__copy small,
.gx-form-switch-copy small {
    margin-top: 2px;
    color: var(--gx-muted);
    font-size: 0.68rem;
    line-height: 1.45;
}

.gx-form-switch__state {
    margin-left: auto;
    display: grid;
    color: #6d8183;
    font: 800 0.55rem/1.35 var(--gx-mono);
    text-align: right;
}

.gx-form-switch__state b {
    display: none;
    color: var(--gx-cyan);
}

.gx-form-switch > input:checked ~ .gx-form-switch__state b {
    display: block;
}

.gx-form-switch > input:checked ~ .gx-form-switch__state i {
    display: none;
}

.gx-form-switch__state i {
    font-style: normal;
}

.gx-board--editor .gx-form-actions {
    margin-top: 18px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--gx-line);
    border-radius: 7px;
    background: rgba(5, 18, 21, 0.82);
}

.gx-board--editor .gx-form-actions > p {
    margin: 0;
    color: #718689;
    font-size: 0.69rem;
}

.gx-board--editor .gx-form-actions > p span {
    margin-right: 6px;
    color: var(--gx-warning);
    font-size: 0.53rem;
}

.gx-board--editor .gx-form-actions > div {
    display: flex;
    gap: 9px;
}

/* --------------------------------------------------------------------------
   Exhibitor directory
   -------------------------------------------------------------------------- */

.gx-exhibitor-page {
    position: relative;
    isolation: isolate;
}

.gx-exhibitor-search {
    margin-top: 18px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.5fr);
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    border: 1px solid var(--gx-line);
    border-radius: 7px;
    background: linear-gradient(115deg, rgba(12, 35, 38, 0.9), rgba(3, 14, 17, 0.95));
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
}

.gx-exhibitor-search__copy {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.gx-exhibitor-search__copy > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 50%;
    color: var(--gx-cyan);
    font: 800 0.58rem/1 var(--gx-mono);
}

.gx-exhibitor-search__copy strong,
.gx-exhibitor-search__copy small {
    display: block;
}

.gx-exhibitor-search__copy strong {
    color: var(--gx-ink);
    font-size: 0.78rem;
}

.gx-exhibitor-search__copy small {
    margin-top: 4px;
    color: var(--gx-muted);
    font-size: 0.67rem;
}

.gx-exhibitor-search__controls {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 9px;
}

.gx-form.gx-exhibitor-search .gx-exhibitor-search__controls .gx-form-input--search input {
    min-height: 44px;
    padding-left: 43px;
}

.gx-exhibitor-directory {
    margin-top: 52px;
}

.gx-exhibitor-table-wrap {
    overflow: hidden;
    border-top: 1px solid var(--gx-cyan);
    border-bottom: 1px solid var(--gx-line);
    background: rgba(3, 12, 15, 0.5);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.gx-exhibitor-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.gx-exhibitor-table th,
.gx-exhibitor-table td {
    padding: 20px 18px;
    border-bottom: 1px solid rgba(var(--gx-event-accent-rgb), 0.09);
    text-align: left;
    vertical-align: top;
}

.gx-exhibitor-table th {
    color: #648083;
    background: rgba(10, 31, 34, 0.88);
    font: 800 0.6rem/1.3 var(--gx-mono);
    letter-spacing: 0.09em;
}

.gx-exhibitor-table th:first-child,
.gx-exhibitor-table td:first-child {
    width: 140px;
}

.gx-exhibitor-table th:nth-child(2),
.gx-exhibitor-table td:nth-child(2) {
    width: 240px;
}

.gx-exhibitor-table th:nth-child(4),
.gx-exhibitor-table td:nth-child(4) {
    width: 110px;
}

.gx-exhibitor-table th:nth-child(5),
.gx-exhibitor-table td:nth-child(5) {
    width: 96px;
    text-align: right;
}

.gx-exhibitor-table tbody tr {
    transition:
        background 150ms ease,
        box-shadow 150ms ease;
}

.gx-exhibitor-table tbody tr:hover {
    background: rgba(var(--gx-event-accent-rgb), 0.045);
    box-shadow: inset 3px 0 var(--gx-cyan);
}

.gx-exhibitor-table tbody tr:last-child td {
    border-bottom: 0;
}

.gx-exhibitor-table__booth {
    color: var(--gx-cyan);
    font: 800 0.75rem/1.5 var(--gx-mono);
}

.gx-exhibitor-table__company {
    color: #dce9e8;
    font-size: 0.88rem;
}

.gx-exhibitor-table__description {
    margin: 0;
    color: #9fb2b3;
    font: inherit;
    font-size: 0.78rem;
    line-height: 1.75;
    white-space: pre-wrap;
    word-break: keep-all;
}

.gx-exhibitor-table__actions .gx-button {
    width: 100%;
}

.gx-exhibitor-table__empty-row:hover {
    background: transparent;
    box-shadow: none;
}

/* --------------------------------------------------------------------------
   Gallery archive and editor
   -------------------------------------------------------------------------- */

body.gix-gallery-page {
    background: #0a0b0a;
}

.gix-gallery-page .gx-backdrop {
    display: none;
}

.gx-gallery-page {
    position: relative;
    color: #f7f9f8;
    background: #0a0b0a;
}

.gx-gallery-page__shell {
    width: min(calc(100% - 32px), 1056px);
    margin-inline: auto;
    padding: 22px 0 60px;
}

.gx-gallery-header {
    margin: 0 0 16px;
}

.gx-gallery-header h1 {
    margin: 0;
    color: #f7f9f8;
    font-size: 19px;
    line-height: 1.35;
}

.gx-page-hero--split {
    min-height: 270px;
}

.gx-page-hero__copy,
.gx-page-hero__actions {
    position: relative;
    z-index: 2;
}

.gx-page-hero__eyebrow {
    margin: 0 0 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--gx-cyan);
    font: 800 0.63rem/1.4 var(--gx-mono);
    letter-spacing: 0.1em;
}

.gx-page-hero__signal {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    background: var(--gx-cyan);
    box-shadow: 0 0 10px var(--gx-cyan);
}

.gx-page-hero__title {
    text-wrap: balance;
}

.gx-page-hero__title span {
    color: var(--gx-cyan);
}

.gx-page-hero__description {
    max-width: 630px;
    margin: 16px 0 0;
    color: #91a5a7;
    font-size: 0.84rem;
}

.gx-page-hero__actions {
    align-self: end;
}

.gx-gallery-filter {
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 8px;
}

.gx-gallery-filter__field {
    display: grid;
    gap: 5px;
}

.gx-gallery-filter__field > span:first-child {
    color: #b8bfbd;
    font-size: 10px;
    line-height: 1.3;
}

.gx-gallery-filter__select {
    position: relative;
}

.gx-gallery-filter select,
.gx-gallery-filter__submit {
    min-height: 34px;
    box-sizing: border-box;
    border: 1px solid #555a58;
    border-radius: 0;
    font: inherit;
    font-size: 11px;
}

.gx-gallery-filter select {
    min-width: 138px;
    padding: 0 30px 0 10px;
    color: #f7f9f8;
    background: #212121;
    color-scheme: dark;
}

.gx-gallery-filter select:focus-visible,
.gx-gallery-filter__submit:focus-visible,
.gx-gallery-card__link:focus-visible {
    outline: 2px solid #33ffdd;
    outline-offset: 2px;
}

.gx-gallery-filter__submit {
    padding: 0 16px;
    color: #07110f;
    background: #33ffdd;
    cursor: pointer;
    font-weight: 700;
}

.gx-gallery-filter__submit:hover {
    background: #78f7e5;
}

.gx-gallery-grid {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.gx-gallery-grid__item {
    min-width: 0;
}

.gx-gallery-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #494d4c;
    background: #212121;
}

.gx-gallery-card:hover,
.gx-gallery-card:focus-within {
    border-color: #33ffdd;
}

.gx-gallery-card__link {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.gx-gallery-card__link--unavailable {
    opacity: 0.72;
}

.gx-gallery-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: block;
    border-bottom: 1px solid #494d4c;
    background: #151515;
}

.gx-gallery-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gx-gallery-card__video {
    display: grid;
    place-items: center;
    background: #181a19;
}

.gx-gallery-card__play {
    color: #33ffdd;
    font-size: 24px;
    line-height: 1;
}

.gx-gallery-card__body {
    min-height: 46px;
    padding: 12px 14px;
    box-sizing: border-box;
    display: grid;
    flex: 1;
    align-items: center;
}

.gx-gallery-card__count {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 4px 7px;
    border-radius: 999px;
    color: #f7f9f8;
    background: rgba(0, 0, 0, 0.72);
    font-size: 11px;
    white-space: nowrap;
}

.gx-gallery-card__title {
    margin: 0;
    display: block;
    color: #f7f9f8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.gx-gallery-empty {
    min-height: 180px;
    padding: 30px 20px;
    box-sizing: border-box;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border-top: 1px solid #494d4c;
    border-bottom: 1px solid #494d4c;
    color: #cdd2d0;
    background: #212121;
    text-align: center;
}

.gx-gallery-empty p {
    margin: 0;
    font-size: 12px;
}

.gx-gallery-empty a {
    color: #33ffdd;
    font-size: 11px;
}

/* Gallery editor */
.gx-gallery-editor .gx-form-alert {
    margin-top: 20px;
}

.gx-gallery-editor__form {
    margin-top: 20px;
}

.gx-gallery-editor__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
    gap: 18px;
}

.gx-gallery-editor__main {
    min-width: 0;
    display: grid;
    gap: 18px;
}

.gx-gallery-editor fieldset.gx-form-section {
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(9, 29, 32, 0.9), rgba(3, 13, 16, 0.97));
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

.gx-gallery-editor legend.gx-form-section__header {
    width: 100%;
    padding: 19px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--gx-line);
    background: rgba(13, 40, 43, 0.65);
}

.gx-gallery-editor .gx-form-section__index {
    width: 38px;
    height: 38px;
    display: grid;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 50%;
    color: var(--gx-cyan);
    font: 800 0.58rem/1 var(--gx-mono);
}

.gx-gallery-editor .gx-form-section__header > span:last-child {
    display: grid;
}

.gx-gallery-editor .gx-form-section__header strong {
    color: var(--gx-ink);
    font-size: 0.94rem;
}

.gx-gallery-editor .gx-form-section__header small {
    margin-top: 2px;
    color: var(--gx-muted);
    font-size: 0.66rem;
}

.gx-gallery-editor .gx-form-section__body {
    padding: 24px 22px 27px;
}

.gx-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 18px;
}

.gx-form-field--full {
    grid-column: 1 / -1;
}

.gx-form-field--half {
    min-width: 0;
}

.gx-form-grid .gx-form-label {
    margin-bottom: 9px;
}

.gx-form-grid .gx-form-label-row .gx-form-label {
    margin-bottom: 0;
}

.gx-form-control--textarea {
    min-height: 175px;
}

.gx-form-file__mark {
    position: absolute;
    top: 50%;
    right: 13px;
    color: #516c6e;
    font: 700 0.49rem/1 var(--gx-mono);
    letter-spacing: 0.06em;
    pointer-events: none;
    transform: translateY(-50%);
}

.gx-form .gx-form-field .gx-form-file input.gx-form-control--file {
    min-height: 52px;
    padding: 7px 108px 7px 8px;
    color: #73888a;
    font-size: 0.7rem;
}

.gx-form input.gx-form-control--file::file-selector-button {
    height: 36px;
    margin-right: 11px;
    padding: 0 12px;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.34);
    border-radius: 3px;
    color: var(--gx-cyan);
    background: rgba(var(--gx-event-accent-rgb), 0.06);
    font-weight: 800;
    cursor: pointer;
}

.gx-gallery-editor__side {
    position: sticky;
    top: 122px;
    display: grid;
    gap: 14px;
}

.gx-gallery-preview,
.gx-gallery-publish {
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 8px;
    background: rgba(4, 16, 19, 0.94);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.gx-gallery-preview__header,
.gx-gallery-publish__header {
    min-height: 49px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--gx-line);
    background: rgba(13, 38, 41, 0.55);
}

.gx-gallery-preview__status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gx-cyan);
    box-shadow: 0 0 8px var(--gx-cyan);
}

.gx-gallery-preview__header h3,
.gx-gallery-publish__header h3 {
    margin: 0;
    color: #9db0b2;
    font: 800 0.59rem/1.3 var(--gx-mono);
    letter-spacing: 0.07em;
}

.gx-gallery-preview__figure {
    margin: 0;
}

.gx-gallery-preview__figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

.gx-gallery-preview__figure figcaption {
    padding: 10px 13px;
    color: var(--gx-muted);
    font-size: 0.66rem;
}

.gx-gallery-existing-images,
.gx-gallery-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.gx-gallery-existing-images {
    margin-bottom: 8px;
}

.gx-gallery-existing-image {
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 6px;
    background: rgba(4, 16, 19, 0.7);
}

.gx-gallery-existing-image img,
.gx-gallery-preview__grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
}

.gx-gallery-existing-image span {
    padding: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gx-muted);
    font-size: 0.72rem;
}

.gx-gallery-preview__grid {
    padding: 10px;
}

.gx-gallery-preview__caption {
    margin: 0;
    padding: 0 13px 10px;
    color: var(--gx-muted);
    font-size: 0.66rem;
}

.gx-gallery-preview__placeholder {
    min-height: 215px;
    padding: 24px;
    display: grid;
    place-items: center;
    align-content: center;
    color: var(--gx-muted);
    text-align: center;
}

.gx-gallery-preview__placeholder > span {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 50%;
    color: var(--gx-cyan);
    font-size: 1rem;
}

.gx-gallery-preview__placeholder strong {
    color: #a8b9ba;
    font: 800 0.62rem/1.4 var(--gx-mono);
    letter-spacing: 0.06em;
}

.gx-gallery-preview__placeholder small {
    margin-top: 5px;
    font-size: 0.64rem;
}

.gx-gallery-publish__header > span {
    color: var(--gx-cyan);
    font: 800 0.58rem/1 var(--gx-mono);
}

.gx-gallery-publish__header h3 {
    color: var(--gx-ink);
    font-family: var(--gx-sans);
    font-size: 0.82rem;
    letter-spacing: 0;
}

.gx-form-toggle {
    position: relative;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
}

.gx-form-toggle > input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.gx-form-toggle__track {
    position: relative;
    width: 49px;
    height: 27px;
    flex: 0 0 49px;
    border: 1px solid rgba(137, 202, 196, 0.3);
    border-radius: 999px;
    background: #142326;
    transition:
        border-color 160ms ease,
        background 160ms ease;
}

.gx-form-toggle__track span {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #74888a;
    transition:
        left 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.gx-form-toggle > input:checked + .gx-form-toggle__track {
    border-color: var(--gx-cyan);
    background: rgba(25, 116, 106, 0.5);
}

.gx-form-toggle > input:checked + .gx-form-toggle__track span {
    left: 26px;
    background: var(--gx-cyan-bright);
    box-shadow: 0 0 8px rgba(var(--gx-event-accent-rgb), 0.55);
}

.gx-form-toggle > input:focus-visible + .gx-form-toggle__track {
    outline: 2px solid var(--gx-cyan);
    outline-offset: 3px;
}

.gx-form-toggle__copy {
    min-width: 0;
    display: grid;
}

.gx-form-toggle__copy strong {
    color: var(--gx-ink);
    font-size: 0.74rem;
}

.gx-form-toggle__copy small {
    margin-top: 2px;
    color: var(--gx-muted);
    font-size: 0.62rem;
    line-height: 1.45;
}

.gx-gallery-editor > .gx-page__shell > .gx-form-alert + .gx-gallery-editor__form {
    margin-top: 0;
}

.gx-gallery-editor__form > .gx-form-actions {
    margin-top: 18px;
    padding: 18px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    border: 1px solid var(--gx-line);
    border-radius: 7px;
    background: rgba(5, 18, 21, 0.8);
}

.gx-gallery-danger {
    margin-top: 38px;
    padding: 21px 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid rgba(255, 113, 133, 0.3);
    border-radius: 8px;
    background: linear-gradient(100deg, rgba(104, 25, 38, 0.25), rgba(24, 10, 14, 0.5));
}

.gx-gallery-danger__copy {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gx-gallery-danger__mark {
    width: 34px;
    height: 34px;
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    border: 1px solid rgba(255, 113, 133, 0.55);
    border-radius: 50%;
    color: #ffacb8;
    font: 900 0.8rem/1 var(--gx-mono);
}

.gx-gallery-danger h3,
.gx-gallery-danger p {
    margin: 0;
}

.gx-gallery-danger h3 {
    color: #ffdce1;
    font-size: 0.9rem;
}

.gx-gallery-danger p {
    margin-top: 3px;
    color: #af858c;
    font-size: 0.69rem;
}

.gx-gallery-danger__form {
    flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   Authentication
   -------------------------------------------------------------------------- */

.gx-auth-page {
    padding-block: clamp(32px, 6vw, 82px) clamp(70px, 9vw, 120px);
}

.gx-auth-page--setup .gx-auth-card__header {
    margin-bottom: 23px;
}

.gx-auth-layout {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.82fr);
    overflow: hidden;
    border: 1px solid var(--gx-line-strong);
    border-radius: 12px;
    background: #041013;
    box-shadow:
        0 35px 110px rgba(0, 0, 0, 0.48),
        0 0 40px rgba(var(--gx-event-accent-rgb), 0.045);
}

.gx-auth-intro {
    position: relative;
    min-width: 0;
    padding: clamp(38px, 6vw, 72px);
    display: flex;
    overflow: hidden;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid var(--gx-line);
    background:
        linear-gradient(90deg, rgba(var(--gx-event-accent-rgb), 0.04) 1px, transparent 1px),
        linear-gradient(rgba(var(--gx-event-accent-rgb), 0.04) 1px, transparent 1px),
        radial-gradient(circle at 72% 38%, rgba(var(--gx-event-accent-rgb), 0.14), transparent 30%),
        linear-gradient(135deg, rgba(10, 42, 44, 0.96), rgba(3, 14, 17, 0.99));
    background-size:
        38px 38px,
        38px 38px,
        auto,
        auto;
}

.gx-auth-intro::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 3px;
    content: '';
    background: linear-gradient(90deg, transparent, var(--gx-cyan));
}

.gx-auth-intro__eyebrow,
.gx-auth-intro__title,
.gx-auth-intro__description,
.gx-auth-status,
.gx-auth-steps {
    position: relative;
    z-index: 2;
}

.gx-auth-intro__eyebrow {
    margin: 0 0 17px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--gx-cyan);
    font: 800 0.62rem/1.4 var(--gx-mono);
    letter-spacing: 0.11em;
}

.gx-auth-intro__signal {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gx-cyan);
    box-shadow: 0 0 10px var(--gx-cyan);
}

.gx-auth-intro__title {
    margin: 0;
    color: var(--gx-ink);
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 1.02;
}

.gx-auth-intro__title span {
    color: var(--gx-cyan);
}

.gx-auth-intro__description {
    max-width: 480px;
    margin: 20px 0 0;
    color: #9aadaf;
    font-size: 0.84rem;
}

.gx-auth-status {
    max-width: 430px;
    margin: 40px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(var(--gx-event-accent-rgb), 0.18);
    border-bottom: 1px solid rgba(var(--gx-event-accent-rgb), 0.12);
}

.gx-auth-status > div {
    padding: 13px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gx-auth-status > div + div {
    padding-left: 18px;
    border-left: 1px solid rgba(var(--gx-event-accent-rgb), 0.12);
}

.gx-auth-status dt,
.gx-auth-status dd {
    font: 800 0.54rem/1.3 var(--gx-mono);
    letter-spacing: 0.06em;
}

.gx-auth-status dt {
    color: #5d7779;
}

.gx-auth-status dd {
    margin: 0;
    color: #9cafb1;
}

.gx-auth-status dd span {
    width: 5px;
    height: 5px;
    margin-right: 6px;
    display: inline-block;
    border-radius: 50%;
    background: var(--gx-success);
    box-shadow: 0 0 8px var(--gx-success);
}

.gx-auth-intro__orbit {
    position: absolute;
    right: -110px;
    bottom: -120px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.gx-auth-intro__orbit span {
    position: absolute;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.12);
    border-radius: 50%;
}

.gx-auth-intro__orbit span:nth-child(1) {
    inset: 48px;
    border-style: dashed;
}

.gx-auth-intro__orbit span:nth-child(2) {
    inset: 106px;
}

.gx-auth-intro__orbit span:nth-child(3) {
    top: 47px;
    left: 191px;
    width: 8px;
    height: 8px;
    border: 0;
    background: var(--gx-cyan);
    box-shadow: 0 0 12px var(--gx-cyan);
}

.gx-auth-card {
    position: relative;
    padding: clamp(32px, 5vw, 54px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(10, 27, 30, 0.9), rgba(3, 13, 16, 0.98));
}

.gx-auth-card::before {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 62px;
    height: 6px;
    content: '';
    background: repeating-linear-gradient(60deg, var(--gx-cyan) 0 7px, transparent 7px 11px);
    opacity: 0.45;
}

.gx-auth-card__header {
    margin-bottom: 27px;
}

.gx-auth-card__index {
    color: var(--gx-cyan);
    font: 800 0.57rem/1.4 var(--gx-mono);
    letter-spacing: 0.1em;
}

.gx-auth-card__header h3 {
    margin: 8px 0 0;
    color: var(--gx-ink);
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.gx-auth-card__header p {
    margin: 7px 0 0;
    color: var(--gx-muted);
    font-size: 0.73rem;
}

.gx-auth-form {
    display: grid;
    gap: 19px;
}

.gx-auth-form .gx-form-label {
    margin-bottom: 8px;
    display: block;
    font-size: 0.73rem;
}

.gx-auth-form .gx-button {
    margin-top: 4px;
}

.gx-auth-card__footer {
    margin-top: 23px;
    padding-top: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(var(--gx-event-accent-rgb), 0.1);
    color: var(--gx-muted);
    font-size: 0.68rem;
}

.gx-auth-card__footer a {
    color: var(--gx-cyan);
    font-weight: 800;
}

.gx-auth-card__footer a:hover {
    color: var(--gx-cyan-bright);
}

.gx-auth-card__security {
    margin: 28px 0 0;
    color: #4d6668;
    font: 700 0.49rem/1.4 var(--gx-mono);
    letter-spacing: 0.09em;
    text-align: center;
}

.gx-auth-card__security span {
    margin-right: 5px;
    color: var(--gx-cyan-dim);
}

.gx-auth-layout--setup {
    grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
}

.gx-auth-layout--setup .gx-auth-intro {
    padding-inline: clamp(34px, 4vw, 54px);
}

.gx-auth-layout--setup .gx-auth-intro__title {
    font-size: clamp(2.15rem, 4.2vw, 3.8rem);
}

.gx-auth-card--wide {
    padding: clamp(30px, 4.5vw, 50px);
}

.gx-auth-form--setup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px 15px;
}

.gx-auth-form--setup .gx-form-actions--full {
    margin: 3px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    grid-column: 1 / -1;
}

.gx-auth-steps {
    margin: 36px 0 0;
    padding: 0;
    display: grid;
    list-style: none;
}

.gx-auth-steps__item {
    position: relative;
    padding: 11px 0;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 11px;
    color: #627779;
}

.gx-auth-steps__item + .gx-auth-steps__item::before {
    position: absolute;
    top: -6px;
    left: 16px;
    width: 1px;
    height: 14px;
    content: '';
    background: rgba(var(--gx-event-accent-rgb), 0.16);
}

.gx-auth-steps__item > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(137, 202, 196, 0.24);
    border-radius: 50%;
    font: 800 0.54rem/1 var(--gx-mono);
}

.gx-auth-steps__item strong {
    font-size: 0.72rem;
}

.gx-auth-steps__item--active {
    color: #bdcdce;
}

.gx-auth-steps__item--active > span {
    border-color: var(--gx-cyan);
    color: var(--gx-cyan);
    background: rgba(var(--gx-event-accent-rgb), 0.06);
}

/* --------------------------------------------------------------------------
   Administration
   -------------------------------------------------------------------------- */

.gx-admin-page {
    position: relative;
    width: min(calc(100% - 48px), 1180px);
    padding: 46px 0 100px;
}

.gx-admin-page--dashboard {
    max-width: 1180px;
}

.gx-admin-page--list {
    max-width: 1180px;
}

.gx-admin-header {
    position: relative;
    min-height: 230px;
    padding: clamp(30px, 4.5vw, 50px);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    overflow: hidden;
    border: 1px solid var(--gx-line-strong);
    border-radius: 11px;
    background:
        linear-gradient(90deg, rgba(var(--gx-event-accent-rgb), 0.032) 1px, transparent 1px),
        linear-gradient(rgba(var(--gx-event-accent-rgb), 0.032) 1px, transparent 1px),
        radial-gradient(circle at 87% 18%, rgba(var(--gx-event-accent-rgb), 0.14), transparent 27%),
        linear-gradient(135deg, rgba(10, 39, 42, 0.96), rgba(3, 12, 15, 0.99));
    background-size:
        37px 37px,
        37px 37px,
        auto,
        auto;
    box-shadow: var(--gx-shadow);
}

.gx-admin-header::before {
    position: absolute;
    top: 20px;
    right: 21px;
    width: 75px;
    height: 6px;
    content: '';
    background: repeating-linear-gradient(60deg, var(--gx-cyan) 0 8px, transparent 8px 13px);
    opacity: 0.47;
}

.gx-admin-header::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    height: 3px;
    content: '';
    background: linear-gradient(90deg, transparent, var(--gx-cyan));
    box-shadow: 0 0 14px rgba(var(--gx-event-accent-rgb), 0.3);
}

.gx-admin-header--dashboard {
    min-height: 270px;
}

.gx-admin-header-copy,
.gx-admin-actions,
.gx-admin-header-status {
    position: relative;
    z-index: 1;
}

.gx-admin-header-copy {
    max-width: 750px;
}

.gx-admin-eyebrow {
    margin: 0 0 12px;
    color: #779092;
    font: 800 0.63rem/1.4 var(--gx-mono);
    letter-spacing: 0.1em;
}

.gx-admin-eyebrow span {
    color: var(--gx-cyan);
}

.gx-admin-title {
    margin: 0;
    color: var(--gx-ink);
    font-size: clamp(2.25rem, 5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 1.04;
    text-wrap: balance;
}

.gx-admin-lead {
    max-width: 620px;
    margin: 15px 0 0;
    color: #96aaac;
    font-size: 0.84rem;
}

.gx-admin-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
}

.gx-admin-header-status {
    min-width: 205px;
    padding: 17px;
    border: 1px solid var(--gx-line);
    border-radius: 6px;
    background: rgba(3, 14, 17, 0.72);
}

.gx-admin-header-status .gx-status {
    margin-bottom: 9px;
}

.gx-admin-header-status small {
    display: block;
    color: #536b6e;
    font: 700 0.51rem/1.35 var(--gx-mono);
    letter-spacing: 0.07em;
}

.gx-status i {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 7px currentColor;
}

.gx-admin-dashboard {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gx-admin-card {
    position: relative;
    min-height: 300px;
    padding: clamp(24px, 3.5vw, 38px);
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--gx-line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(10, 31, 34, 0.94), rgba(3, 13, 16, 0.98));
    box-shadow: 0 19px 58px rgba(0, 0, 0, 0.22);
    transition:
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.gx-admin-card::after {
    position: absolute;
    right: -70px;
    bottom: -82px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.08);
    border-radius: 50%;
    content: '';
}

.gx-admin-card:hover {
    border-color: rgba(var(--gx-event-accent-rgb), 0.42);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.31),
        0 0 25px rgba(var(--gx-event-accent-rgb), 0.04);
    transform: translateY(-3px);
}

.gx-admin-card--compose,
.gx-admin-card--media {
    background:
        radial-gradient(circle at 90% 12%, rgba(var(--gx-event-accent-rgb), 0.11), transparent 29%),
        linear-gradient(145deg, rgba(10, 35, 37, 0.96), rgba(3, 13, 16, 0.98));
}

.gx-admin-card--structure {
    box-shadow:
        inset 0 3px rgba(var(--gx-event-accent-rgb), 0.12),
        0 19px 58px rgba(0, 0, 0, 0.22);
}

.gx-admin-card--taxonomy {
    box-shadow:
        inset 0 3px rgba(105, 246, 181, 0.1),
        0 19px 58px rgba(0, 0, 0, 0.22);
}

.gx-admin-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.gx-admin-card-index {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 50%;
    color: var(--gx-cyan);
    font: 800 0.59rem/1 var(--gx-mono);
}

.gx-admin-card-tag {
    color: #587174;
    font: 700 0.53rem/1.3 var(--gx-mono);
    letter-spacing: 0.08em;
}

.gx-admin-card-title {
    margin: 34px 0 0;
    color: var(--gx-ink);
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.gx-admin-card-copy {
    max-width: 440px;
    margin: 10px 0 26px;
    color: var(--gx-muted);
    font-size: 0.76rem;
}

.gx-admin-card-action {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin-top: auto;
}

.gx-admin-page > .gx-form-alert {
    margin-top: 20px;
}

.gx-admin-panel {
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 9px;
    background: linear-gradient(145deg, rgba(9, 28, 31, 0.9), rgba(3, 12, 15, 0.98));
    box-shadow: var(--gx-shadow);
}

.gx-admin-panel-head {
    min-height: 92px;
    padding: 21px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--gx-line);
    background: rgba(13, 39, 42, 0.58);
}

.gx-admin-panel-code {
    color: var(--gx-cyan);
    font: 800 0.55rem/1.3 var(--gx-mono);
    letter-spacing: 0.08em;
}

.gx-admin-panel-title {
    margin: 4px 0 0;
    color: var(--gx-ink);
    font-size: 1.22rem;
    letter-spacing: -0.03em;
}

.gx-admin-panel-copy {
    max-width: 400px;
    margin: 0;
    color: var(--gx-muted);
    font-size: 0.7rem;
    text-align: right;
}

.gx-admin-panel .gx-table-wrap {
    border: 0;
    border-radius: 0;
    background: transparent;
}

.gx-admin-panel .gx-table th,
.gx-admin-panel .gx-table td {
    padding: 17px 18px;
}

.gx-admin-panel .gx-table th:first-child,
.gx-admin-panel .gx-table td:first-child {
    width: 90px;
}

.gx-admin-panel .gx-table th:last-child,
.gx-admin-panel .gx-table td:last-child {
    width: 130px;
    text-align: right;
}

.gx-table-order,
.gx-table-count {
    color: #7d9294;
    font: 800 0.7rem/1.4 var(--gx-mono);
}

.gx-table-title-cell strong {
    color: #d4e1e1;
    font-size: 0.82rem;
}

.gx-table-link {
    color: var(--gx-cyan);
    font-size: 0.7rem;
    font-weight: 800;
}

.gx-table-link:hover {
    color: var(--gx-cyan-bright);
}

.gx-table-empty {
    height: 220px;
    text-align: center !important;
}

.gx-table-empty strong,
.gx-table-empty span {
    display: block;
}

.gx-table-empty strong {
    color: var(--gx-ink);
    font-size: 0.9rem;
}

.gx-table-empty span {
    margin-top: 6px;
    color: var(--gx-muted);
    font-size: 0.7rem;
}

.gx-status--muted {
    color: #718587;
    background: rgba(113, 133, 135, 0.06);
}

/* Administration forms */
.gx-admin-page--form > .gx-form {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.gx-admin-page--form > .gx-form-alert + .gx-form {
    margin-top: 0;
}

.gx-form-body {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(9, 29, 32, 0.92), rgba(3, 13, 16, 0.98));
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

.gx-form-section-head {
    min-height: 90px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--gx-line);
    background: rgba(13, 40, 43, 0.58);
}

.gx-form-section-index {
    width: 40px;
    height: 40px;
    display: grid;
    flex: 0 0 40px;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 50%;
    color: var(--gx-cyan);
    font: 800 0.6rem/1 var(--gx-mono);
}

.gx-form-section-title,
.gx-form-section-copy {
    margin: 0;
}

.gx-form-section-title {
    color: var(--gx-ink);
    font-size: 1.02rem;
    letter-spacing: -0.025em;
}

.gx-form-section-copy {
    margin-top: 3px;
    color: var(--gx-muted);
    font-size: 0.66rem;
}

.gx-form-fields {
    padding: 25px 23px 29px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 23px 18px;
}

.gx-form-group {
    min-width: 0;
}

.gx-form-group--wide,
.gx-form-group--switch {
    grid-column: 1 / -1;
}

.gx-form-group > .gx-form-label {
    margin-bottom: 9px;
    display: block;
}

.gx-form-group .gx-form-label-row .gx-form-label {
    margin-bottom: 0;
}

.gx-form-control--short {
    max-width: 190px;
}

.gx-form-group--switch {
    padding-top: 5px;
}

.gx-form-group--switch > .gx-form-label {
    margin-bottom: 11px;
}

.gx-form-group--switch .gx-form-switch {
    min-height: 84px;
    padding: 16px;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.12);
    border-radius: 6px;
    background: rgba(var(--gx-event-accent-rgb), 0.025);
}

.gx-admin-page--form > .gx-form > .gx-form-actions {
    grid-column: 1 / -1;
    padding: 18px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    border: 1px solid var(--gx-line);
    border-radius: 7px;
    background: rgba(5, 18, 21, 0.82);
}

.gx-admin-danger {
    margin-top: 38px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255, 113, 133, 0.3);
    border-radius: 8px;
    background: linear-gradient(105deg, rgba(103, 25, 38, 0.27), rgba(24, 10, 14, 0.52));
}

.gx-admin-danger-label {
    color: #ff94a5;
    font: 800 0.55rem/1.3 var(--gx-mono);
    letter-spacing: 0.1em;
}

.gx-admin-danger-title {
    margin: 5px 0 0;
    color: #ffe0e5;
    font-size: 1.05rem;
}

.gx-admin-danger-copy p {
    margin: 5px 0 0;
    color: #b78b92;
    font-size: 0.7rem;
}

.gx-form--danger {
    flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   Error states
   -------------------------------------------------------------------------- */

.gx-error-page {
    min-height: 70vh;
    padding-block: clamp(34px, 7vw, 86px) clamp(70px, 10vw, 130px);
}

.gx-error-stage {
    position: relative;
    min-height: 600px;
    display: grid;
    place-items: center;
}

.gx-error-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(78vw, 690px);
    aspect-ratio: 1;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.1);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: gx-error-orbit-spin 42s linear infinite;
}

.gx-error-orbit::before,
.gx-error-orbit::after,
.gx-error-orbit span {
    position: absolute;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.11);
    border-radius: 50%;
    content: '';
}

.gx-error-orbit::before {
    inset: 10%;
    border-style: dashed;
}

.gx-error-orbit::after {
    inset: 25%;
}

.gx-error-orbit span:nth-child(1) {
    top: 9%;
    left: 49%;
    width: 9px;
    height: 9px;
    border: 0;
    background: var(--gx-cyan);
    box-shadow: 0 0 13px var(--gx-cyan);
}

.gx-error-orbit span:nth-child(2) {
    right: 15%;
    bottom: 20%;
    width: 6px;
    height: 6px;
    border: 0;
    background: var(--gx-cyan-dim);
    box-shadow: 0 0 9px var(--gx-cyan-dim);
}

.gx-error-orbit span:nth-child(3) {
    top: 39%;
    left: -4px;
    width: 7px;
    height: 7px;
    border: 0;
    background: var(--gx-cyan);
    box-shadow: 0 0 10px var(--gx-cyan);
}

.gx-error-panel {
    --gx-error-accent: var(--gx-cyan);
    --gx-error-line: rgba(var(--gx-event-accent-rgb), 0.4);
    --gx-error-glow: rgba(var(--gx-event-accent-rgb), 0.18);
    --gx-error-ghost: rgba(var(--gx-event-accent-rgb), 0.09);
    --gx-error-orbit-line: rgba(var(--gx-event-accent-rgb), 0.13);
    position: relative;
    z-index: 2;
    width: min(100%, 700px);
    min-height: 430px;
    padding: clamp(30px, 6vw, 60px);
    overflow: hidden;
    border: 1px solid var(--gx-error-line);
    border-radius: 11px;
    background:
        linear-gradient(90deg, rgba(var(--gx-event-accent-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(rgba(var(--gx-event-accent-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(145deg, rgba(9, 32, 35, 0.97), rgba(2, 10, 13, 0.99));
    background-size:
        34px 34px,
        34px 34px,
        auto;
    box-shadow:
        0 38px 110px rgba(0, 0, 0, 0.52),
        0 0 35px rgba(var(--gx-event-accent-rgb), 0.045);
}

.gx-error-panel--400,
.gx-error-panel--415 {
    --gx-error-accent: var(--gx-warning);
    --gx-error-line: rgba(255, 189, 105, 0.4);
    --gx-error-glow: rgba(255, 189, 105, 0.18);
    --gx-error-ghost: rgba(255, 189, 105, 0.085);
    --gx-error-orbit-line: rgba(255, 189, 105, 0.13);
}

.gx-error-panel--403,
.gx-error-panel--500 {
    --gx-error-accent: var(--gx-danger);
    --gx-error-line: rgba(255, 113, 133, 0.4);
    --gx-error-glow: rgba(255, 113, 133, 0.18);
    --gx-error-ghost: rgba(255, 113, 133, 0.085);
    --gx-error-orbit-line: rgba(255, 113, 133, 0.13);
}

.gx-error-panel--404,
.gx-error-panel--405 {
    --gx-error-accent: var(--gx-cyan);
}

.gx-error-panel::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 3px;
    content: '';
    background: linear-gradient(90deg, transparent, var(--gx-error-accent));
    box-shadow: 0 0 16px var(--gx-error-glow);
}

.gx-error-panel::after {
    position: absolute;
    right: -95px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    border: 1px solid var(--gx-error-orbit-line);
    border-radius: 50%;
    content: '';
}

.gx-error-panel__eyebrow {
    position: relative;
    z-index: 2;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gx-error-accent);
    font: 800 0.61rem/1.4 var(--gx-mono);
    letter-spacing: 0.1em;
}

.gx-error-panel__eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gx-error-accent);
    box-shadow: 0 0 10px var(--gx-error-accent);
}

.gx-error-code {
    position: absolute;
    top: 18px;
    right: clamp(20px, 5vw, 48px);
    z-index: 0;
    margin: 0;
    color: var(--gx-error-ghost);
    font: 900 clamp(7rem, 20vw, 13rem)/1 var(--gx-mono);
    letter-spacing: -0.11em;
    pointer-events: none;
}

.gx-error-copy {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin-top: clamp(54px, 9vw, 86px);
}

.gx-error-copy__status {
    color: #71898b;
    font: 800 0.56rem/1.4 var(--gx-mono);
    letter-spacing: 0.09em;
}

.gx-error-copy h1,
.gx-error-copy h2 {
    margin: 9px 0 0;
    color: var(--gx-ink);
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.gx-error-copy > p {
    max-width: 480px;
    margin: 15px 0 0;
    color: #98abad;
    font-size: 0.8rem;
}

.gx-error-actions {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.gx-error-trace {
    position: absolute;
    right: 24px;
    bottom: 18px;
    z-index: 2;
    margin: 0;
    color: #405b5e;
    font: 700 0.49rem/1.3 var(--gx-mono);
    letter-spacing: 0.08em;
}

@keyframes gx-error-orbit-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* --------------------------------------------------------------------------
   Responsive systems
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
    .gx-form--search {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gx-form-field--query {
        grid-column: 1 / -1;
    }

    .gx-board-search__actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .gx-form-workspace {
        grid-template-columns: 1fr;
    }

    .gx-form-rail {
        position: static;
    }

    .gx-form-rail__heading,
    .gx-form-rail__notice {
        display: none;
    }

    .gx-form-rail ol {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .gx-form-rail li {
        padding: 5px;
    }

    .gx-form-rail li + li::before {
        top: 19px;
        left: -10px;
        width: 20px;
        height: 1px;
    }

    .gx-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gx-gallery-editor__layout {
        grid-template-columns: minmax(0, 1fr) 250px;
    }

    .gx-auth-layout,
    .gx-auth-layout--setup {
        grid-template-columns: minmax(280px, 0.8fr) minmax(430px, 1.2fr);
    }

    .gx-auth-intro {
        padding-inline: 38px;
    }

    .gx-auth-intro__title {
        font-size: clamp(2.2rem, 5vw, 3.6rem);
    }
}

@media (max-width: 900px) {
    .gx-board {
        width: min(calc(100% - 40px), var(--gx-page));
        padding-top: 28px;
    }

    .gx-admin-page {
        width: min(calc(100% - 32px), 1180px);
        padding-top: 28px;
    }

    .gx-board-hero {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .gx-board-hero__console {
        width: min(100%, 360px);
    }

    .gx-board-hero__orbit {
        opacity: 0.58;
    }

    .gx-board-hero--detail {
        display: block;
    }

    .gx-board-detail__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gx-board-detail__meta > div:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .gx-board-detail__meta > div:nth-child(n + 3) {
        margin-top: 13px;
        padding-top: 14px;
        border-top: 1px solid rgba(var(--gx-event-accent-rgb), 0.1);
    }

    .gx-gallery-editor__layout {
        grid-template-columns: 1fr;
    }

    .gx-gallery-editor__side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gx-auth-layout,
    .gx-auth-layout--setup {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .gx-auth-intro {
        min-height: 430px;
        border-right: 0;
        border-bottom: 1px solid var(--gx-line);
    }

    .gx-auth-intro__description {
        max-width: 580px;
    }

    .gx-auth-card {
        min-height: 480px;
    }

    .gx-auth-card--wide {
        min-height: 0;
    }

    .gx-auth-steps {
        max-width: 520px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .gx-auth-steps__item {
        grid-template-columns: 34px 1fr;
    }

    .gx-auth-steps__item + .gx-auth-steps__item::before {
        top: 28px;
        left: -10px;
        width: 20px;
        height: 1px;
    }

    .gx-admin-header {
        min-height: 260px;
        align-items: flex-start;
        flex-direction: column;
    }

    .gx-admin-header-status {
        min-width: 0;
    }

    .gx-admin-dashboard {
        grid-template-columns: 1fr;
    }

    .gx-admin-card {
        min-height: 270px;
    }

    .gx-admin-page--form > .gx-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .gx-board {
        width: min(calc(100% - 40px), var(--gx-page));
    }

    .gx-board-hero {
        padding: 38px 23px 27px;
        border-radius: 8px 8px 3px 3px;
    }

    .gx-board-hero h1 {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .gx-board-hero__console {
        padding: 15px;
    }

    .gx-board-search {
        padding: 23px 19px;
    }

    .gx-board-search__heading {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .gx-form--search {
        grid-template-columns: 1fr;
    }

    .gx-form-field--query,
    .gx-board-search__actions {
        grid-column: auto;
    }

    .gx-board-search__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-board-search__actions .gx-button {
        width: 100%;
    }

    .gx-board-stream {
        margin-top: 42px;
    }

    .gx-board-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .gx-board-table,
    .gx-board-table tbody,
    .gx-board-table tr,
    .gx-board-table td {
        width: 100%;
        display: block;
    }

    .gx-board-table {
        table-layout: auto;
    }

    .gx-board-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .gx-board-table tbody {
        display: grid;
        gap: 11px;
    }

    .gx-board-table tbody tr {
        padding: 16px 17px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px 18px;
        border: 1px solid var(--gx-line);
        border-top-color: var(--gx-line-strong);
        border-radius: 7px;
        background: rgba(5, 18, 21, 0.86);
    }

    .gx-board-table tbody tr:hover {
        box-shadow: inset 3px 0 var(--gx-cyan);
    }

    .gx-board-table td,
    .gx-board-table td:first-child,
    .gx-board-table td:nth-child(3),
    .gx-board-table td:nth-child(4),
    .gx-board-table td:last-child {
        width: auto;
        padding: 0;
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: baseline;
        gap: 9px;
        border: 0;
        text-align: left;
    }

    .gx-board-table td::before {
        color: #526c6e;
        content: attr(data-label);
        font: 700 0.5rem/1.3 var(--gx-mono);
        letter-spacing: 0.06em;
    }

    .gx-board-table__title {
        grid-column: 1 / -1;
        grid-row: 1;
        grid-template-columns: 1fr !important;
        padding-bottom: 12px !important;
        border-bottom: 1px solid rgba(var(--gx-event-accent-rgb), 0.1) !important;
    }

    .gx-board-table__title::before {
        display: none;
    }

    .gx-board-table__title a {
        font-size: 0.9rem;
    }

    .gx-board-table__empty-row {
        display: block !important;
        padding: 0 !important;
    }

    .gx-board-table__empty-row td {
        display: block;
    }

    .gx-board-table__empty-row td::before {
        display: none;
    }

    .gx-board-empty {
        min-height: 240px;
    }

    .gx-board-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-board-pagination ol {
        width: 100%;
    }

    .gx-board-detail__topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .gx-board-detail__meta {
        grid-template-columns: 1fr;
    }

    .gx-board-detail__meta > div,
    .gx-board-detail__meta > div + div,
    .gx-board-detail__meta > div:nth-child(3),
    .gx-board-detail__meta > div:nth-child(n + 3) {
        margin: 0;
        padding: 13px 0;
        border-top: 1px solid rgba(var(--gx-event-accent-rgb), 0.1);
        border-left: 0;
    }

    .gx-board-detail__meta > div:first-child {
        border-top: 0;
    }

    .gx-board-article__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .gx-board-article__body {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .gx-board-article__body pre {
        padding: 28px 21px;
        font-size: 0.86rem;
    }

    .gx-board-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-board-actions > .gx-button,
    .gx-board-actions__admin .gx-button {
        flex: 1;
    }

    .gx-form-rail li small {
        display: none;
    }

    .gx-board--editor .gx-form-section__header {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .gx-board--editor .gx-form-section__header > small {
        display: none;
    }

    .gx-form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gx-form-row__label {
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .gx-form-row__label span {
        margin: 0;
    }

    .gx-board--editor .gx-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-board--editor .gx-form-actions > div .gx-button {
        flex: 1;
    }

    .gx-page-hero--split {
        padding: 30px 22px;
    }

    .gx-page-hero__title {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }

    .gx-exhibitor-search {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gx-exhibitor-search__controls {
        grid-template-columns: 1fr;
    }

    .gx-exhibitor-search__controls .gx-button {
        width: 100%;
    }

    .gx-exhibitor-directory {
        margin-top: 42px;
    }

    .gx-exhibitor-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .gx-exhibitor-table,
    .gx-exhibitor-table tbody,
    .gx-exhibitor-table tr,
    .gx-exhibitor-table td {
        width: 100%;
        display: block;
    }

    .gx-exhibitor-table {
        table-layout: auto;
    }

    .gx-exhibitor-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .gx-exhibitor-table tbody {
        display: grid;
        gap: 11px;
    }

    .gx-exhibitor-table tbody tr {
        padding: 17px;
        display: grid;
        gap: 13px;
        border: 1px solid var(--gx-line);
        border-top-color: var(--gx-line-strong);
        border-radius: 7px;
        background: rgba(5, 18, 21, 0.86);
    }

    .gx-exhibitor-table td,
    .gx-exhibitor-table td:first-child,
    .gx-exhibitor-table td:nth-child(2),
    .gx-exhibitor-table td:nth-child(4),
    .gx-exhibitor-table td:nth-child(5) {
        width: auto;
        padding: 0;
        display: grid;
        grid-template-columns: 70px minmax(0, 1fr);
        align-items: baseline;
        gap: 10px;
        border: 0;
        text-align: left;
    }

    .gx-exhibitor-table td::before {
        color: #526c6e;
        content: attr(data-label);
        font: 700 0.5rem/1.3 var(--gx-mono);
        letter-spacing: 0.06em;
    }

    .gx-exhibitor-table__actions .gx-button {
        width: fit-content;
    }

    .gx-exhibitor-table__empty-row {
        display: block !important;
        padding: 0 !important;
    }

    .gx-exhibitor-table__empty-row td {
        display: block;
    }

    .gx-exhibitor-table__empty-row td::before {
        display: none;
    }

    .gx-gallery-filter {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .gx-gallery-filter__submit {
        grid-column: auto;
        width: 100%;
    }

    .gx-gallery-filter select {
        width: 100%;
        min-width: 0;
    }

    .gx-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gx-gallery-card {
        width: 100%;
    }

    .gx-gallery-editor__side {
        grid-template-columns: 1fr;
    }

    .gx-gallery-preview__placeholder {
        min-height: 190px;
    }

    .gx-gallery-danger,
    .gx-admin-danger {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-gallery-danger__form .gx-button,
    .gx-admin-danger .gx-button {
        width: 100%;
    }

    .gx-auth-page {
        padding-top: 22px;
    }

    .gx-auth-intro {
        min-height: 390px;
        padding: 38px 26px;
    }

    .gx-auth-card,
    .gx-auth-card--wide {
        min-height: 0;
        padding: 36px 25px;
    }

    .gx-auth-form--setup {
        grid-template-columns: 1fr;
    }

    .gx-auth-form--setup .gx-form-field--full,
    .gx-auth-form--setup .gx-form-actions--full {
        grid-column: auto;
    }

    .gx-admin-page {
        width: min(calc(100% - 24px), 1180px);
    }

    .gx-admin-header {
        min-height: 0;
        padding: 38px 23px 27px;
    }

    .gx-admin-actions {
        width: 100%;
    }

    .gx-admin-actions .gx-button {
        flex: 1;
    }

    .gx-admin-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .gx-admin-panel-copy {
        text-align: left;
    }

    .gx-admin-panel .gx-table-wrap {
        overflow: visible;
    }

    .gx-admin-panel .gx-table,
    .gx-admin-panel .gx-table tbody,
    .gx-admin-panel .gx-table tr,
    .gx-admin-panel .gx-table td {
        width: 100%;
        display: block;
    }

    .gx-admin-panel .gx-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .gx-admin-panel .gx-table tbody {
        padding: 12px;
        display: grid;
        gap: 10px;
    }

    .gx-admin-panel .gx-table tbody tr {
        padding: 15px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 15px;
        border: 1px solid var(--gx-line);
        border-radius: 6px;
        background: rgba(5, 18, 21, 0.85);
    }

    .gx-admin-panel .gx-table td,
    .gx-admin-panel .gx-table td:first-child,
    .gx-admin-panel .gx-table td:last-child {
        width: auto;
        padding: 0;
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: center;
        gap: 8px;
        border: 0;
        text-align: left;
    }

    .gx-admin-panel .gx-table td::before {
        color: #536d70;
        content: attr(data-label);
        font: 700 0.5rem/1.3 var(--gx-mono);
        letter-spacing: 0.05em;
    }

    .gx-admin-panel .gx-table-title-cell {
        grid-column: 1 / -1;
        grid-template-columns: 1fr !important;
        padding-bottom: 12px !important;
        border-bottom: 1px solid rgba(var(--gx-event-accent-rgb), 0.1) !important;
    }

    .gx-admin-panel .gx-table-title-cell::before {
        display: none;
    }

    .gx-admin-panel .gx-table-actions {
        grid-column: 1 / -1;
        grid-template-columns: 1fr !important;
        margin-top: 3px;
    }

    .gx-admin-panel .gx-table-actions::before {
        display: none;
    }

    .gx-admin-panel .gx-table-actions .gx-button {
        width: 100%;
    }

    .gx-admin-panel .gx-table-empty {
        height: 210px;
        display: grid !important;
        place-items: center;
        align-content: center;
        grid-column: 1 / -1;
    }

    .gx-admin-panel .gx-table-empty::before {
        display: none;
    }

    .gx-form-fields {
        grid-template-columns: 1fr;
    }

    .gx-form-group--wide,
    .gx-form-group--switch {
        grid-column: auto;
    }

    .gx-error-stage {
        min-height: 530px;
    }

    .gx-error-panel {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .gx-board {
        width: min(calc(100% - 24px), var(--gx-page));
    }

    .gx-gallery-page__shell {
        width: min(calc(100% - 19.2px), 1056px);
    }
}

@media (max-width: 520px) {
    .gx-board-stream__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .gx-board-table tbody tr {
        grid-template-columns: 1fr;
    }

    .gx-board-table td,
    .gx-board-table td:first-child,
    .gx-board-table td:nth-child(3),
    .gx-board-table td:nth-child(4),
    .gx-board-table td:last-child {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .gx-board-pagination > p {
        display: none;
    }

    .gx-board-actions__admin {
        flex-direction: column;
    }

    .gx-form-rail ol {
        padding-inline: 9px;
    }

    .gx-form-rail li {
        grid-template-columns: 29px 1fr;
        gap: 6px;
    }

    .gx-form-rail li strong {
        font-size: 0.65rem;
    }

    .gx-form-switch__state {
        display: none;
    }

    .gx-board--editor .gx-form-actions > p {
        display: none;
    }

    .gx-gallery-filter {
        grid-template-columns: 1fr;
    }

    .gx-gallery-filter__submit {
        grid-column: auto;
    }

    .gx-gallery-card__body {
        padding: 12px 14px;
    }

    .gx-form-grid {
        grid-template-columns: 1fr;
    }

    .gx-form-field--full {
        grid-column: auto;
    }

    .gx-gallery-editor .gx-form-section__body {
        padding-inline: 17px;
    }

    .gx-gallery-editor legend.gx-form-section__header {
        padding-inline: 17px;
    }

    .gx-gallery-editor__form > .gx-form-actions,
    .gx-admin-page--form > .gx-form > .gx-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .gx-gallery-editor__form > .gx-form-actions .gx-button,
    .gx-admin-page--form > .gx-form > .gx-form-actions .gx-button {
        width: 100%;
    }

    .gx-gallery-danger__copy {
        align-items: flex-start;
    }

    .gx-auth-layout {
        border-radius: 8px;
    }

    .gx-auth-intro {
        min-height: 350px;
    }

    .gx-auth-intro__title {
        font-size: clamp(2.1rem, 12vw, 3rem);
    }

    .gx-auth-status {
        margin-top: 28px;
        grid-template-columns: 1fr;
    }

    .gx-auth-status > div + div {
        padding-left: 0;
        border-top: 1px solid rgba(var(--gx-event-accent-rgb), 0.1);
        border-left: 0;
    }

    .gx-auth-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .gx-auth-steps {
        grid-template-columns: 1fr;
    }

    .gx-auth-steps__item + .gx-auth-steps__item::before {
        top: -6px;
        left: 16px;
        width: 1px;
        height: 14px;
    }

    .gx-admin-title {
        font-size: clamp(2rem, 12vw, 3.1rem);
    }

    .gx-admin-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-admin-card {
        min-height: 255px;
        padding: 23px;
    }

    .gx-admin-card-title {
        margin-top: 28px;
    }

    .gx-admin-panel .gx-table tbody tr {
        grid-template-columns: 1fr;
    }

    .gx-admin-panel .gx-table td,
    .gx-admin-panel .gx-table td:first-child,
    .gx-admin-panel .gx-table td:last-child {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .gx-admin-panel .gx-table-empty {
        padding-inline: 12px;
    }

    .gx-form-section-head,
    .gx-form-fields {
        padding-inline: 18px;
    }

    .gx-form-group--switch .gx-form-switch {
        align-items: flex-start;
    }

    .gx-error-page {
        padding-top: 20px;
    }

    .gx-error-stage {
        min-height: 470px;
    }

    .gx-error-orbit {
        width: 120vw;
    }

    .gx-error-panel {
        min-height: 420px;
        padding: 31px 23px;
    }

    .gx-error-code {
        top: 35px;
        right: 22px;
        font-size: clamp(6.5rem, 38vw, 9rem);
    }

    .gx-error-copy {
        margin-top: 82px;
    }

    .gx-error-copy h1,
    .gx-error-copy h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .gx-error-actions .gx-button {
        width: 100%;
    }

    .gx-error-trace {
        right: 20px;
        bottom: 15px;
    }
}

@media (prefers-contrast: more) {
    .gx-board-hero,
    .gx-page-hero,
    .gx-admin-header,
    .gx-auth-layout,
    .gx-error-panel,
    .gx-admin-panel,
    .gx-form-panel,
    .gx-gallery-card {
        border-color: rgba(var(--gx-event-secondary-rgb), 0.62);
    }

    .gx-form input:not([type='hidden']):not([type='checkbox']):not([type='radio']),
    .gx-form select,
    .gx-form textarea {
        border-color: rgba(210, 255, 249, 0.56);
    }
}

/* --------------------------------------------------------------------------
   Event archive and edition administration
   -------------------------------------------------------------------------- */

.gx-history-page .gx-page-hero {
    min-height: 330px;
}

.gx-history-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gx-history-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 9px;
    background: linear-gradient(145deg, rgba(10, 31, 34, 0.94), rgba(3, 13, 16, 0.98));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.gx-history-card:hover,
.gx-history-card:focus-within {
    border-color: var(--gx-line-strong);
    box-shadow:
        0 26px 72px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(var(--gx-event-accent-rgb), 0.07);
    transform: translateY(-4px);
}

.gx-history-card > a {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gx-history-card__visual {
    position: relative;
    min-height: 210px;
    display: grid;
    overflow: hidden;
    place-items: center;
    border-bottom: 1px solid var(--gx-line);
    background:
        linear-gradient(90deg, rgba(var(--gx-event-accent-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(rgba(var(--gx-event-accent-rgb), 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 45%, rgba(var(--gx-event-accent-rgb), 0.2), transparent 46%), var(--gx-surface);
    background-size:
        34px 34px,
        34px 34px,
        auto,
        auto;
}

.gx-history-card__visual::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: '';
    background: linear-gradient(90deg, transparent, var(--gx-cyan), transparent);
}

.gx-history-card__visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.48) saturate(0.82);
}

.gx-history-card__visual > span {
    position: relative;
    z-index: 1;
    color: var(--gx-ink);
    font-size: clamp(3.7rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 1;
    text-shadow: 0 0 34px rgba(var(--gx-event-accent-rgb), 0.2);
}

.gx-history-card__visual > i {
    position: absolute;
    width: 54%;
    aspect-ratio: 1;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.12);
    border-radius: 50%;
}

.gx-history-card__visual > i:nth-of-type(2) {
    width: 75%;
}

.gx-history-card__visual > i:nth-of-type(3) {
    width: 98%;
}

.gx-history-card__body {
    padding: 24px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.gx-history-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--gx-muted);
    font: 800 0.56rem/1.3 var(--gx-mono);
    letter-spacing: 0.08em;
}

.gx-history-card__meta strong {
    color: var(--gx-cyan);
}

.gx-history-card__body h2 {
    margin: 22px 0 10px;
    color: var(--gx-ink);
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    letter-spacing: -0.045em;
    line-height: 1.16;
}

.gx-history-card__body p {
    margin: 0;
    color: var(--gx-copy);
    font-size: 0.75rem;
}

.gx-history-card__body p + p {
    margin-top: 4px;
    color: var(--gx-muted);
}

.gx-history-card__action {
    margin-top: auto;
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gx-cyan);
    font-size: 0.74rem;
    font-weight: 900;
}

.gx-history-page .gx-board-empty {
    margin-top: 24px;
}

.gx-admin-card--event {
    background:
        radial-gradient(circle at 88% 10%, rgba(var(--gx-event-accent-rgb), 0.18), transparent 34%),
        linear-gradient(145deg, rgba(12, 44, 46, 0.98), rgba(3, 13, 16, 0.98));
    box-shadow:
        inset 0 3px rgba(var(--gx-event-accent-rgb), 0.2),
        0 19px 58px rgba(0, 0, 0, 0.22);
}

.gx-event-admin-panel {
    margin-top: 20px;
}

.gx-event-table__active {
    background: rgba(var(--gx-event-accent-rgb), 0.035);
    box-shadow: inset 3px 0 var(--gx-cyan);
}

.gx-event-table__year {
    color: var(--gx-cyan);
    font: 900 0.83rem/1.3 var(--gx-mono);
}

.gx-event-table .gx-table-title-cell small {
    margin-top: 4px;
    display: block;
    color: var(--gx-muted);
    font-size: 0.62rem;
}

.gx-event-table__copy {
    display: block;
    color: var(--gx-copy);
    font-size: 0.69rem;
    line-height: 1.55;
}

.gx-status--archived {
    color: var(--gx-cyan-bright);
    background: rgba(var(--gx-event-accent-rgb), 0.07);
}

.gx-event-table__actions {
    white-space: nowrap;
}

.gx-event-table__actions .gx-button + .gx-button {
    margin-left: 4px;
}

.gx-event-form__wide {
    grid-column: 1 / -1;
}

.gx-event-static-field {
    min-height: 50px;
    margin: 0;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid var(--gx-line);
    border-radius: 5px;
    background: rgba(2, 11, 13, 0.72);
}

.gx-event-static-field strong {
    color: var(--gx-ink);
    font-size: 0.82rem;
}

.gx-event-static-field span {
    color: var(--gx-muted);
    font-size: 0.61rem;
    text-align: right;
}

.gx-event-static-field--active {
    border-color: var(--gx-line-strong);
    background: rgba(var(--gx-event-accent-rgb), 0.055);
}

.gx-event-static-field--active strong {
    color: var(--gx-cyan);
}

.gx-event-color-grid {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
}

.gx-event-color-field {
    min-width: 0;
}

.gx-form input.gx-event-color-input {
    width: 100%;
    height: 54px;
    padding: 5px;
    display: block;
    border: 1px solid var(--gx-line-strong);
    border-radius: 5px;
    background: rgba(2, 11, 13, 0.9);
    cursor: pointer;
}

.gx-event-color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.gx-event-color-input::-webkit-color-swatch,
.gx-event-color-input::-moz-color-swatch {
    border: 0;
    border-radius: 2px;
}

.gx-event-section-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gx-event-section-editor {
    min-width: 0;
    margin: 0;
    padding: 20px;
    border: 1px solid var(--gx-line);
    border-radius: 7px;
    background: rgba(2, 12, 15, 0.54);
}

.gx-event-section-editor legend {
    padding: 0 8px;
    color: var(--gx-cyan);
    font-size: 0.78rem;
    font-weight: 900;
}

.gx-event-section-editor .gx-form-label {
    margin: 13px 0 7px;
    display: block;
}

.gx-event-section-editor textarea {
    min-height: 180px;
}

.gx-event-asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gx-event-asset-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--gx-line);
    border-radius: 7px;
    background: rgba(2, 12, 15, 0.54);
}

.gx-event-asset-card > header {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}

.gx-event-asset-card > header strong {
    color: var(--gx-ink);
    font-size: 0.82rem;
}

.gx-event-asset-card > header small {
    color: var(--gx-muted);
    font-size: 0.59rem;
    text-align: right;
}

.gx-event-asset-card > .gx-form-label {
    margin: 14px 0 7px;
    display: block;
}

.gx-event-asset-preview {
    margin: 0 0 15px;
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 5px;
    background:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.035) 25%,
            transparent 25%,
            transparent 75%,
            rgba(255, 255, 255, 0.035) 75%
        ),
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.035) 25%,
            transparent 25%,
            transparent 75%,
            rgba(255, 255, 255, 0.035) 75%
        ),
        #071316;
    background-position:
        0 0,
        9px 9px;
    background-size: 18px 18px;
}

.gx-event-asset-preview img {
    width: 100%;
    height: 180px;
    display: block;
    object-fit: cover;
}

.gx-event-asset-preview--logo img {
    height: 112px;
    padding: 18px;
    object-fit: contain;
}

.gx-event-asset-preview--mobile img {
    height: 260px;
    object-fit: contain;
}

.gx-event-asset-preview figcaption {
    padding: 8px 10px;
    overflow: hidden;
    border-top: 1px solid var(--gx-line);
    color: var(--gx-muted);
    font-size: 0.59rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gx-event-remove {
    margin-top: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 113, 133, 0.22);
    border-radius: 5px;
    color: #e7a9b2;
    background: rgba(96, 24, 36, 0.16);
    font-size: 0.67rem;
    font-weight: 800;
    cursor: pointer;
}

.gx-event-remove input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--gx-danger);
}

.gx-event-form__notice {
    margin: 0 auto 0 0;
    color: var(--gx-muted);
    font-size: 0.66rem;
}

@media (max-width: 1100px) {
    .gx-history-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gx-event-color-grid {
        grid-template-columns: repeat(3, minmax(110px, 1fr));
    }

    .gx-event-section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .gx-history-page .gx-page-hero {
        min-height: 0;
    }

    .gx-event-asset-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .gx-history-grid {
        grid-template-columns: 1fr;
    }

    .gx-history-card__visual {
        min-height: 180px;
    }

    .gx-admin-panel .gx-table .gx-event-table__actions {
        display: flex;
        grid-column: 1 / -1;
        justify-content: stretch;
        gap: 6px;
        white-space: normal;
    }

    .gx-event-table__actions .gx-button {
        flex: 1;
    }

    .gx-event-table__actions .gx-button + .gx-button {
        margin-left: 0;
    }

    .gx-event-form__notice {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .gx-event-color-grid {
        grid-template-columns: 1fr;
    }

    .gx-event-asset-card,
    .gx-event-section-editor {
        padding: 16px;
    }

    .gx-event-asset-card > header {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .gx-event-asset-card > header small {
        text-align: left;
    }

    .gx-event-static-field {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .gx-event-static-field span {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gx-history-card {
        transition: none;
    }
}

@media (prefers-contrast: more) {
    .gx-history-card,
    .gx-event-asset-card,
    .gx-event-section-editor {
        border-color: var(--gx-line-strong);
    }
}

/* --------------------------------------------------------------------------
   Edition static pages and ordered image sections
   -------------------------------------------------------------------------- */

.gx-admin-card--static-page {
    background:
        linear-gradient(135deg, rgba(var(--gx-event-accent-rgb), 0.12), transparent 42%),
        linear-gradient(145deg, rgba(9, 34, 37, 0.97), rgba(3, 13, 16, 0.99));
    box-shadow:
        inset 0 3px rgba(var(--gx-event-accent-rgb), 0.16),
        0 19px 58px rgba(0, 0, 0, 0.22);
}

.gx-static-page-editions {
    margin-top: 20px;
    padding: 8px;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    border: 1px solid var(--gx-line);
    border-radius: 7px;
    background: rgba(3, 14, 17, 0.78);
    scrollbar-width: thin;
}

.gx-static-page-editions a {
    min-width: 108px;
    padding: 10px 13px;
    display: grid;
    flex: 0 0 auto;
    gap: 2px;
    border: 1px solid transparent;
    border-radius: 5px;
    color: var(--gx-muted);
    background: rgba(255, 255, 255, 0.015);
    transition:
        border-color 160ms ease,
        color 160ms ease,
        background 160ms ease;
}

.gx-static-page-editions a:hover,
.gx-static-page-editions a:focus-visible,
.gx-static-page-editions a[aria-current='page'] {
    border-color: var(--gx-line-strong);
    color: var(--gx-ink);
    background: rgba(var(--gx-event-accent-rgb), 0.07);
}

.gx-static-page-editions a[aria-current='page'] strong {
    color: var(--gx-cyan);
}

.gx-static-page-editions strong {
    font: 900 0.78rem/1.2 var(--gx-mono);
}

.gx-static-page-editions span {
    font-size: 0.6rem;
}

.gx-static-page-admin__panel {
    margin-top: 20px;
}

.gx-static-page-table__slug {
    margin-top: 4px;
    display: block;
    color: var(--gx-muted);
    font: 700 0.59rem/1.35 var(--gx-mono);
}

.gx-static-page-table th:last-child,
.gx-static-page-table td:last-child {
    width: 260px;
}

.gx-static-page-table__actions {
    white-space: nowrap;
}

.gx-static-page-table__actions .gx-button + .gx-button {
    margin-left: 4px;
}

.gx-static-section-manager {
    margin-top: 42px;
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 9px;
    background: linear-gradient(145deg, rgba(9, 28, 31, 0.92), rgba(3, 12, 15, 0.99));
    box-shadow: var(--gx-shadow);
}

.gx-static-section-order-form {
    min-height: 64px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--gx-line);
    background: rgba(2, 11, 13, 0.72);
}

.gx-static-section-order-form__copy {
    margin: 0;
    color: var(--gx-muted);
    font-size: 0.68rem;
}

.gx-static-section-order-form__copy span {
    margin-right: 5px;
    color: var(--gx-cyan);
}

.gx-static-section-live {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.gx-static-section-list {
    padding: 20px;
    display: grid;
    gap: 18px;
}

.gx-static-section-empty {
    min-height: 190px;
    margin: 20px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px dashed var(--gx-line-strong);
    border-radius: 7px;
    color: var(--gx-muted);
    text-align: center;
}

.gx-static-section-empty strong,
.gx-static-section-empty span {
    display: block;
}

.gx-static-section-empty strong {
    color: var(--gx-ink);
    font-size: 0.9rem;
}

.gx-static-section-empty span {
    margin-top: 5px;
    font-size: 0.68rem;
}

.gx-static-section-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--gx-line);
    border-radius: 8px;
    background: rgba(2, 12, 15, 0.72);
}

.gx-static-section-card--new {
    margin: 0 20px 20px;
    border-color: rgba(var(--gx-event-accent-rgb), 0.26);
    background: rgba(var(--gx-event-accent-rgb), 0.025);
}

.gx-static-section-card__head {
    min-height: 70px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--gx-line);
    background: rgba(13, 40, 43, 0.46);
}

.gx-static-section-card__head h3 {
    margin: 4px 0 0;
    color: var(--gx-ink);
    font-size: 1rem;
    letter-spacing: -0.025em;
}

.gx-static-section-move {
    display: flex;
    gap: 6px;
}

.gx-static-section-move button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 5px;
    color: var(--gx-cyan);
    background: rgba(2, 11, 13, 0.84);
    font-size: 1rem;
    cursor: pointer;
}

.gx-static-section-move button:hover,
.gx-static-section-move button:focus-visible {
    border-color: var(--gx-cyan);
    color: var(--gx-bg);
    background: var(--gx-cyan);
}

.gx-static-section-move button:disabled {
    color: var(--gx-muted);
    cursor: not-allowed;
    opacity: 0.35;
}

.gx-static-section-preview {
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--gx-line);
    background: #050505;
}

.gx-static-section-preview img {
    width: 100%;
    height: auto;
    max-height: 360px;
    display: block;
    object-fit: contain;
}

.gx-static-section-preview figcaption {
    padding: 8px 12px;
    overflow: hidden;
    border-top: 1px solid var(--gx-line);
    color: var(--gx-muted);
    background: rgba(3, 12, 15, 0.95);
    font-size: 0.61rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gx-static-section-card__missing {
    margin: 0;
    padding: 34px 18px;
    border-bottom: 1px solid var(--gx-line);
    color: var(--gx-muted);
    text-align: center;
}

.gx-static-section-form {
    padding: 20px;
}

.gx-static-section-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 19px 18px;
}

.gx-static-section-fields .gx-form-group > .gx-form-label,
.gx-static-section-fields .gx-form-group > .gx-form-label-row {
    margin-bottom: 8px;
}

.gx-static-section-fields__alt,
.gx-static-section-fields__file {
    grid-column: 1 / -1;
}

.gx-static-section-fields__published {
    grid-column: auto;
    padding-top: 0;
}

.gx-static-section-fields__published .gx-form-switch {
    min-height: 50px;
    padding: 10px 12px;
}

.gx-static-section-card__actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}

.gx-static-section-delete {
    padding: 0 20px 20px;
    display: flex;
    justify-content: flex-end;
}

.gx-static-content-page {
    width: 100%;
    min-height: 45vh;
    margin: 0;
    overflow: hidden;
    background: var(--gx-bg);
}

.gx-static-content-page__title,
.gx-static-content-page__section-title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.gx-static-content-page__sections,
.gx-static-content-page__section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.gx-static-content-page__section img {
    width: 100%;
    height: auto;
    display: block;
}

.gx-static-content-page__empty {
    min-height: 54vh;
    padding: 64px 24px;
    display: grid;
    place-items: center;
    align-content: center;
    color: var(--gx-muted);
    text-align: center;
}

.gx-static-content-page__empty h2 {
    margin: 8px 0 3px;
    color: var(--gx-ink);
    font-size: clamp(1.5rem, 4vw, 2.7rem);
}

.gx-static-content-page__empty p {
    margin: 0;
}

.gix-static-page .gx-footer {
    margin-top: 0;
}

/* GIX 2026 event overview */
.gix-overview {
    --gix-overview-mint: #33ffdd;
    --gix-overview-soft-mint: #9fffef;
    min-height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    background: #0a0b0a;
    color: #f7f9f8;
}

.gix-overview-page .gx-main,
.gix-overview-page .gix-overview {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.gix-overview-page .gx-main {
    background: #212121;
}

.gix-overview-page .gx-backdrop {
    display: none;
}

.gix-overview .gix-overview__shell {
    width: min(calc(100% - 32px), 1056px);
    margin: 0 auto;
}

.gix-overview > .gix-overview__shell {
    padding: 24px 0 28px;
}

.gix-overview > .gix-overview__shell > h1 {
    margin: 0 0 0px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    font-size: 20px;
    line-height: 1.2;
}

.gix-overview__matrix {
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.gix-overview__row {
    display: grid;
    grid-template-columns: 102px minmax(0, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.68);
}

.gix-overview__row:first-child {
    border-top: 0;
}

.gix-overview__row:nth-child(1) {
    min-height: 125px;
}

.gix-overview__row:nth-child(2) {
    min-height: 133px;
}

.gix-overview__row--effect {
    min-height: 90px;
}

.gix-overview__row > h2 {
    min-height: 100%;
    margin: 0;
    display: grid;
    place-items: center;
    background: var(--gix-overview-mint);
    color: #050807;
    font-size: 19px;
    line-height: 1.2;
    text-align: center;
}

.gix-overview__copy,
.gix-overview__effects {
    margin: 0;
    padding: 7px 16px 8px;
    background: #262626;
}

.gix-overview__copy.gix-overview__copy--purpose {
    background: #0a0b0a;
}

.gix-overview__copy h3 {
    margin: 0 0 2px;
    color: var(--gix-overview-mint);
    font-size: 15px;
    line-height: 1.25;
}

.gix-overview__copy h3:not(:first-child) {
    margin-top: 4px;
}

.gix-overview__copy p {
    margin: 0;
    color: #f2f5f4;
    font-size: 11px;
    line-height: 1.45;
}

.gix-overview__effects {
    list-style: none;
}

.gix-overview__effects li {
    color: var(--gix-overview-mint);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.65;
}

.gix-overview__event {
    position: relative;
    padding: 18px 0 24px;
    flex: 1 0 auto;
    background: #212121;
    box-shadow: 0 0 0 100vmax #212121;
    clip-path: inset(0 -100vmax);
}

.gix-overview__event::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.32);
    clip-path: inset(0 -100vmax);
    content: '';
    pointer-events: none;
}

.gix-overview__event header {
    margin-bottom: 14px;
    padding: 9px 20px 8px;
    background: var(--gix-overview-mint);
    color: #050807;
    text-align: center;
}

.gix-overview__event header h2 {
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
}

.gix-overview__event header p {
    margin: 3px 0 0;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.gix-overview__information {
    overflow: hidden;
    border: 1px solid #666;
    background: #fff;
    color: #161616;
}

.gix-overview__facts {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.gix-overview__facts tr {
    height: 34px;
}

.gix-overview__facts th,
.gix-overview__facts td {
    padding: 4px 10px;
    border-bottom: 1px solid #777;
    font-size: 13px;
    line-height: 1.25;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    overflow-wrap: anywhere;
}

.gix-overview__facts th {
    width: 80px;
    border-right: 1px solid #777;
    background: var(--gix-overview-soft-mint);
    font-weight: 800;
    text-align: center;
    white-space: normal;
}

.gix-overview__partners {
    min-height: 34px;
    display: grid;
    grid-template-columns: 80px minmax(0, 436px) 80px minmax(0, 1fr);
    background: #fff;
}

.gix-overview__partner-group {
    min-width: 0;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gix-overview__partners-label {
    min-width: 0;
    padding: 6px 8px;
    display: block;
    align-content: center;
    border-right: 1px solid #777;
    background: var(--gix-overview-soft-mint);
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

.gix-overview__partners-label--support {
    border-left: 1px solid #777;
}

.gix-overview__partner {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gix-overview__partner-group--hosts .gix-overview__partner:nth-child(1) {
    flex: 0 1 104px;
}

.gix-overview__partner-group--hosts .gix-overview__partner:nth-child(2) {
    flex: 0 1 112px;
}

.gix-overview__partner-group--hosts .gix-overview__partner:nth-child(3) {
    flex: 0 1 96px;
}

.gix-overview__partner-group--hosts .gix-overview__partner:nth-child(4) {
    flex: 0 1 58px;
}

.gix-overview__partner-group--supporters .gix-overview__partner {
    flex: 1 1 0;
}

.gix-overview__partner img {
    width: auto;
    max-width: 100%;
    height: 18px;
    display: block;
    object-fit: contain;
}

.gix-overview__partner--association img {
    height: 17px;
}

.gix-overview__partner--compact img {
    height: 19px;
}

.gix-overview__solutions {
    position: relative;
    padding: 18px 0 26px;
    border-bottom: 1px solid #616161;
    background: #0a0b0a;
}

.gix-overview__solutions::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: '';
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.32);
    clip-path: inset(0 -100vmax);
    pointer-events: none;
}

.gix-overview__solutions h2 {
    margin: 0 0 12px;
    color: #f7f9f8;
    font-size: 20px;
    line-height: 1.2;
}

.gix-overview__solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.gix-overview__solution-card {
    min-width: 0;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #fff;
    background: #212121;
    box-sizing: border-box;
}

.gix-overview__solution-card h3 {
    margin: 0 0 7px;
    color: #f7f9f8;
    font-size: 16px;
    line-height: 1.2;
}

.gix-overview__solution-tags {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}

.gix-overview__solution-tags li {
    max-width: 100%;
    padding: 2px 8px;
    border: 1px solid var(--gix-overview-mint);
    border-radius: 999px;
    color: var(--gix-overview-mint);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    box-sizing: border-box;
}

@media (max-width: 720px) {
    .gix-overview .gix-overview__shell {
        width: min(calc(100% - 19.2px), 1056px);
    }

    .gix-overview > .gix-overview__shell {
        padding-top: 18px;
    }

    .gix-overview__solutions {
        padding: 16px 0 18px;
    }

    .gix-overview__solutions h2 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .gix-overview__solution-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .gix-overview__solution-card {
        min-height: 0;
    }

    .gix-overview__row {
        grid-template-columns: 78px minmax(0, 1fr);
        min-height: 0;
    }

    .gix-overview__row > h2 {
        padding: 10px 6px;
        font-size: 15px;
    }

    .gix-overview__copy,
    .gix-overview__effects {
        padding: 10px 12px;
    }

    .gix-overview__copy h3,
    .gix-overview__effects li {
        font-size: 13px;
    }

    .gix-overview__copy p {
        font-size: 11px;
    }

    .gix-overview__reference-break {
        display: none;
    }

    .gix-overview__event header h2 {
        font-size: 16px;
    }

    .gix-overview__facts tr {
        height: auto;
    }

    .gix-overview__facts th,
    .gix-overview__facts td {
        padding: 7px 8px;
        font-size: 11px;
        line-height: 1.4;
    }

    .gix-overview__facts th {
        width: 66px;
    }

    .gix-overview__partners {
        grid-template-columns: 66px minmax(0, 1fr);
    }

    .gix-overview__partner-group {
        min-height: 38px;
        padding: 7px 8px;
        flex-wrap: wrap;
        gap: 7px 10px;
    }

    .gix-overview__partners-label {
        padding: 7px 4px;
        font-size: 10px;
    }

    .gix-overview__partners-label--support {
        grid-column: 1;
        border-top: 1px solid #777;
        border-left: 0;
    }

    .gix-overview__partner-group--supporters {
        grid-column: 2;
        border-top: 1px solid #777;
    }

    .gix-overview__partner img {
        height: 15px;
    }

    .gix-overview__partner--association img {
        height: 14px;
    }

    .gix-overview__partner--compact img {
        height: 16px;
    }
}

@media (max-width: 420px) {
    .gix-overview__row {
        display: block;
    }

    .gix-overview__row > h2 {
        min-height: 0;
        padding: 8px 6px;
    }

    .gix-overview__event {
        padding-top: 14px;
        padding-bottom: 18px;
    }

    .gix-overview__event header {
        margin-bottom: 10px;
        padding-inline: 10px;
    }

    .gix-overview__solution-card {
        padding: 10px;
    }

    .gix-overview__solution-card h3 {
        font-size: 14px;
    }

    .gix-overview__solution-tags li {
        font-size: 9px;
        white-space: normal;
    }
}

/* GIX 2026 Awards */
body.gx-app.gix-awards-page {
    background: #0a0b0a;
}

body.gx-app.gix-awards-page:not(.gix-home-page) .gx-main {
    width: 100%;
    margin-inline: 0;
    display: block;
    background: #0a0b0a;
    zoom: 1;
}

.gix-awards-page .gx-backdrop {
    display: none;
}

.gix-awards {
    --gix-awards-mint: #33ffdd;
    --gix-awards-label: #adffd5;
    --gix-awards-black: #0a0b0a;
    --gix-awards-gray: #212121;
    color: #fff;
    background: var(--gix-awards-black);
    font-family: var(--gx-sans);
}

.gix-awards__hero {
    position: relative;
    height: 570px;
    overflow: hidden;
    background: linear-gradient(90deg, #0a0b0a 0 44%, #070605 60%, #040000 100%);
}

.gix-awards__hero::before {
    position: absolute;
    z-index: 0;
    top: 275px;
    right: 0;
    left: 0;
    height: 1px;
    content: '';
    background: #585757;
}

.gix-awards__visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    pointer-events: none;
}

.gix-awards__hero-copy,
.gix-awards__period {
    position: absolute;
    z-index: 2;
    left: max(24px, calc(50% - 540px));
}

.gix-awards__hero-copy {
    top: 60px;
    left: max(24px, calc(50% - 541px));
}

.gix-awards__hero-copy h1 {
    margin: 0;
    line-height: 0;
}

.gix-awards__title-image {
    width: 686px;
    max-width: 100%;
    height: auto;
    display: block;
}

.gix-awards__subtitle {
    margin: 26px 0 0 1.5px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.gix-awards__period {
    top: 309.5px;
    left: max(27px, calc(50% - 537px));
}

.gix-awards__period-label,
.gix-awards__period-date,
.gix-awards__period-note {
    margin-right: 0;
    margin-left: 0;
    color: #fff;
}

.gix-awards__period-label {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5;
}

.gix-awards__period-date {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    -webkit-text-stroke: 0.3px #fff;
    position: relative;
    left: -0.5px;
}

.gix-awards__period-note {
    margin-top: 20.5px;
    margin-bottom: 0;
    margin-left: 2px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
}

.gix-awards__hero-divider {
    height: 6px;
    background: linear-gradient(to bottom, #212121 0 4px, var(--gix-awards-mint) 4px 6px);
}

.gix-awards__details {
    min-height: 359px;
    color: #212121;
    background: var(--gix-awards-gray);
}

.gix-awards__shell {
    width: min(calc(100% - 40px), 1320px);
    margin-inline: auto;
}

.gix-awards__details .gix-awards__shell {
    padding-top: 28px;
    padding-bottom: 32px;
}

.gix-awards__table,
.gix-awards__table tbody {
    width: 100%;
    display: block;
}

.gix-awards__table {
    min-height: 299px;
    border: 0;
    border-spacing: 0;
    table-layout: fixed;
    background: var(--gix-awards-gray);
}

.gix-awards__table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gix-awards__table colgroup {
    display: none;
}

.gix-awards__table tbody {
    display: grid;
    grid-template-rows: minmax(63px, auto) minmax(42px, auto) minmax(63px, auto) repeat(3, minmax(42px, auto));
    gap: 1px;
}

.gix-awards__table tr {
    min-width: 0;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 1px;
}

.gix-awards__table th,
.gix-awards__table td {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    display: block;
    align-content: center;
    white-space: normal;
    overflow-wrap: anywhere;
    box-sizing: border-box;
}

.gix-awards__table th {
    justify-content: center;
    color: #000;
    background: var(--gix-awards-label);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    padding: 6px 8px;
    text-align: center;
    text-indent: -0.5px;
}

.gix-awards__table td {
    padding-inline: 11.5px;
    color: #212121;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    padding-top: 2px;
}

.gix-awards__table-row--tall td {
    padding-top: 0;
    padding-bottom: 1px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.gix-awards__table td strong,
.gix-awards__table td small {
    display: block;
}

.gix-awards__table td strong {
    font: inherit;
    font-weight: 600;
}

.gix-awards__table td small {
    margin-top: 1px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

.gix-awards__table tr:nth-child(3) td strong {
    letter-spacing: 0.9px;
}

.gix-awards__table tr:nth-child(4) td {
    font-size: 17px;
    letter-spacing: 0.35px;
}

.gix-awards__table tr:nth-child(5) td {
    letter-spacing: 1.04px;
}

.gix-awards__table .gix-awards__partners-row {
    grid-template-columns: 100px 545px 100px minmax(0, 1fr);
}

.gix-awards__partners-row td {
    padding: 0;
}

.gix-awards__partner-group {
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 5px 12.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12.5px;
    box-sizing: border-box;
}

.gix-awards__partner {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gix-awards__partner-group--hosts .gix-awards__partner:nth-child(1) {
    flex: 0 1 130px;
    transform: translateX(-10.5px) scale(1.259, 1.098);
    transform-origin: left center;
}

.gix-awards__partner-group--hosts .gix-awards__partner:nth-child(2) {
    flex: 0 1 140px;
    transform: translate(33px, 0.5px) scale(0.929, 0.892);
    transform-origin: left center;
}

.gix-awards__partner-group--hosts .gix-awards__partner:nth-child(3) {
    flex: 0 1 120px;
    transform: translateX(22px) scale(1.005, 1.047);
    transform-origin: left center;
}

.gix-awards__partner-group--hosts .gix-awards__partner:nth-child(4) {
    flex: 0 1 72.5px;
    transform: translate(23px, 1.75px) scale(0.879, 0.861);
    transform-origin: left center;
}

.gix-awards__partner-group--supporters .gix-awards__partner {
    flex: 1 1 0;
    transform-origin: left center;
}

.gix-awards__partner-group--supporters .gix-awards__partner:nth-child(1) {
    transform: translate(-12.5px, 0.75px) scale(1.025, 1.026);
}

.gix-awards__partner-group--supporters .gix-awards__partner:nth-child(2) {
    transform: translate(-20.5px, 0.5px) scale(1.074, 1.029);
}

.gix-awards__partner-group--supporters .gix-awards__partner:nth-child(3) {
    transform: translate(-12.5px, -0.5px) scale(1.029, 0.95);
}

.gix-awards__partner-group--supporters .gix-awards__partner:nth-child(4) {
    transform: translate(-9px, 0.5px) scale(1.088, 0.939);
}

.gix-awards__partner img {
    width: auto;
    max-width: 100%;
    height: 22.5px;
    display: block;
    object-fit: contain;
}

.gix-awards__partner--association img {
    height: 21.25px;
}

.gix-awards__partner--compact img {
    height: 23.75px;
}

.gix-awards__section-divider {
    height: 2px;
    background: #616161;
}

.gix-awards__contact {
    height: 150px;
    overflow: hidden;
    background: var(--gix-awards-black);
}

.gix-awards__contact .gix-awards__shell {
    padding-top: 25.5px;
}

.gix-awards__contact h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.gix-awards__contact-copy {
    margin-top: 12px;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.625;
}

.gix-awards__contact-copy p {
    margin: 0;
    position: relative;
    left: -0.5px;
}

.gix-awards__contact-copy a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}

.gix-awards__contact-copy a:hover,
.gix-awards__contact-copy a:focus-visible {
    color: var(--gix-awards-mint);
    text-decoration: underline;
}

@media (max-width: 1050px) {
    .gix-awards__hero-copy,
    .gix-awards__period {
        left: 40px;
    }

    .gix-awards__visual {
        left: 50%;
        width: 1920px;
        max-width: none;
        transform: translateX(-50%);
        opacity: 0.62;
    }

    .gix-awards__hero::after {
        position: absolute;
        z-index: 1;
        inset: 0;
        content: '';
        background: linear-gradient(90deg, rgba(10, 11, 10, 0.96) 0 54%, rgba(10, 11, 10, 0.4) 78%, transparent 100%);
        pointer-events: none;
    }

    .gix-awards__details {
        height: auto;
        overflow: visible;
    }

    .gix-awards__details .gix-awards__shell {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .gix-awards__table,
    .gix-awards__table tbody {
        height: auto;
    }

    .gix-awards__table tbody {
        grid-template-rows: none;
        grid-auto-rows: minmax(42px, auto);
    }

    .gix-awards__table tr {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .gix-awards__table-row--tall {
        min-height: 63px;
    }

    .gix-awards__table .gix-awards__partners-row {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .gix-awards__partner-group {
        min-height: 54px;
    }

    .gix-awards__partner-group .gix-awards__partner {
        transform: none;
    }

    .gix-awards__contact {
        height: auto;
        min-height: 150px;
    }
}

@media (max-width: 720px) {
    .gix-awards__hero {
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 32px 16px 28px;
    }

    .gix-awards__hero::before,
    .gix-awards__hero::after {
        display: none;
    }

    .gix-awards__visual {
        position: static;
        order: 1;
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        margin-block: 16px;
        object-fit: cover;
        object-position: 82% center;
        transform: none;
        opacity: 1;
    }

    .gix-awards__hero-copy,
    .gix-awards__period {
        position: static;
        min-width: 0;
    }

    .gix-awards__hero-copy {
        top: 42px;
    }

    .gix-awards__subtitle {
        margin-top: 14px;
        margin-left: 0;
        font-size: 18px;
        line-height: 1.35;
        word-break: keep-all;
    }

    .gix-awards__period {
        order: 2;
        padding-top: 12px;
        border-top: 1px solid #585757;
    }

    .gix-awards__period-date {
        font-size: clamp(23px, 7vw, 34px);
        line-height: 1.25;
    }

    .gix-awards__period-note {
        margin-top: 24px;
        font-size: 14px;
        line-height: 1.55;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .gix-awards__period-note br {
        display: none;
    }

    .gix-awards__shell {
        width: min(calc(100% - 24px), 1320px);
    }

    .gix-awards__table td {
        padding: 10px 12px;
        font-size: 14px;
        letter-spacing: 0;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .gix-awards__table tr:nth-child(3) td strong,
    .gix-awards__table tr:nth-child(4) td,
    .gix-awards__table tr:nth-child(5) td {
        font-size: 14px;
        letter-spacing: 0;
    }

    .gix-awards__table th {
        font-size: 14px;
    }

    .gix-awards__partner-group {
        padding-inline: 8px;
        flex-wrap: wrap;
        gap: 8px 10px;
    }

    .gix-awards__partner-group--hosts .gix-awards__partner,
    .gix-awards__partner-group--supporters .gix-awards__partner {
        flex: 0 1 calc(50% - 5px);
    }

    .gix-awards__contact .gix-awards__shell {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    .gix-awards__contact h2 {
        font-size: 22px;
    }

    .gix-awards__contact-copy {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gix-awards__table tr,
    .gix-awards__table .gix-awards__partners-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .gix-awards__table th {
        min-height: 34px;
    }

    .gix-awards__table td {
        min-height: 48px;
    }

    .gix-awards__table-row--tall td {
        min-height: 66px;
    }

    .gix-awards__partners-row td {
        min-height: 92px;
    }
}

/* GIX 2026 directions */
.gix-directions-page .gx-main,
.gix-directions {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.gix-directions-page .gx-main,
.gix-directions__venue {
    background: #0a0b0a;
}

.gix-directions {
    color: #f7f9f8;
}

.gix-directions__shell {
    width: min(calc(100% - 32px), 960px);
    margin: 0 auto;
}

.gix-directions__venue {
    padding: 14px 0 22px;
    box-shadow: 0 0 0 100vmax #0a0b0a;
    clip-path: inset(0 -100vmax);
}

.gix-directions__venue header {
    padding: 6px 0;
}

.gix-directions__venue h1 {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.25;
}

.gix-directions__venue header p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

.gix-directions__venue header p strong {
    font-weight: 500;
}

.gix-directions__venue > .gix-directions__shell > h2 {
    margin: 0;
    padding-bottom: 7px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.gix-directions__map {
    margin: 0;
    overflow: hidden;
    background: #e8e9e7;
}

.gix-directions__map-canvas {
    --gix-directions-map-height: 280px;
    width: 100% !important;
    min-height: var(--gix-directions-map-height);
    color: #17201e;
}

.gix-directions__map-canvas.root_daum_roughmap {
    border: 0;
}

/* Remove only the embed's extra panels; keep the map and its attribution intact. */
.gix-directions__map-canvas.root_daum_roughmap > .wrap_controllers,
.gix-directions__map-canvas.root_daum_roughmap > .cont {
    display: none !important;
}

/* Keep the external link available when the map cannot load or JavaScript is off. */
.gix-directions__map:has(.gix-directions__map-canvas > .wrap_map) > figcaption {
    display: none;
}

.gix-directions__map-canvas > p {
    margin: 0;
    padding: 24px;
    color: #34413e;
    text-align: center;
}

.gix-directions__map figcaption {
    padding: 6px 10px;
    color: #12201d;
    font-size: 11px;
    text-align: right;
    background: #f4f7f6;
}

.gix-directions__map figcaption a {
    color: #075f53;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gix-directions__parking {
    margin-top: 8px;
    padding: 5px 7px;
    font-size: 11px;
    line-height: 1.55;
}

.gix-directions__parking h2,
.gix-directions__parking p {
    margin: 0;
    font: inherit;
}

.gix-directions__parking ul {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.gix-directions__parking li::before {
    margin-right: 5px;
    content: '◎';
}

.gix-directions__transit {
    position: relative;
    flex: 1;
    padding: 18px 0 30px;
    border-top: 2px solid #212121;
    border-bottom: 6px solid #212121;
    background: #282828;
    box-shadow: 0 0 0 100vmax #282828;
    clip-path: inset(0 -100vmax);
}

.gix-directions__transit::before,
.gix-directions__transit::after {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 1;
    background: #212121;
    box-shadow: 0 0 0 100vmax #212121;
    clip-path: inset(0 -100vmax);
    content: '';
    pointer-events: none;
}

.gix-directions__transit::before {
    top: -2px;
    height: 2px;
}

.gix-directions__transit::after {
    bottom: -6px;
    height: 6px;
}

.gix-directions__transit h2 {
    margin: 0 0 13px;
    font-size: 18px;
    line-height: 1.3;
}

.gix-directions__transit section + section {
    margin-top: 22px;
}

.gix-directions__transit h3 {
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 1.4;
}

.gix-directions__transit ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gix-directions__transit li {
    font-size: 11px;
    line-height: 1.65;
}

.gix-directions__transit li strong {
    font-weight: 500;
}

@media (max-width: 640px) {
    .gix-directions__shell {
        width: min(calc(100% - 24px), 960px);
    }

    .gix-directions__map-canvas {
        --gix-directions-map-height: 240px;
    }

    .gix-directions__parking,
    .gix-directions__transit li {
        font-size: 10px;
    }
}

/* GIX 2026 visitor pre-registration */
body.gix-visitor-preregistration-page {
    background: #282828;
}

.gix-visitor-preregistration-page .gx-main,
.gix-visitor-preregistration {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.gix-visitor-preregistration-page .gx-main {
    background: #212121;
}

.gix-visitor-preregistration {
    background: #282828;
}

.gix-visitor-preregistration {
    color: #fff;
}

.gix-visitor-preregistration-page .gx-backdrop {
    display: none;
}

.gix-visitor-preregistration__shell {
    width: min(calc(100% - 40px), 840px);
    margin: 0 auto;
}

.gix-visitor-preregistration__overview {
    padding: 19.2px 0 25.6px;
    background: #0a0b0a;
    box-shadow: 0 0 0 100vmax #0a0b0a;
    clip-path: inset(0 -100vmax);
}

.gix-visitor-preregistration__overview h1 {
    margin: 0 0 11.2px;
    font-size: 19.2px;
    line-height: 1.3;
}

.gix-visitor-preregistration__overview h2,
.gix-visitor-preregistration__events > .gix-visitor-preregistration__shell > h2 {
    font-size: 16px;
    line-height: 1.3;
}

.gix-visitor-preregistration__overview h2 {
    margin: 0 0 8.8px;
}

.gix-visitor-preregistration__info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12.8px;
}

.gix-visitor-preregistration__info-grid > section {
    min-height: 187.2px;
    padding: 9.6px 12px 10.4px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #000;
    background: #fff;
    text-align: center;
}

.gix-visitor-preregistration__info-icon {
    width: auto;
    max-width: calc(100% - 24px);
    height: 112px;
    display: block;
    object-fit: contain;
}

.gix-visitor-preregistration__info-grid p {
    margin: 9.2px 0 0;
}

.gix-visitor-preregistration__info-grid span,
.gix-visitor-preregistration__info-grid strong {
    display: block;
}

.gix-visitor-preregistration__info-grid span {
    margin-bottom: 4.8px;
    font-size: 12.8px;
    line-height: 1.25;
}

.gix-visitor-preregistration__info-grid strong {
    font-size: 16px;
    line-height: 1.25;
}

.gix-visitor-preregistration__info-grid > section:nth-child(2) strong {
    letter-spacing: -0.36px;
}

.gix-visitor-preregistration__events {
    padding: 18.4px 0 16px;
    border-top: 1.6px solid #212121;
    background: #282828;
}

.gix-visitor-preregistration__events > .gix-visitor-preregistration__shell > h2 {
    margin: 0 0 8.8px;
    padding-left: 0.4px;
    letter-spacing: -0.16px;
}

.gix-visitor-preregistration__event {
    position: relative;
}

.gix-visitor-preregistration__event-row {
    min-height: 35.2px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
}

.gix-visitor-preregistration__event-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.4px;
    color: #000;
    background: #79ffe9;
    font-size: 12.8px;
    font-weight: 700;
    line-height: 1;
}

.gix-visitor-preregistration__event-label img {
    width: 19.2px;
    height: 19.2px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.gix-visitor-preregistration__event-copy {
    min-width: 0;
    margin: 0;
    padding: 0 12.8px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0.8px solid #33ffdd;
    color: #fff;
    background: #0a0b0a;
    font-size: 12.8px;
    font-weight: 700;
    letter-spacing: 0.76px;
    line-height: 1.35;
    text-align: left;
}

.gix-visitor-preregistration__event--coupon {
    width: min(100%, 677.6px);
    margin-bottom: 25.6px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 136.4px;
    align-items: center;
    gap: 16.4px;
}

.gix-visitor-preregistration__event--coupon .gix-visitor-preregistration__event-row {
    width: 100%;
    min-width: 0;
    grid-template-columns: 94.4px minmax(0, 1fr);
}

.gix-visitor-preregistration__event--coupon .gix-visitor-preregistration__event-row .gix-visitor-preregistration__event-copy {
    display: block;
    align-content: center;
    padding-block: 6px;
}

.gix-visitor-preregistration__event--coupon small {
    margin-top: 4px;
    color: #e3e7e6;
    font-size: 11.2px;
    font-weight: 400;
    letter-spacing: 0.67px;
    line-height: 1.4;
}

.gix-visitor-preregistration__event--coupon strong,
.gix-visitor-preregistration__event--coupon small {
    display: block;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
}

.gix-visitor-preregistration__coupon-image {
    width: 136.4px;
    height: 104.4px;
    display: block;
    object-fit: contain;
}

.gix-visitor-preregistration__event--prizes {
    margin-bottom: 12.8px;
}

.gix-visitor-preregistration__prize-panel {
    padding: 15.2px 24.8px 12.4px;
    box-sizing: border-box;
    border: 0.8px solid #79ffe9;
    border-radius: 1.2px;
    background: #0a0b0a;
}

.gix-visitor-preregistration__prize-grid {
    display: grid;
    grid-template-columns: repeat(4, 144px);
    justify-content: space-between;
}

.gix-visitor-preregistration__prize-grid figure {
    margin: 0;
    color: #fff;
    text-align: center;
}

.gix-visitor-preregistration__prize-grid figure > div {
    position: relative;
    width: 144px;
    height: 144px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 0.8px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    background: #212121;
}

.gix-visitor-preregistration__prize-grid img {
    display: block;
    object-fit: contain;
}

.gix-visitor-preregistration__prize-grid figure:nth-child(1) img {
    width: 118.4px;
    height: 118.4px;
}

.gix-visitor-preregistration__prize-grid figure:nth-child(2) img {
    width: 102.4px;
    height: 102.4px;
}

.gix-visitor-preregistration__prize-grid figure:nth-child(3) img {
    width: 128.8px;
    height: 129.6px;
}

.gix-visitor-preregistration__prize-grid figure:nth-child(4) img {
    width: 144px;
    height: 144px;
}

.gix-visitor-preregistration__prize-model {
    position: absolute;
    top: 45.2%;
    left: 53.9%;
    color: #fff;
    font-size: 12.8px;
    font-weight: 700;
    letter-spacing: 0.16px;
    line-height: 1;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.gix-visitor-preregistration__prize-grid figcaption {
    min-height: 25.6px;
    margin-top: 6.4px;
    padding: 0 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.8px solid #fff;
    border-radius: 12.8px;
    color: #fff;
    background: #212121;
    font-size: 11.2px;
    line-height: 1.2;
}

.gix-visitor-preregistration__prize-panel > p {
    margin: 9.2px 0 0;
    color: #e3e7e6;
    font-size: 11.2px;
    letter-spacing: 0.64px;
    line-height: 1.4;
}

.gix-visitor-preregistration__event--simple + .gix-visitor-preregistration__event--simple {
    margin-top: 12.8px;
}

.gix-visitor-preregistration__event--simple .gix-visitor-preregistration__event-row {
    grid-template-columns: 96.8px minmax(0, 1fr);
}

.gix-visitor-preregistration__event--coupon .gix-visitor-preregistration__event-copy,
.gix-visitor-preregistration__event--prizes .gix-visitor-preregistration__event-copy {
    padding-top: 0.8px;
}

.gix-visitor-preregistration__event--simple:not(.gix-visitor-preregistration__event--confirmation)
    .gix-visitor-preregistration__event-copy {
    padding-top: 1.6px;
}

.gix-visitor-preregistration__event--confirmation .gix-visitor-preregistration__event-row {
    min-height: 56px;
}

.gix-visitor-preregistration__event--confirmation .gix-visitor-preregistration__event-copy {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6px;
}

.gix-visitor-preregistration__event--confirmation h3,
.gix-visitor-preregistration__event--confirmation p {
    margin: 0;
}

.gix-visitor-preregistration__event--confirmation h3 {
    font: inherit;
}

.gix-visitor-preregistration__event--confirmation p {
    color: #fff;
    font-size: 12.8px;
    font-weight: 400;
    line-height: 1.4;
    transform: translateY(1.6px);
}

.gix-visitor-preregistration__apply {
    padding: 0 0 25.6px;
    background: #282828;
}

.gix-visitor-preregistration__apply a,
.gix-visitor-preregistration__apply span[aria-disabled='true'] {
    min-height: 59.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000;
    background: linear-gradient(90deg, #60ffe5, #0be2be);
    border-radius: 0.8px;
    box-shadow: inset 0 -0.8px 0 #000;
    font-size: 25.6px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    overflow: hidden;
}

.gix-visitor-preregistration-page .gx-footer {
    box-shadow: 0 -4px 0 #212121;
}

.gix-visitor-preregistration__apply a:hover,
.gix-visitor-preregistration__apply a:focus-visible {
    color: #fff;
    background: #12ac97;
}

@media (max-width: 720px) {
    body.gx-app.gix-visitor-preregistration-page:not(.gix-home-page) .gx-main {
        width: 100%;
        zoom: 1;
    }

    .gix-visitor-preregistration__shell {
        width: min(calc(100% - 24px), 840px);
    }

    .gix-visitor-preregistration__event .gix-visitor-preregistration__event-row {
        grid-template-columns: 1fr;
    }

    .gix-visitor-preregistration__event-label {
        min-height: 39.2px;
    }

    .gix-visitor-preregistration__event-copy {
        min-height: 39.2px;
        padding-block: 6.4px;
    }

    .gix-visitor-preregistration__event--coupon .gix-visitor-preregistration__event-copy,
    .gix-visitor-preregistration__event--prizes .gix-visitor-preregistration__event-copy {
        padding-top: 4.8px;
    }

    .gix-visitor-preregistration__info-grid {
        grid-template-columns: 1fr;
    }

    .gix-visitor-preregistration__info-grid > section {
        min-height: 170px;
    }

    .gix-visitor-preregistration__event--coupon {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .gix-visitor-preregistration__event--coupon .gix-visitor-preregistration__event-row {
        width: 100%;
    }

    .gix-visitor-preregistration__event--coupon .gix-visitor-preregistration__event-copy {
        flex-wrap: wrap;
        gap: 2px 10px;
    }

    .gix-visitor-preregistration__event--coupon strong,
    .gix-visitor-preregistration__event--coupon small {
        flex-basis: 100%;
        white-space: normal;
    }

    .gix-visitor-preregistration__coupon-image {
        position: static;
        width: 137.6px;
        height: 105.6px;
        margin: 10px auto 0;
        transform: none;
    }

    .gix-visitor-preregistration__prize-panel {
        padding-inline: 16px;
    }

    .gix-visitor-preregistration__prize-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .gix-visitor-preregistration__prize-grid figure > div {
        width: min(100%, 144px);
        height: auto;
        aspect-ratio: 1;
    }
}

@media (max-width: 420px) {
    .gix-visitor-preregistration__prize-grid {
        grid-template-columns: 1fr;
    }
}

/* GIX 2026 participation benefits */
.gix-participation-benefits-page .gx-main,
.gix-participation-benefits {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.gix-participation-benefits-page .gx-main,
.gix-participation-benefits {
    background: #090b0a;
}

.gix-participation-benefits {
    color: #f7f9f8;
}

.gix-participation-benefits__shell {
    width: min(calc(100% - 40px), 840px);
    margin: 0 auto;
    padding: 16px 0 64px;
}

.gix-participation-benefits h1 {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.3;
}

.gix-participation-benefits__matrix {
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    background: #242424;
}

.gix-participation-benefits__row {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
}

.gix-participation-benefits__row + .gix-participation-benefits__row {
    border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.gix-participation-benefits__row > h2 {
    min-height: 100%;
    margin: 0;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: #07100f;
    background: #2ef0d3;
    font-size: 15px;
    line-height: 1.25;
}

.gix-participation-benefits__content {
    min-width: 0;
    padding: 14px 16px;
    box-sizing: border-box;
}

.gix-participation-benefits__row--summary .gix-participation-benefits__content {
    min-height: 58px;
    display: flex;
    align-items: center;
}

.gix-participation-benefits__content section + section {
    margin-top: 12px;
}

.gix-participation-benefits__content h3 {
    margin: 0 0 3px;
    color: #2ef0d3;
    font-size: 14px;
    line-height: 1.3;
}

.gix-participation-benefits__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gix-participation-benefits__content li {
    position: relative;
    padding-left: 9px;
    font-size: 11px;
    line-height: 1.55;
}

.gix-participation-benefits__content li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '-';
}

.gix-participation-benefits__row--summary li {
    padding-left: 0;
}

.gix-participation-benefits__row--summary li::before {
    content: none;
}

@media (max-width: 640px) {
    .gix-participation-benefits__shell {
        width: min(calc(100% - 24px), 840px);
        padding-top: 14px;
    }

    .gix-participation-benefits__row {
        grid-template-columns: 1fr;
    }

    .gix-participation-benefits__row > h2 {
        min-height: 0;
        padding: 9px 12px;
    }

    .gix-participation-benefits__content {
        padding: 14px;
    }
}

/* GIX 2026 presentation and exhibition application details */
.gix-application-detail {
    min-height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    color: #f7f9f8;
    background: #0a0b0a;
}

.gix-application-detail__header {
    padding: 18px 0 0;
}

.gix-application-detail__header h1 {
    margin: 0;
    font-size: 19px;
    line-height: 1.3;
}

.gix-application-detail__switch {
    margin-top: 13px;
    border-bottom: 2px solid #33ffdd;
}

.gix-application-detail__switch > .gix-application-detail__primary-tab {
    width: 100%;
    min-height: 38px;
    margin: 0;
    display: grid;
    place-items: center;
    color: #e8eceb;
    background: #212121;
    font-size: 14px;
    line-height: 1.2;
}

.gix-application-detail__switch nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gix-application-detail__switch a,
.gix-application-detail__switch span {
    min-height: 38px;
    padding: 0 14px;
    box-sizing: border-box;
    display: grid;
    place-items: center;
    color: #e8eceb;
    background: #212121;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.gix-application-detail__switch a + a,
.gix-application-detail__switch a + span,
.gix-application-detail__switch span + a {
    border-left: 1px solid #5b5b5b;
}

.gix-application-detail__switch [aria-current='page'] {
    color: #06100e;
    background: #33ffdd;
    font-weight: 800;
}

.gix-application-detail__switch a:hover,
.gix-application-detail__switch a:focus-visible {
    color: #06100e;
    background: #78f7e5;
}

.gix-application-detail__intro {
    padding: 14px 0 16px;
}

.gix-application-detail__intro h2,
.gix-application-detail__booth h2 {
    margin: 0 0 7px;
    font-size: 14px;
    line-height: 1.35;
}

.gix-application-detail__intro > ul,
.gix-application-detail__intro ul ul,
.gix-application-detail__booth-notes,
.gix-application-detail__booth-notes ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gix-application-detail__intro > ul > li,
.gix-application-detail__booth-notes > li {
    position: relative;
    padding-left: 10px;
    font-size: 11px;
    line-height: 1.65;
}

.gix-application-detail__intro > ul > li::before,
.gix-application-detail__booth-notes > li::before {
    position: absolute;
    left: 0;
    content: '-';
}

.gix-application-detail__intro ul ul {
    margin: 2px 0 2px 8px;
}

.gix-application-detail__intro ul ul li,
.gix-application-detail__booth-notes ul li {
    position: relative;
    padding-left: 11px;
    font-size: 10.5px;
    line-height: 1.55;
}

.gix-application-detail__intro ul ul li::before,
.gix-application-detail__booth-notes ul li::before {
    position: absolute;
    left: 0;
    content: '·';
}

.gix-application-detail__schedule {
    padding-bottom: 25px;
}

.gix-application-detail__note {
    margin: 12px 0 0;
    color: #dadddc;
    font-size: 10px;
    line-height: 1.45;
}

.gix-application-detail__booth {
    position: relative;
    padding: 19px 0 28px;
    background: #212121;
    box-shadow: 0 0 0 100vmax #212121;
    clip-path: inset(0 -100vmax);
}

.gix-application-detail__booth::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.46);
    clip-path: inset(0 -100vmax);
    content: '';
    pointer-events: none;
}

.gix-application-detail__booth h2 small {
    font-size: 0.78em;
    font-weight: 700;
}

.gix-application-detail__booth figure {
    margin: 15px 0 0;
    overflow: hidden;
    background: #f4f1df;
}

.gix-application-detail__booth figure img {
    width: 100%;
    height: auto;
    display: block;
}

.gix-application-detail__legend {
    margin: 9px 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px 24px;
}

.gix-application-detail__legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
}

.gix-application-detail__legend i {
    width: 12px;
    height: 12px;
    border: 1px solid #e8eceb;
    border-radius: 50%;
}

.gix-application-detail__legend .is-premium {
    background: #2fb6ea;
}

.gix-application-detail__legend .is-standard {
    background: #ffb82e;
}

.gix-application-detail__booth-notes > li::before {
    content: '※';
}

.gix-application-detail__booth-notes ul {
    margin: 1px 0 2px 4px;
}

.gix-application-detail__booth-notes ul li::before {
    content: '-';
}

@media (max-width: 720px) {
    .gix-application-detail__header {
        padding-top: 15px;
    }

    .gix-application-detail__switch a,
    .gix-application-detail__switch span {
        min-height: 34px;
        padding-inline: 8px;
        font-size: 11px;
    }

    .gix-application-detail__switch > .gix-application-detail__primary-tab {
        min-height: 34px;
        font-size: 12px;
    }

    .gix-application-detail__intro > ul > li,
    .gix-application-detail__booth-notes > li {
        font-size: 10px;
    }

    .gix-application-detail__booth h2 small {
        display: block;
        margin-top: 2px;
    }
}

/* GIX 2026 application guide */
.gix-application-guide-page .gx-main,
.gix-application-guide {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.gix-application-guide-page .gx-main {
    background: #090b0a;
}

.gix-application-guide-page .gx-backdrop {
    display: none;
}

.gix-application-guide {
    color: #f7f9f8;
    background: #090b0a;
}

.gix-application-guide__shell {
    width: min(calc(100% - 40px), 840px);
    margin: 0 auto;
}

.gix-application-guide__header {
    padding: 14px 0 9px;
}

.gix-application-guide__header h1 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.gix-application-guide__methods {
    padding-bottom: 24px;
}

.gix-application-guide__methods h2,
.gix-application-guide__process h2,
.gix-application-guide__contact h2 {
    margin: 14px 0 9px;
    font-size: 13px;
    line-height: 1.3;
}

.gix-application-guide__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.gix-application-guide__card {
    min-width: 0;
    min-height: 182px;
    padding: 12px 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #151515;
    background: #fff;
    text-align: center;
}

.gix-application-guide__card-icon {
    width: 88px;
    height: 75px;
    display: block;
    object-fit: contain;
}

.gix-application-guide__card h3 {
    margin: 1px 0 3px;
    font-size: 14px;
    line-height: 1.25;
}

.gix-application-guide__card > p {
    margin: 0 0 12px;
    font-size: 11px;
    line-height: 1.4;
}

.gix-application-guide__card-actions {
    width: 100%;
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.gix-application-guide__card-actions--single {
    grid-template-columns: 1fr;
}

.gix-application-guide__action {
    min-height: 28px;
    padding: 5px 8px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #c6c6c6;
    color: #171717;
    background: #e7e7e7;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
}

.gix-application-guide__download-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.gix-application-guide__action--primary {
    border-color: #2ef0d3;
    background: #2ef0d3;
}

.gix-application-guide__action--primary:hover,
.gix-application-guide__action--primary:focus-visible {
    color: #fff;
    border-color: #12ac97;
    background: #12ac97;
}

.gix-application-guide__action--disabled {
    color: #777;
    cursor: not-allowed;
}

.gix-application-guide__process {
    padding: 4px 0 22px;
    background: #262626;
}

.gix-application-guide__process ol {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 42px;
    list-style: none;
}

.gix-application-guide__process li {
    position: relative;
    min-width: 0;
    display: flex;
}

.gix-application-guide__process li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -32px;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 1px solid #f5f5f5;
    border-radius: 50%;
    color: #fff;
    content: '›';
    font-size: 21px;
    line-height: 1;
    transform: translateY(-50%);
}

.gix-application-guide__process li > div {
    width: 100%;
    min-height: 84px;
    padding: 10px;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #151515;
    background: #fff;
}

.gix-application-guide__step-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: block;
    object-fit: contain;
}

.gix-application-guide__process p {
    min-width: 0;
    margin: 0;
}

.gix-application-guide__process strong,
.gix-application-guide__process small {
    display: block;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.gix-application-guide__process strong {
    font-size: 11px;
    line-height: 1.25;
}

.gix-application-guide__process small {
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.45;
}

.gix-application-guide__contact {
    position: relative;
    padding: 5px 0 24px;
    background: #090b0a;
    box-shadow: 0 0 0 100vmax #090b0a;
    clip-path: inset(0 -100vmax);
}

.gix-application-guide__contact::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: #606060;
    box-shadow: 0 0 0 100vmax #606060;
    clip-path: inset(0 -100vmax);
    content: '';
    pointer-events: none;
}

.gix-application-guide__contact p {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .gix-application-guide__shell {
        width: min(calc(100% - 24px), 840px);
    }

    .gix-application-guide__cards {
        grid-template-columns: 1fr;
    }

    .gix-application-guide__process ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .gix-application-guide__process li:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 440px) {
    .gix-application-guide__card-actions,
    .gix-application-guide__process ol {
        grid-template-columns: 1fr;
    }
}

/* GIX 2026 exhibition program */
.gix-exhibition-program-page .gx-main,
.gix-exhibition-program {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.gix-exhibition-program-page .gx-main {
    background: #212121;
}

.gix-exhibition-program-page .gx-backdrop {
    display: none;
}

.gix-exhibition-program {
    color: #f7f9f8;
    background: #0a0b0a;
}

.gix-exhibition-program__shell {
    width: min(calc(100% - 40px), 1056px);
    margin: 0 auto;
}

.gix-exhibition-program__intro {
    padding: 23px 0 29px;
    background: #0a0b0a;
    box-shadow: 0 0 0 100vmax #0a0b0a;
    clip-path: inset(0 -100vmax);
}

.gix-exhibition-program__intro h1 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.25;
}

.gix-exhibition-program__intro ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gix-exhibition-program__intro li {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.45;
}

.gix-exhibition-program__intro li::before {
    margin-right: 4px;
    content: '-';
}

.gix-exhibition-program__layout {
    padding: 26px 0 42px;
    display: flex;
    flex: 1;
    background: #212121;
    box-shadow: 0 0 0 100vmax #212121;
    clip-path: inset(0 -100vmax);
}

.gix-exhibition-program__layout h2 {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.gix-exhibition-program__layout h2 small {
    font-size: 12px;
    font-weight: 600;
}

.gix-exhibition-program__layout h2,
.gix-exhibition-program__plans {
    max-width: 660px;
}

.gix-exhibition-program__plans {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.gix-exhibition-program__plan {
    min-width: 0;
    margin: 0;
}

.gix-exhibition-program__plan img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.gix-exhibition-program__empty {
    min-height: 220px;
    margin: 18px 0 0;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    color: #b9c2c0;
    font-size: 13px;
}

@media (max-width: 720px) {
    body.gx-app.gix-static-page.gix-exhibition-program-page .gx-main {
        width: 100%;
        margin-inline: 0;
        zoom: 1;
    }

    .gix-exhibition-program-page .gix-exhibition-program__shell {
        width: min(calc(100% - 24px), 1056px);
    }

    .gix-exhibition-program__intro {
        padding-block: 18px 22px;
    }

    .gix-exhibition-program__intro h1 {
        font-size: 18px;
    }

    .gix-exhibition-program__intro li,
    .gix-exhibition-program__layout h2 small {
        font-size: 11px;
    }

    .gix-exhibition-program__layout h2 small {
        display: block;
        margin-top: 3px;
    }

    .gix-exhibition-program__plans {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* GIX 2026 presentation program */
.gix-program-page .gx-main {
    background: #090b0a;
}

.gix-program {
    min-height: 100%;
    background: #090b0a;
    color: #f7f9f8;
}

.gix-program__shell {
    width: min(calc(100% - 40px), 840px);
    margin: 0 auto;
    padding: 18px 0 24px;
}

.gix-program__header {
    margin-bottom: 10px;
}

.gix-program__header h1 {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.25;
}

.gix-program__header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gix-program__header li {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.45;
}

.gix-program__header li::before {
    margin-right: 4px;
    content: '-';
}

.gix-program__table-wrap {
    width: 100%;
    overflow-x: auto;
    background: #212121;
    scrollbar-color: #51d7c5 #212121;
}

.gix-program__table-wrap--presentations {
    margin-top: 10px;
}

.gix-program__table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    table-layout: fixed;
    color: #f7f9f8;
    background: #212121;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
}

.gix-program__table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gix-program__table col.gix-program__time {
    width: 155px;
}

.gix-program__table col.gix-program__speaker {
    width: 255px;
}

.gix-program__table th,
.gix-program__table td {
    height: 18px;
    padding: 2px 8px;
    border: 1px solid #606060;
    vertical-align: middle;
}

.gix-program__table tbody tr {
    height: 34px;
}

.gix-program__table thead th {
    height: 24px;
    border-color: #69b7ac;
    color: #fff;
    background: #0da28d;
    font-weight: 800;
}

.gix-program__table td strong,
.gix-program__table td span {
    display: block;
}

.gix-program__table th > span,
.gix-program__table td > strong,
.gix-program__table td > span {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.gix-program__table td > strong:empty,
.gix-program__table td > span:empty {
    display: none;
}

.gix-program__table td > strong:not(:only-child) {
    margin-bottom: 2px;
}

.gix-program__table tbody td:nth-child(2) > strong {
    color: #00a88f;
    font-size: 13px;
}

.gix-program__note {
    margin: 13px 0 0;
    color: #dadfdd;
    font-size: 10px;
    line-height: 1.4;
}

.gix-program__edit-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin: 0 0 10px;
    color: #132d2a;
}

.gix-program__editor.is-editing .gix-program__edit-bar {
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid #51d7c5;
    background: #eafffb;
}

.gix-program__edit-bar [hidden] {
    display: none !important;
}

.gix-program__edit-actions {
    display: flex;
    gap: 6px;
}

.gix-program__edit-bar p,
.gix-program__edit-result {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
}

.gix-program__edit-result {
    margin: -3px 0 10px;
    color: #51d7c5;
    font-weight: 700;
}

.gix-program__edit-result.is-error {
    color: #ff748c;
}

.gix-program__editor.is-editing [data-program-field] {
    display: block;
    min-width: 24px;
    min-height: 1.35em;
    padding: 2px 4px;
    border-radius: 3px;
    outline: 1px dashed #45a99c;
    outline-offset: 1px;
    white-space: pre-wrap;
    cursor: text;
}

.gix-program__editor.is-editing [data-program-field]:empty::before {
    color: #81928f;
    content: '빈칸';
}

.gix-program__editor.is-editing [data-program-label]:empty::before {
    content: attr(data-program-label);
}

.gix-program__editor.is-editing [data-program-field]:focus {
    outline: 2px solid #51d7c5;
    background: #173c35;
}

@media (max-width: 720px) {
    .gix-program__shell {
        width: min(calc(100% - 24px), 840px);
        padding-top: 16px;
    }

    .gix-program__header h1 {
        font-size: 18px;
    }

    .gix-program__header li {
        font-size: 11px;
    }

    .gix-program__edit-bar {
        align-items: stretch;
        flex-direction: column;
    }
}

.gx-event-table__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.gx-admin-panel .gx-event-table th:last-child,
.gx-admin-panel .gx-event-table td:last-child {
    width: 340px;
}

.gx-event-table__actions .gx-button + .gx-button {
    margin-left: 0;
}

@media (max-width: 900px) {
    .gx-admin-panel .gx-event-table th:last-child,
    .gx-admin-panel .gx-event-table td:last-child {
        width: auto;
    }

    .gx-static-page-table th:last-child,
    .gx-static-page-table td:last-child {
        width: auto;
    }

    .gx-static-page-table__actions {
        display: flex !important;
        gap: 7px !important;
        white-space: normal;
    }

    .gx-static-page-table__actions .gx-button {
        flex: 1;
    }
}

@media (max-width: 720px) {
    .gx-static-section-order-form {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-static-section-order-form .gx-button {
        width: 100%;
    }

    .gx-static-section-list {
        padding: 14px;
    }

    .gx-static-section-card--new {
        margin: 0 14px 14px;
    }

    .gx-static-section-fields {
        grid-template-columns: 1fr;
    }

    .gx-static-section-fields__alt,
    .gx-static-section-fields__file {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .gx-static-page-editions {
        margin-inline: 0;
    }

    .gx-static-section-manager {
        margin-top: 30px;
    }

    .gx-static-section-card__head {
        align-items: flex-start;
    }

    .gx-static-section-form {
        padding: 16px;
    }

    .gx-static-section-delete {
        padding: 0 16px 16px;
    }

    .gx-static-section-card__actions .gx-button,
    .gx-static-section-delete .gx-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gx-static-page-editions a {
        transition: none;
    }
}

@media (prefers-contrast: more) {
    .gx-static-section-manager,
    .gx-static-section-card,
    .gx-static-page-editions {
        border-color: var(--gx-line-strong);
    }
}

/* Static-page visual builder */
.gx-static-section-manager {
    --gx-static-control-accent: #45f7df;
    --gx-static-control-accent-bright: #8bfff0;
    --gx-static-control-accent-rgb: 69, 247, 223;
}

.gx-static-section-manager .gx-admin-panel-code,
.gx-static-section-manager .gx-admin-panel-copy,
.gx-static-section-manager .gx-static-section-order-form__copy,
.gx-static-section-manager .gx-form-label,
.gx-static-section-manager .gx-form-help,
.gx-static-section-manager .gx-form-required,
.gx-static-section-manager .gx-form-switch-copy small,
.gx-static-section-manager .gx-button,
.gx-static-section-manager .gx-static-section-preview figcaption,
.gx-static-section-manager .gx-static-section-empty span {
    font-size: 13px;
}

.gx-static-section-manager .gx-static-section-form,
.gx-static-section-manager .gx-static-section-fields,
.gx-static-section-manager .gx-static-section-fields .gx-form-group {
    min-width: 0;
}

.gx-static-section-manager .gx-form-help,
.gx-static-section-manager .gx-static-upload-zone__copy {
    overflow-wrap: anywhere;
}

.gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file']),
.gx-static-section-manager .gx-static-section-form textarea.gx-form-control {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid rgba(137, 202, 196, 0.44);
    border-radius: 6px;
    outline: 0;
    color: #edf8f7;
    background: linear-gradient(180deg, rgba(9, 29, 32, 0.96), rgba(2, 11, 14, 0.98));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
    caret-color: var(--gx-static-control-accent-bright);
    font-family: var(--gx-sans);
    font-size: 13px;
    line-height: 1.55;
    transition:
        border-color 150ms ease,
        color 150ms ease,
        background 150ms ease,
        box-shadow 150ms ease;
}

.gx-static-section-manager .gx-static-section-form textarea.gx-form-control {
    resize: vertical;
}

.gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file'])::placeholder,
.gx-static-section-manager .gx-static-section-form textarea.gx-form-control::placeholder {
    color: #829b9d;
    opacity: 1;
}

.gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file']):not(:disabled):hover,
.gx-static-section-manager .gx-static-section-form textarea.gx-form-control:not(:disabled):hover {
    border-color: var(--gx-static-control-accent);
    background: linear-gradient(180deg, rgba(11, 35, 38, 0.98), rgba(3, 15, 18, 0.99));
}

.gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file']):focus,
.gx-static-section-manager .gx-static-section-form textarea.gx-form-control:focus {
    border-color: var(--gx-static-control-accent);
    color: #fff;
    background: rgba(5, 22, 25, 0.99);
    box-shadow:
        0 0 0 3px rgba(var(--gx-static-control-accent-rgb), 0.14),
        0 0 20px rgba(var(--gx-static-control-accent-rgb), 0.08),
        inset 0 1px rgba(255, 255, 255, 0.035);
}

.gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file']):focus-visible,
.gx-static-section-manager .gx-static-section-form textarea.gx-form-control:focus-visible {
    outline: 2px solid var(--gx-static-control-accent-bright);
    outline-offset: 1px;
}

.gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file']):invalid:focus,
.gx-static-section-manager .gx-static-section-form textarea.gx-form-control:invalid:focus,
.gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file'])[aria-invalid='true'],
.gx-static-section-manager .gx-static-section-form textarea.gx-form-control[aria-invalid='true'] {
    border-color: var(--gx-danger);
    box-shadow: 0 0 0 3px rgba(255, 113, 133, 0.14);
}

.gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file']):user-invalid,
.gx-static-section-manager .gx-static-section-form textarea.gx-form-control:user-invalid {
    border-color: var(--gx-danger);
    box-shadow: 0 0 0 3px rgba(255, 113, 133, 0.14);
}

.gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file']):disabled,
.gx-static-section-manager .gx-static-section-form textarea.gx-form-control:disabled {
    border-color: rgba(126, 151, 153, 0.2);
    color: #899d9f;
    background: rgba(7, 17, 19, 0.82);
    box-shadow: none;
    cursor: not-allowed;
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 5px 7px;
    overflow: hidden;
    border: 1px solid rgba(137, 202, 196, 0.44);
    border-radius: 6px;
    outline: 0;
    color: #bfd1d2;
    background: rgba(1, 9, 12, 0.86);
    font-family: var(--gx-sans);
    font-size: 13px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
    color-scheme: dark;
    cursor: pointer;
    transition:
        border-color 150ms ease,
        background 150ms ease,
        box-shadow 150ms ease;
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file::file-selector-button {
    min-height: 36px;
    margin-right: 11px;
    padding: 0 14px;
    border: 1px solid rgba(var(--gx-static-control-accent-rgb), 0.58);
    border-radius: 4px;
    color: var(--gx-static-control-accent-bright);
    background: linear-gradient(180deg, rgba(var(--gx-event-accent-rgb), 0.16), rgba(var(--gx-event-accent-rgb), 0.07));
    font-family: var(--gx-sans);
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    transition:
        border-color 150ms ease,
        color 150ms ease,
        background 150ms ease,
        box-shadow 150ms ease;
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file::-webkit-file-upload-button {
    min-height: 36px;
    margin-right: 11px;
    padding: 0 14px;
    border: 1px solid rgba(var(--gx-static-control-accent-rgb), 0.58);
    border-radius: 4px;
    color: var(--gx-static-control-accent-bright);
    background: linear-gradient(180deg, rgba(var(--gx-event-accent-rgb), 0.16), rgba(var(--gx-event-accent-rgb), 0.07));
    font-family: var(--gx-sans);
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    transition:
        border-color 150ms ease,
        color 150ms ease,
        background 150ms ease,
        box-shadow 150ms ease;
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file::file-selector-button:hover {
    border-color: var(--gx-static-control-accent);
    color: #fff;
    background: rgba(var(--gx-event-accent-rgb), 0.22);
    box-shadow: 0 0 12px rgba(var(--gx-static-control-accent-rgb), 0.12);
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file::-webkit-file-upload-button:hover {
    border-color: var(--gx-static-control-accent);
    color: #fff;
    background: rgba(var(--gx-event-accent-rgb), 0.22);
    box-shadow: 0 0 12px rgba(var(--gx-static-control-accent-rgb), 0.12);
}

.gx-static-section-manager .gx-static-upload-zone:hover input.gx-form-control--file,
.gx-static-section-manager .gx-static-upload-zone:focus-within input.gx-form-control--file,
.gx-static-section-manager .gx-static-upload-zone.is-file-over input.gx-form-control--file,
.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file:focus {
    border-color: var(--gx-static-control-accent);
    background: rgba(4, 19, 22, 0.96);
    box-shadow: 0 0 0 3px rgba(var(--gx-static-control-accent-rgb), 0.12);
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file:focus-visible {
    outline: 2px solid var(--gx-static-control-accent-bright);
    outline-offset: 1px;
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file:invalid:focus,
.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file[aria-invalid='true'] {
    border-color: var(--gx-danger);
    box-shadow: 0 0 0 3px rgba(255, 113, 133, 0.14);
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file:user-invalid {
    border-color: var(--gx-danger);
    box-shadow: 0 0 0 3px rgba(255, 113, 133, 0.14);
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file:disabled {
    border-color: rgba(126, 151, 153, 0.2);
    color: #829597;
    background: rgba(7, 17, 19, 0.82);
    box-shadow: none;
    cursor: not-allowed;
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file:disabled::file-selector-button {
    border-color: rgba(126, 151, 153, 0.2);
    color: #829597;
    background: rgba(126, 151, 153, 0.06);
    box-shadow: none;
    cursor: not-allowed;
}

.gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file:disabled::-webkit-file-upload-button {
    border-color: rgba(126, 151, 153, 0.2);
    color: #829597;
    background: rgba(126, 151, 153, 0.06);
    box-shadow: none;
    cursor: not-allowed;
}

.gx-static-section-manager .gx-static-upload-zone:has(input.gx-form-control--file:user-invalid),
.gx-static-section-manager .gx-static-upload-zone:has(input.gx-form-control--file[aria-invalid='true']) {
    border-color: var(--gx-danger);
    background: rgba(92, 22, 33, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 113, 133, 0.12);
}

.gx-static-section-manager .gx-static-upload-zone:has(input.gx-form-control--file:disabled) {
    border-color: rgba(126, 151, 153, 0.24);
    border-style: solid;
    color: #829597;
    background: rgba(7, 17, 19, 0.72);
    cursor: not-allowed;
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-color: rgba(137, 202, 196, 0.4);
    color: var(--gx-copy);
    background: linear-gradient(135deg, rgba(var(--gx-event-accent-rgb), 0.06), transparent 58%), rgba(2, 12, 15, 0.9);
    transition:
        border-color 150ms ease,
        background 150ms ease,
        box-shadow 150ms ease;
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch:hover {
    border-color: var(--gx-static-control-accent);
    background: rgba(var(--gx-event-accent-rgb), 0.075);
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch:focus-within {
    border-color: var(--gx-static-control-accent);
    box-shadow: 0 0 0 3px rgba(var(--gx-static-control-accent-rgb), 0.12);
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch-visual {
    border-color: rgba(var(--gx-static-control-accent-rgb), 0.5);
    background: #102326;
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch-copy {
    min-width: 0;
    overflow-wrap: anywhere;
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch-input:checked + .gx-form-switch-visual {
    border-color: var(--gx-static-control-accent);
    background: rgba(var(--gx-static-control-accent-rgb), 0.2);
    box-shadow: 0 0 14px rgba(var(--gx-static-control-accent-rgb), 0.13);
}

.gx-static-section-manager
    .gx-static-section-fields__published
    .gx-form-switch-input:checked
    + .gx-form-switch-visual
    i {
    background: var(--gx-static-control-accent-bright);
    box-shadow: 0 0 9px rgba(var(--gx-static-control-accent-rgb), 0.5);
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch-copy strong {
    color: #e6f3f3;
    font-size: 13px;
    line-height: 1.4;
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch-copy small {
    font-size: 13px;
    line-height: 1.45;
}

.gx-static-section-manager
    .gx-static-section-fields__published
    .gx-form-switch-input:focus-visible
    + .gx-form-switch-visual {
    outline-color: var(--gx-static-control-accent-bright);
    box-shadow: 0 0 0 3px rgba(var(--gx-static-control-accent-rgb), 0.16);
}

.gx-static-section-manager
    .gx-static-section-fields__published
    .gx-form-switch-input[aria-invalid='true']
    + .gx-form-switch-visual {
    border-color: var(--gx-danger);
    box-shadow: 0 0 0 3px rgba(255, 113, 133, 0.14);
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch-input:disabled + .gx-form-switch-visual,
.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch-input:disabled ~ .gx-form-switch-copy {
    color: #829597;
    opacity: 0.62;
}

.gx-static-section-manager .gx-static-section-fields__published .gx-form-switch:has(.gx-form-switch-input:disabled) {
    border-color: rgba(126, 151, 153, 0.18);
    background: rgba(7, 17, 19, 0.72);
    cursor: not-allowed;
}

.gx-static-section-manager__header {
    align-items: center;
}

.gx-static-section-manager__head-actions {
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.gx-static-section-manager__head-actions .gx-admin-panel-copy {
    flex: 1;
}

.gx-static-section-manager__head-actions .gx-button {
    flex: 0 0 auto;
}

.gx-static-section-order-form {
    transition:
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.gx-static-section-order-form__copy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.gx-static-section-order-form__copy p {
    margin: 0;
}

.gx-static-section-order-status {
    min-height: 26px;
    padding: 5px 9px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.16);
    border-radius: 999px;
    color: #86a5a7;
    background: rgba(var(--gx-event-accent-rgb), 0.035);
    font: 800 13px/1.2 var(--gx-mono);
    letter-spacing: 0.02em;
}

.gx-static-section-order-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.gx-static-section-order-status b {
    font: inherit;
}

.gx-static-section-order-status[data-state='dirty'] {
    border-color: rgba(255, 204, 91, 0.44);
    color: #ffd875;
    background: rgba(114, 75, 4, 0.2);
}

.gx-static-section-manager.is-order-dirty {
    border-color: rgba(255, 204, 91, 0.42);
    box-shadow:
        var(--gx-shadow),
        0 0 0 1px rgba(255, 204, 91, 0.08);
}

.gx-static-section-manager.is-order-dirty .gx-static-section-order-form {
    border-bottom-color: rgba(255, 204, 91, 0.28);
    background: linear-gradient(90deg, rgba(105, 72, 7, 0.22), rgba(2, 11, 13, 0.82));
}

.gx-static-section-card {
    isolation: isolate;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        opacity 160ms ease,
        transform 180ms ease;
}

.gx-static-section-card::before {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 8;
    height: 5px;
    content: '';
    background: transparent;
    pointer-events: none;
}

.gx-static-section-card.is-drop-before::before {
    top: 0;
    background: #ffd875;
    box-shadow: 0 0 18px rgba(255, 216, 117, 0.72);
}

.gx-static-section-card.is-drop-after::before {
    bottom: 0;
    background: #ffd875;
    box-shadow: 0 0 18px rgba(255, 216, 117, 0.72);
}

.gx-static-section-card.is-drop-before,
.gx-static-section-card.is-drop-after {
    border-color: rgba(255, 216, 117, 0.68);
}

.gx-static-section-card.is-dragging {
    opacity: 0.34;
    transform: scale(0.99);
}

.gx-static-section-list.is-drag-active {
    cursor: grabbing;
}

.gx-static-section-card__head-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gx-static-section-card__head-main > div {
    min-width: 0;
}

.gx-static-section-card__head-main h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gx-static-section-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.gx-static-section-state {
    padding: 3px 7px;
    border: 1px solid rgba(var(--gx-event-accent-rgb), 0.2);
    border-radius: 999px;
    color: var(--gx-cyan);
    background: rgba(var(--gx-event-accent-rgb), 0.055);
    font: 800 13px/1.1 var(--gx-mono);
}

.gx-static-section-state--off {
    border-color: rgba(131, 150, 153, 0.2);
    color: #849699;
    background: rgba(131, 150, 153, 0.045);
}

.gx-static-section-drag-handle {
    width: 66px;
    height: 40px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    border: 1px solid var(--gx-line-strong);
    border-radius: 5px;
    color: #81999b;
    background: rgba(2, 11, 13, 0.8);
    font-size: 13px;
    font-weight: 850;
    cursor: grab;
    user-select: none;
}

.gx-static-section-drag-handle:active {
    cursor: grabbing;
}

.gx-static-section-drag-handle i {
    width: 12px;
    height: 20px;
    display: block;
    background: radial-gradient(circle, currentColor 1.5px, transparent 1.8px) 0 0 / 6px 6px;
    opacity: 0.88;
}

.gx-static-section-drag-handle b {
    font: inherit;
}

.gx-static-section-move {
    flex: 0 0 auto;
}

.gx-static-section-move button {
    transition:
        border-color 150ms ease,
        color 150ms ease,
        background 150ms ease,
        transform 150ms ease;
}

.gx-static-section-move button:not(:disabled):active {
    transform: translateY(1px);
}

.gx-static-section-move button:focus-visible {
    outline: 2px solid var(--gx-cyan);
    outline-offset: -3px;
}

.gx-static-section-preview img {
    max-height: 290px;
}

.gx-static-section-settings {
    border-top: 1px solid var(--gx-line);
    background: rgba(2, 11, 13, 0.48);
}

.gx-static-section-settings > summary {
    min-height: 54px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #b4c5c6;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
    transition:
        color 160ms ease,
        background 160ms ease;
}

.gx-static-section-settings > summary::-webkit-details-marker {
    display: none;
}

.gx-static-section-settings > summary:hover {
    color: var(--gx-ink);
    background: rgba(var(--gx-event-accent-rgb), 0.035);
}

.gx-static-section-settings > summary:focus-visible {
    outline: 2px solid var(--gx-cyan);
    outline-offset: -3px;
}

.gx-static-section-settings > summary small {
    color: var(--gx-muted);
    font-size: 13px;
    font-weight: 650;
}

.gx-static-section-settings > summary i {
    width: 8px;
    height: 8px;
    margin: -4px 2px 0 auto;
    display: block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition:
        transform 160ms ease,
        margin 160ms ease;
}

.gx-static-section-settings[open] > summary {
    color: var(--gx-cyan);
    background: rgba(var(--gx-event-accent-rgb), 0.045);
}

.gx-static-section-settings[open] > summary i {
    margin-top: 4px;
    transform: rotate(225deg);
}

.gx-static-section-settings__body {
    border-top: 1px solid var(--gx-line);
    background: linear-gradient(145deg, rgba(7, 25, 28, 0.64), rgba(2, 10, 12, 0.88));
}

.gx-static-section-settings__body .gx-static-section-form {
    padding-bottom: 14px;
}

.gx-static-section-settings__body .gx-static-section-delete {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 113, 133, 0.12);
    background: rgba(75, 19, 28, 0.07);
}

.gx-static-upload-zone {
    min-height: 132px;
    padding: 18px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 5px 14px;
    border: 1px dashed rgba(var(--gx-event-accent-rgb), 0.36);
    border-radius: 7px;
    color: var(--gx-copy);
    background: linear-gradient(135deg, rgba(var(--gx-event-accent-rgb), 0.04), transparent 54%), rgba(2, 11, 13, 0.72);
    cursor: pointer;
    transition:
        border-color 160ms ease,
        color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.gx-static-upload-zone:hover,
.gx-static-upload-zone:focus-within,
.gx-static-upload-zone.is-file-over {
    border-color: var(--gx-cyan);
    color: var(--gx-ink);
    background: rgba(var(--gx-event-accent-rgb), 0.075);
    box-shadow: inset 0 0 0 1px rgba(var(--gx-event-accent-rgb), 0.08);
}

.gx-static-upload-zone.is-file-over {
    border-style: solid;
}

.gx-static-upload-zone__icon {
    width: 44px;
    height: 44px;
    display: grid;
    grid-row: 1 / span 2;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 50%;
    color: var(--gx-cyan);
    background: rgba(var(--gx-event-accent-rgb), 0.045);
    font-size: 1.15rem;
}

.gx-static-upload-zone__copy {
    min-width: 0;
    display: grid;
}

.gx-static-upload-zone__copy strong {
    color: inherit;
    font-size: 13px;
}

.gx-static-upload-zone__copy small {
    color: var(--gx-muted);
    font-size: 13px;
}

.gx-static-upload-zone input.gx-form-control--file {
    grid-column: 1 / -1;
    margin-top: 9px;
    background: rgba(1, 7, 9, 0.74);
}

.gx-static-upload-zone__name {
    grid-column: 1 / -1;
    overflow: hidden;
    color: var(--gx-muted);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gx-static-upload-zone.has-file .gx-static-upload-zone__name {
    color: var(--gx-cyan);
    font-weight: 800;
}

.gx-static-section-card--new {
    scroll-margin-top: 110px;
    box-shadow: inset 0 3px rgba(var(--gx-event-accent-rgb), 0.13);
}

.gx-static-section-card--new[hidden] {
    display: none;
}

.gx-static-section-panel-close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gx-line-strong);
    border-radius: 50%;
    color: var(--gx-muted);
    background: rgba(2, 11, 13, 0.78);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
}

.gx-static-section-panel-close:hover,
.gx-static-section-panel-close:focus-visible {
    border-color: var(--gx-cyan);
    color: var(--gx-cyan);
}

.gx-static-section-card__actions--new {
    gap: 8px;
}

@media (max-width: 900px), (pointer: coarse) {
    .gx-static-section-drag-handle {
        display: none;
    }

    .gx-static-section-move button {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 720px) {
    .gx-static-section-manager__header,
    .gx-static-section-manager__head-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-static-section-manager__head-actions {
        width: 100%;
        max-width: none;
    }

    .gx-static-section-manager__head-actions .gx-admin-panel-copy {
        max-width: none;
    }

    .gx-static-section-manager__head-actions .gx-button {
        width: 100%;
    }

    .gx-static-section-order-form__copy {
        align-items: flex-start;
        flex-direction: column;
    }

    .gx-static-section-settings > summary small {
        display: none;
    }

    .gx-static-section-card__actions--new {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-static-section-card__actions--new .gx-button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .gx-static-section-card__head {
        flex-wrap: wrap;
    }

    .gx-static-section-card__head-main {
        width: 100%;
    }

    .gx-static-section-move {
        width: 100%;
        justify-content: flex-end;
    }

    .gx-static-upload-zone {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 14px;
    }

    .gx-static-upload-zone__icon {
        width: 36px;
        height: 36px;
    }

    .gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file {
        padding-inline: 5px;
    }

    .gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file::file-selector-button {
        max-width: 52%;
        margin-right: 8px;
        padding-inline: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file::-webkit-file-upload-button {
        max-width: 52%;
        margin-right: 8px;
        padding-inline: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .gx-static-section-manager .gx-static-section-fields__published .gx-form-switch {
        gap: 10px;
        padding: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gx-static-section-order-form,
    .gx-static-section-card,
    .gx-static-section-move button,
    .gx-static-section-settings > summary,
    .gx-static-section-settings > summary i,
    .gx-static-upload-zone,
    .gx-static-section-manager .gx-static-section-form input.gx-form-control,
    .gx-static-section-manager .gx-static-section-form textarea.gx-form-control,
    .gx-static-section-manager .gx-static-section-fields__published .gx-form-switch {
        transition: none;
    }

    .gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file::file-selector-button {
        transition: none;
    }

    .gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file::-webkit-file-upload-button {
        transition: none;
    }
}

@media (forced-colors: active) {
    .gx-static-section-card.is-drop-before::before,
    .gx-static-section-card.is-drop-after::before {
        background: Highlight;
    }

    .gx-static-section-order-status,
    .gx-static-section-drag-handle,
    .gx-static-upload-zone {
        border-color: CanvasText;
    }

    .gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file']),
    .gx-static-section-manager .gx-static-section-form textarea.gx-form-control,
    .gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file,
    .gx-static-section-manager .gx-static-section-fields__published .gx-form-switch {
        border-color: CanvasText;
        background: Canvas;
        color: CanvasText;
    }

    .gx-static-section-manager .gx-static-section-form input.gx-form-control:not([type='file']):focus-visible,
    .gx-static-section-manager .gx-static-section-form textarea.gx-form-control:focus-visible,
    .gx-static-section-manager .gx-static-upload-zone input.gx-form-control--file:focus-visible {
        outline-color: Highlight;
    }
}

/* GIX notice list */
.gx-notice-list.gx-board {
    width: min(calc(100% - 40px), 980px);
    max-width: 1056px;
    padding: 22px 0 54px;
}

.gx-notice-list__header {
    min-height: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gx-notice-list__header h1 {
    margin: 0;
    color: #f5f7f6;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.035em;
}

.gx-notice-list__write {
    padding: 6px 11px;
    color: #07100f;
    background: #2ef0d3;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
}

.gx-notice-list__write:hover,
.gx-notice-list__write:focus-visible {
    color: #fff;
    background: #12ac97;
}

.gx-notice-list__table-wrap {
    width: 100%;
    overflow-x: auto;
    background: #292929;
    scrollbar-color: #2ef0d3 #171717;
}

.gx-notice-list__table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    table-layout: fixed;
    color: #f1f3f2;
    background: #292929;
    font-size: 11px;
    line-height: 1.35;
}

.gx-notice-list__table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gx-notice-list__number {
    width: 58px;
}

.gx-notice-list__date {
    width: 142px;
}

.gx-notice-list__views {
    width: 72px;
}

.gx-notice-list__table th,
.gx-notice-list__table td {
    height: 38px;
    padding: 7px 14px;
    box-sizing: border-box;
    border: 0;
    border-bottom: 1px solid #646464;
    vertical-align: middle;
}

.gx-notice-list__table th {
    height: 31px;
    padding-block: 5px;
    color: #06100e;
    background: #2ef0d3;
    font-weight: 800;
    text-align: center;
}

.gx-notice-list__table td {
    text-align: center;
}

.gx-notice-list__table tbody tr {
    transition: background-color 140ms ease;
}

.gx-notice-list__table tbody tr:hover {
    background: #343434;
}

.gx-notice-list__table tbody tr:last-child td {
    border-bottom-color: #777;
}

.gx-notice-list__table .gx-notice-list__title {
    text-align: left;
}

.gx-notice-list__title a {
    display: block;
    overflow: hidden;
    color: #f1f3f2;
    font-weight: 400;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gx-notice-list__title a:hover,
.gx-notice-list__title a:focus-visible {
    color: #2ef0d3;
}

.gx-notice-list__table time {
    color: inherit;
    font: inherit;
    white-space: nowrap;
}

.gx-notice-list__empty-row td {
    height: 190px;
    color: #bfc5c3;
    text-align: center;
}

.gx-notice-pagination {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

.gx-notice-pagination ol {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    list-style: none;
}

.gx-notice-pagination a,
.gx-notice-pagination strong,
.gx-notice-pagination span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #f0f3f2;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.gx-notice-pagination a:hover,
.gx-notice-pagination a:focus-visible,
.gx-notice-pagination strong {
    color: #2ef0d3;
}

.gx-notice-pagination__direction a,
.gx-notice-pagination__direction span {
    color: #d8dddb;
    font-size: 22px;
    font-weight: 300;
}

.gx-notice-pagination__direction span {
    opacity: 0.42;
}

@media (max-width: 720px) {
    .gx-notice-list.gx-board {
        width: min(calc(100% - 24px), 980px);
        padding: 18px 0 42px;
    }

    .gx-notice-list__header h1 {
        font-size: 17px;
    }

    .gx-notice-list__table th,
    .gx-notice-list__table td {
        padding: 8px 4px;
        overflow-wrap: anywhere;
    }

    .gx-notice-list__table {
        min-width: 0;
    }

    .gx-notice-list__number {
        width: 14%;
    }

    .gx-notice-list__date {
        width: 23%;
    }

    .gx-notice-list__views {
        width: 13%;
    }

    .gx-notice-list__title a,
    .gx-notice-list__table time {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .gx-notice-list__title a {
        overflow: visible;
        text-overflow: clip;
    }
}

/* Non-home page readability scale */
body.gx-app:not(.gix-home-page) .gx-main {
    width: 80%;
    margin-inline: auto;
    zoom: 1.25;
}

/* The non-home main is rendered at 125%; inverse dimensions align it to the shared 1320px shell. */
.gix-overview__shell,
.gix-directions__shell,
.gix-visitor-preregistration__shell,
.gix-participation-benefits__shell,
.gix-application-guide__shell,
.gix-exhibition-program__shell,
.gix-program__shell,
.gx-notice-list.gx-board {
    width: min(calc(100% - 32px), 1056px);
    margin-inline: auto;
}

@media (max-width: 640px) {
    .gix-overview__shell,
    .gix-directions__shell,
    .gix-visitor-preregistration__shell,
    .gix-participation-benefits__shell,
    .gix-application-guide__shell,
    .gix-exhibition-program__shell,
    .gix-program__shell,
    .gx-notice-list.gx-board {
        width: min(calc(100% - 19.2px), 1056px);
    }
}

/* Reference sections use a full-bleed gray band while their content stays on the shared shell. */
.gix-overview__copy,
.gix-overview__effects,
.gix-overview__event,
.gix-application-guide__process {
    background: #212121;
}

.gix-overview__event,
.gix-application-guide__process {
    box-shadow: 0 0 0 100vmax #212121;
    clip-path: inset(0 -100vmax);
}

.gix-visitor-preregistration__events,
.gix-visitor-preregistration__apply {
    background: #282828;
    box-shadow: 0 0 0 100vmax #282828;
    clip-path: inset(0 -100vmax);
}

/* Minimal board detail */
.gx-notice-detail.gx-board {
    width: min(calc(100% - 32px), 1056px);
    max-width: 1056px;
    padding: 28px 0 60px;
    color: #f3f5f4;
    background: #0a0b0a;
    box-shadow: 0 0 0 100vmax #0a0b0a;
    clip-path: inset(0 -100vmax);
}

.gx-notice-detail__header {
    padding: 0 0 20px;
    border-bottom: 2px solid #33ffdd;
}

.gx-notice-detail .gx-board-breadcrumb {
    margin: 0 0 14px;
    gap: 7px;
    color: #9da4a2;
    font-size: 11px;
    line-height: 1.4;
}

.gx-notice-detail .gx-board-breadcrumb a:hover,
.gx-notice-detail .gx-board-breadcrumb a:focus-visible {
    color: #33ffdd;
}

.gx-notice-detail__header h1 {
    margin: 0;
    color: #f7f9f8;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.gx-notice-detail__meta {
    margin: 16px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    color: #aeb5b3;
    font-size: 11px;
    line-height: 1.4;
}

.gx-notice-detail__meta > div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gx-notice-detail__meta > div + div {
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid #515553;
}

.gx-notice-detail__meta dt {
    color: #dce1df;
    font-weight: 700;
}

.gx-notice-detail__meta dd {
    margin: 0;
}

.gx-notice-detail__content {
    min-height: 320px;
    margin: 0;
    padding: clamp(28px, 4vw, 46px);
    border-bottom: 1px solid #5b5f5d;
    background: #212121;
}

.gx-notice-detail__content pre {
    margin: 0;
    color: #e4e8e6;
    font: 400 14px/1.85 var(--gx-sans);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.gx-notice-detail__actions {
    margin-top: 12px;
    gap: 8px;
}

.gx-notice-detail__actions .gx-button {
    min-height: 34px;
    padding: 0 15px;
    border-radius: 0;
    box-shadow: none;
    font-size: 11px;
    font-weight: 700;
    transform: none;
}

.gx-notice-detail__actions .gx-button--ghost {
    border-color: #666b69;
    color: #f0f3f2;
    background: #212121;
}

.gx-notice-detail__actions .gx-button--primary {
    border-color: #33ffdd;
    color: #06100e;
    background: #33ffdd;
}

.gx-notice-detail__actions .gx-button--danger {
    border-color: #696d6b;
    color: #d9dddb;
    background: transparent;
}

.gx-notice-detail__actions .gx-button:hover,
.gx-notice-detail__actions .gx-button:focus-visible {
    border-color: #33ffdd;
    color: #06100e;
    background: #78f7e5;
    box-shadow: none;
}

@media (max-width: 640px) {
    .gx-notice-detail.gx-board {
        width: min(calc(100% - 19.2px), 1056px);
        padding: 20px 0 42px;
    }

    .gx-notice-detail__header {
        padding-bottom: 16px;
    }

    .gx-notice-detail__meta > div + div {
        margin-left: 10px;
        padding-left: 10px;
    }

    .gx-notice-detail__content {
        min-height: 240px;
        padding: 24px 16px 36px;
    }

    .gx-notice-detail__content pre {
        font-size: 13px;
    }
}

/* Gallery detail */
.gx-gallery-detail {
    width: min(calc(100% - 32px), 1056px);
    margin: 0 auto;
    padding: 28px 0 60px;
    color: #f3f5f4;
}

.gx-gallery-detail__header {
    padding-bottom: 20px;
    border-bottom: 2px solid #33ffdd;
}

.gx-gallery-detail .gx-board-breadcrumb {
    margin: 0 0 14px;
    gap: 7px;
    color: #9da4a2;
    font-size: 11px;
}

.gx-gallery-detail .gx-board-breadcrumb a:hover,
.gx-gallery-detail .gx-board-breadcrumb a:focus-visible {
    color: #33ffdd;
}

.gx-gallery-detail__header h1 {
    margin: 0;
    color: #f7f9f8;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.gx-gallery-detail__meta {
    margin: 16px 0 0;
    display: flex;
    flex-wrap: wrap;
    color: #aeb5b3;
    font-size: 11px;
}

.gx-gallery-detail__meta > div {
    display: flex;
    gap: 6px;
}

.gx-gallery-detail__meta > div + div {
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid #515553;
}

.gx-gallery-detail__meta dt {
    color: #dce1df;
    font-weight: 700;
}

.gx-gallery-detail__meta dd {
    margin: 0;
}

.gx-gallery-detail__description {
    padding: 28px clamp(18px, 4vw, 40px);
    border-bottom: 1px solid #5b5f5d;
    background: #212121;
}

.gx-gallery-detail__description pre {
    margin: 0;
    color: #e4e8e6;
    font: 400 14px/1.85 var(--gx-sans);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.gx-gallery-detail__media {
    padding: clamp(20px, 4vw, 40px) 0;
    display: grid;
    gap: 0;
}

.gx-gallery-detail__image {
    margin: 0;
    background: #151515;
}

.gx-gallery-detail__image a,
.gx-gallery-detail__image img {
    width: 100%;
    display: block;
}

.gx-gallery-detail__image img {
    height: auto;
}

.gx-gallery-detail__image a:focus-visible {
    outline: 2px solid #33ffdd;
    outline-offset: 3px;
}

.gx-gallery-detail__video-link,
.gx-gallery-detail__empty {
    min-height: 180px;
    display: grid;
    place-items: center;
    border: 1px solid #494d4c;
    color: #f7f9f8;
    background: #212121;
}

.gx-gallery-detail__video-link {
    text-decoration: none;
}

.gx-gallery-detail__video-link:hover,
.gx-gallery-detail__video-link:focus-visible {
    border-color: #33ffdd;
    color: #33ffdd;
}

.gx-notice-detail__images {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.gx-notice-detail__images a,
.gx-notice-detail__images img {
    display: block;
    width: 100%;
    margin: 0;
}

.gx-notice-detail__images img {
    height: auto;
}

.gx-notice-detail__images a:focus-visible {
    outline: 3px solid var(--gx-primary);
    outline-offset: -3px;
}

.gx-board-existing-files,
.gx-notice-detail__attachments ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.gx-board-existing-files li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.gx-board-existing-files li + li {
    border-top: 0;
}

.gx-board-existing-files a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.gx-board-existing-files label {
    flex: 0 0 auto;
    cursor: pointer;
}

.gx-notice-detail__attachments {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.gx-notice-detail__attachments h2 {
    margin: 0;
    font-size: 18px;
}

.gx-notice-detail__attachments a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: inherit;
    text-decoration: none;
}

.gx-notice-detail__attachments a:hover span,
.gx-notice-detail__attachments a:focus-visible span {
    color: var(--gx-primary);
    text-decoration: underline;
}

.gx-notice-detail__attachments small {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.62);
}

.gx-gallery-detail__actions {
    margin-top: 0;
}

@media (max-width: 640px) {
    .gx-gallery-detail {
        width: min(calc(100% - 19.2px), 1056px);
        padding: 20px 0 42px;
    }

    .gx-gallery-detail__meta > div + div {
        margin-left: 10px;
        padding-left: 10px;
    }
}

/* GIX 2026 public application status */
body.gx-app.gix-application-status-page:not(.gix-admin-page) {
    color: #fff;
    background: #0a0b0a;
}

body.gx-app.gix-application-status-page:not(.gix-admin-page) .gx-backdrop {
    display: none;
}

body.gx-app.gix-application-status-page:not(.gix-admin-page):not(.gix-home-page) .gx-main {
    width: 100%;
    min-height: 0;
    margin-inline: 0;
    display: block;
    background: #0a0b0a;
    zoom: 1;
}

.gix-application-history {
    --gix-application-history-mint: #33ffdd;
    --gix-application-history-dark: #212121;
    --gix-application-history-gray: #363636;
    min-height: 878px;
    border-bottom: 2px solid #212121;
    color: #fff;
    background: #0a0b0a;
    font-family: var(--gx-sans);
}

.gix-application-history__shell {
    padding-top: 24px;
}

.gix-application-history--booth .gix-application-history__shell {
    padding-bottom: 32px;
}

.gix-application-history__title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 29px;
}

.gix-application-history__tabs {
    height: 48px;
    margin-top: 21px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #0a0b0a;
}

.gix-application-history__tab {
    min-width: 0;
    display: grid;
    place-items: center;
    box-shadow: inset 0 -2px var(--gix-application-history-mint);
    color: #fff;
    background: var(--gix-application-history-dark);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
    text-align: center;
}

.gix-application-history__tab.is-active {
    box-shadow: none;
    color: #000;
    background: var(--gix-application-history-mint);
    font-weight: 700;
}

.gix-application-history__tab:hover,
.gix-application-history__tab:focus-visible {
    color: #000;
    background: #8fffec;
}

.gix-application-history__shell > .gix-application-history__table-scroll,
.gix-application-history__layout {
    margin-top: 16px;
}

.gix-application-history__layout {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}

.gix-application-history__layout > img {
    width: 100%;
    height: 465px;
    display: block;
    object-fit: fill;
}

.gix-application-history__legend {
    height: 20px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 33px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 20px;
}

.gix-application-history__legend > span {
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.gix-application-history__legend i {
    width: 20px;
    height: 20px;
    display: block;
    flex: 0 0 20px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.gix-application-history__legend i.is-premium {
    background: #27a8e2;
}

.gix-application-history__legend i.is-standard {
    background: #f8b62a;
}

.gix-application-history__booth-tables {
    margin-top: 23px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
}

.gix-application-history__booth-section {
    min-width: 0;
}

.gix-application-history__booth-section h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 24px;
}

.gix-application-history__table-scroll {
    width: 100%;
    overflow-x: auto;
    scrollbar-color: #33ffdd #363636;
}

.gix-application-history__table {
    width: 100%;
    margin: 0;
    padding: 2px 0;
    display: grid;
    gap: 1px;
    border: 0;
    border-spacing: 0;
    color: #fff;
    background: #fff;
    font-size: 16px;
    line-height: 1.25;
    table-layout: fixed;
}

.gix-application-history__table--presentation {
    grid-template-columns: 120px 200px minmax(0, 1fr);
}

.gix-application-history__table--booth {
    grid-template-columns: 120px minmax(0, 1fr);
}

.gix-application-history__table thead,
.gix-application-history__table tbody,
.gix-application-history__table tr {
    display: contents;
}

.gix-application-history__table th,
.gix-application-history__table td {
    min-width: 0;
    margin: 0;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    overflow-wrap: anywhere;
    text-align: center;
    vertical-align: middle;
}

.gix-application-history__table th {
    height: 43px;
    color: #000;
    background: var(--gix-application-history-mint);
    font-size: 16px;
    font-weight: 600;
}

.gix-application-history__table td {
    min-height: 44px;
    color: #fff;
    background: var(--gix-application-history-dark);
    font-size: 16px;
    font-weight: 400;
}

.gix-application-history__table td.gix-application-history__empty {
    min-height: 90px;
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.72);
    background: var(--gix-application-history-dark);
}

.gix-application-history__company {
    width: min(100%, 240px);
    min-width: 0;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    text-align: left;
}

.gix-application-history__company > span {
    grid-column: 2;
    min-width: 0;
    overflow-wrap: anywhere;
}

.gix-application-history__company-logo {
    width: 32px;
    height: 32px;
    padding: 2px;
    display: block;
    flex: 0 0 32px;
    border-radius: 3px;
    object-fit: contain;
    background: #fff;
}

.gix-application-history__table tbody tr > td:nth-child(2) {
    background: var(--gix-application-history-gray);
}

.gix-application-history__table--presentation thead th:nth-child(2) {
    background: #8fffec;
}

.gix-application-history__table--premium thead th:first-child {
    background: #27a8e2;
}

.gix-application-history__table--premium thead th:nth-child(2) {
    background: #6fcdf6;
}

.gix-application-history__table--standard thead th:first-child {
    background: #f8b62a;
}

.gix-application-history__table--standard thead th:nth-child(2) {
    background: #ffde82;
}

@media (max-width: 900px) {
    .gix-application-history__layout > img {
        height: auto;
    }

    .gix-application-history__booth-tables {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }
}

@media (max-width: 720px) {
    .gix-application-history {
        min-height: calc(100vh - 72px);
    }

    .gix-application-history__shell {
        padding-top: 22px;
    }

    .gix-application-history--booth .gix-application-history__shell {
        padding-bottom: 28px;
    }

    .gix-application-history__title {
        font-size: 22px;
        line-height: 27px;
    }

    .gix-application-history__tabs {
        margin-top: 17px;
    }

    .gix-application-history__tab {
        padding-inline: 8px;
        font-size: 15px;
        line-height: 1.25;
    }

    .gix-application-history__table--presentation {
        min-width: 650px;
    }

    .gix-application-history__table--booth {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .gix-application-history__table th,
    .gix-application-history__table td {
        padding-inline: 8px;
        font-size: 14px;
    }

    .gix-application-history__legend {
        gap: 20px;
        font-size: 14px;
    }

    .gix-application-history__booth-section h2 {
        font-size: 18px;
    }
}

/* Keep public mobile content 16 rendered pixels from each viewport edge. */
@media (max-width: 720px) {
    body.gx-app:not(.gix-home-page):not(.gix-admin-page) .gx-main {
        --gx-mobile-gutter: 12.8px;
        width: 100%;
    }

    body.gx-app:not(.gix-home-page):not(.gix-admin-page):is(.gix-awards-page, .gix-visitor-preregistration-page, .gix-exhibition-program-page, .gix-application-status-page) .gx-main {
        --gx-mobile-gutter: 16px;
    }

    .gx-main .gx-shell,
    .gx-main .gx-page__shell,
    .gx-main .gx-static-content-page,
    .gx-main .gix-overview__shell,
    .gx-main .gix-directions__shell,
    .gx-main .gix-visitor-preregistration__shell,
    .gx-main .gix-participation-benefits__shell,
    .gx-main .gix-application-guide__shell,
    .gx-main .gix-exhibition-program__shell,
    .gx-main .gix-program__shell,
    .gx-main .gix-awards__shell,
    .gx-main .gx-gallery-page__shell,
    .gx-main .gx-gallery-detail,
    .gx-main .gx-notice-detail.gx-board,
    .gx-main .gx-notice-list.gx-board {
        width: calc(100% - var(--gx-mobile-gutter, 16px) * 2);
        margin-inline: auto;
    }
}
