:root {
    --go-black: #000000;
    --go-chitin-black: #050805;
    --go-panel-black: #081008;
    --go-panel-raised: #0c160d;
    --go-deep-green: #0a250a;
    --go-dark-green: #104e1c;
    --go-mid-green: #147530;
    --go-primary-green: #0aa141;
    --go-bright-green: #3fba44;
    --go-glow-green: #80ea89;
    --go-yellow-green: #c0dd24;
    --go-rehatched-yellow: #e2df27;
    --go-text: #d4dfd0;
    --go-muted-text: #81927e;
    --go-dim-text: #536451;
    --go-white: #f7f6f1;
    --go-border: rgba(61, 156, 67, 0.34);
    --go-border-bright: rgba(63, 186, 68, 0.72);
    --go-yellow-border: rgba(226, 223, 39, 0.68);
    --content-width: 1320px;
    --sidebar-width: 250px;
    --transition: 160ms ease;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--go-black);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--go-text);
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 93, 31, 0.16), transparent 26rem),
        radial-gradient(circle at 85% 65%, rgba(12, 86, 38, 0.12), transparent 30rem),
        linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.9)),
        repeating-radial-gradient(
            ellipse at 50% -10%,
            #101611 0,
            #101611 22px,
            #080d09 24px,
            #080d09 44px,
            #030503 46px,
            #030503 68px
        );
    font-family: "Arial Narrow", "Roboto Condensed", "Franklin Gothic Medium", Arial, sans-serif;
    line-height: 1.65;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.42;
    background:
        linear-gradient(115deg, transparent 0 47%, rgba(68, 157, 66, 0.06) 49%, transparent 51%),
        linear-gradient(65deg, transparent 0 47%, rgba(68, 157, 66, 0.04) 49%, transparent 51%);
    background-size: 72px 48px;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    padding: 0.65rem 0.9rem;
    color: var(--go-black);
    background: var(--go-rehatched-yellow);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-shell {
    width: min(calc(100% - 2rem), var(--content-width));
    min-height: calc(100vh - 2rem);
    margin: 1rem auto;
    overflow: hidden;
    border: 1px solid var(--go-border-bright);
    background: rgba(3, 7, 3, 0.94);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.9),
        0 0 34px rgba(20, 117, 48, 0.2);
}

.site-header {
    position: relative;
    border-bottom: 1px solid var(--go-border-bright);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(7, 17, 8, 0.82), rgba(0, 0, 0, 0.96));
}

.site-header::before,
.site-header::after {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 2;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--go-bright-green), transparent);
    opacity: 0.48;
}

.site-header::before {
    top: 0;
}

.site-header::after {
    bottom: 34px;
}

.logo-stage {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    color: var(--go-white);
    text-decoration: none;
    isolation: isolate;
}

.logo-stage::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.78)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 45%, rgba(0, 0, 0, 0.58));
}

.logo-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../images/Godzilla_1998_Online.png");
    background-position: center 47%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: contrast(1.08) saturate(1.05);
}

.logo-subtitle {
    position: absolute;
    bottom: 23px;
    left: 50%;
    z-index: 3;
    color: var(--go-rehatched-yellow);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(1.65rem, 4vw, 3.35rem);
    font-weight: 400;
    letter-spacing: 0.34em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow:
        0 2px 0 #161700,
        0 0 4px rgba(226, 223, 39, 0.8),
        0 0 14px rgba(136, 164, 24, 0.48);
    transform: translateX(-46%);
}

.header-status {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.4rem 1rem;
    color: #739272;
    background: rgba(0, 0, 0, 0.82);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--go-bright-green);
    box-shadow: 0 0 8px var(--go-bright-green);
}

.status-divider {
    color: var(--go-primary-green);
}

.menu-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 0;
    border-bottom: 1px solid var(--go-border);
    color: var(--go-text);
    background: #071008;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    color: var(--go-white);
    background: #0c1c0d;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--go-bright-green);
}

.menu-toggle-bars {
    position: relative;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
    position: absolute;
    left: 0;
    content: "";
}

.menu-toggle-bars::before {
    top: -7px;
}

.menu-toggle-bars::after {
    top: 7px;
}

.site-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
    min-height: 720px;
}

.site-sidebar {
    position: relative;
    border-right: 1px solid var(--go-border-bright);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 45%),
        repeating-linear-gradient(
            175deg,
            #060a06 0,
            #060a06 34px,
            #0c140d 35px,
            #080d08 68px
        );
}

.site-sidebar::after {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 1px;
    content: "";
    background: linear-gradient(
        to bottom,
        transparent,
        var(--go-bright-green) 12%,
        transparent 38%,
        var(--go-dark-green) 72%,
        transparent
    );
}

.sidebar-heading {
    padding: 1.3rem 1.2rem 1.1rem;
    border-bottom: 1px solid var(--go-border);
    background: linear-gradient(135deg, rgba(20, 117, 48, 0.14), transparent 62%);
}

.sidebar-kicker,
.module-label,
.page-eyebrow,
.section-kicker,
.signal-label {
    display: block;
    color: var(--go-primary-green);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sidebar-heading strong {
    display: block;
    margin-top: 0.2rem;
    color: var(--go-white);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-menu {
    padding: 0.55rem 0;
}

.site-menu a {
    position: relative;
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem 0.7rem 1.2rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(23, 79, 32, 0.36);
    color: #9cac99;
    background:
        linear-gradient(
            90deg,
            rgba(4, 8, 4, 0.92) 0%,
            rgba(11, 21, 12, 0.88) 72%,
            rgba(10, 37, 10, 0.54) 100%
        );
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color var(--transition),
        background var(--transition),
        padding var(--transition);
}

.site-menu a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    content: "";
    background: var(--go-dark-green);
    transition:
        width var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.site-menu a:hover,
.site-menu a:focus-visible {
    padding-left: 1.45rem;
    color: var(--go-white);
    background:
        linear-gradient(
            90deg,
            #071008 0%,
            #102912 70%,
            #155a21 100%
        );
    text-shadow: 0 0 7px rgba(63, 186, 68, 0.78);
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
    width: 7px;
    background: var(--go-bright-green);
    box-shadow: 0 0 12px var(--go-bright-green);
}

.site-menu a.active {
    padding-left: 1.45rem;
    color: var(--go-rehatched-yellow);
    background:
        linear-gradient(
            90deg,
            rgba(15, 19, 4, 0.98) 0%,
            rgba(40, 46, 9, 0.62) 70%,
            rgba(76, 78, 11, 0.45) 100%
        );
    text-shadow: 0 0 7px rgba(226, 223, 39, 0.54);
}

.site-menu a.active::after {
    width: 7px;
    background: var(--go-rehatched-yellow);
    box-shadow: 0 0 11px rgba(226, 223, 39, 0.75);
}

.menu-marker {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border: 1px solid var(--go-mid-green);
    background: #081208;
    transform: rotate(45deg);
}

.site-menu a:hover .menu-marker,
.site-menu a:focus-visible .menu-marker {
    border-color: var(--go-glow-green);
    background: var(--go-bright-green);
    box-shadow: 0 0 8px rgba(63, 186, 68, 0.8);
}

.site-menu a.active .menu-marker {
    border-color: var(--go-rehatched-yellow);
    background: var(--go-rehatched-yellow);
    box-shadow: 0 0 8px rgba(226, 223, 39, 0.66);
}

.sidebar-module {
    margin: 1rem;
    padding: 0.95rem;
    border: 1px solid var(--go-border);
    background: rgba(3, 8, 4, 0.84);
}

.sidebar-module strong {
    display: block;
    margin: 0.2rem 0 0.35rem;
    color: var(--go-glow-green);
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sidebar-module p {
    margin: 0;
    color: var(--go-muted-text);
    font-size: 0.78rem;
    line-height: 1.5;
}

.sidebar-module-yellow {
    border-color: rgba(226, 223, 39, 0.28);
}

.sidebar-module-yellow .module-label {
    color: #9e9c20;
}

.sidebar-module-yellow strong {
    color: var(--go-rehatched-yellow);
}

.site-main {
    min-width: 0;
    padding: 1.6rem;
    background:
        linear-gradient(135deg, rgba(18, 55, 21, 0.07), transparent 30%),
        rgba(2, 5, 2, 0.88);
}

.page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin: -1.6rem -1.6rem 1.6rem;
    padding: 1.2rem 1.6rem;
    border-bottom: 1px solid var(--go-border);
    background:
        linear-gradient(90deg, rgba(17, 52, 20, 0.18), transparent 62%),
        rgba(0, 0, 0, 0.64);
}

.page-heading h1 {
    margin: 0.15rem 0 0;
    color: var(--go-white);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.page-code {
    color: var(--go-dim-text);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.hero-panel,
.intro-panel,
.warning-panel,
.error-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--go-border);
    background:
        linear-gradient(135deg, rgba(19, 91, 31, 0.13), transparent 38%),
        linear-gradient(180deg, rgba(14, 25, 15, 0.97), rgba(4, 8, 4, 0.97));
}

.hero-panel::before,
.intro-panel::before,
.warning-panel::before,
.error-panel::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    content: "";
    background: var(--go-bright-green);
    box-shadow: 0 0 12px rgba(63, 186, 68, 0.68);
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.8fr);
    gap: 1.3rem;
    padding: clamp(1.4rem, 4vw, 2.5rem);
}

.hero-copy h2,
.intro-panel h2,
.archive-panel h2,
.section-heading h2,
.split-section h2,
.transmission h2,
.download-row h2,
.guide-card h2,
.media-card h2,
.community-card h2,
.error-panel h2 {
    margin: 0.25rem 0 0.7rem;
    color: var(--go-white);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.25;
    text-transform: uppercase;
}

.hero-copy p,
.intro-panel p {
    max-width: 760px;
    margin: 0;
    color: #aebcab;
    font-size: 1.03rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.action-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border: 1px solid var(--go-border-bright);
    color: var(--go-text);
    background: #071008;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.action-link:hover,
.action-link:focus-visible {
    color: var(--go-white);
    border-color: var(--go-bright-green);
    background: #102912;
    box-shadow: inset 4px 0 0 var(--go-bright-green);
}

.action-link-primary {
    color: #0a0b00;
    border-color: var(--go-rehatched-yellow);
    background: var(--go-rehatched-yellow);
}

.action-link-primary:hover,
.action-link-primary:focus-visible {
    color: #0a0b00;
    border-color: #ffff67;
    background: #f0ed35;
    box-shadow: 0 0 12px rgba(226, 223, 39, 0.34);
}

.containment-readout {
    align-self: stretch;
    padding: 1.1rem;
    border: 1px solid rgba(63, 186, 68, 0.3);
    background:
        repeating-linear-gradient(
            0deg,
            rgba(63, 186, 68, 0.035) 0,
            rgba(63, 186, 68, 0.035) 1px,
            transparent 1px,
            transparent 5px
        ),
        rgba(0, 5, 0, 0.76);
}

.readout-title {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--go-bright-green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.readout-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.58rem 0;
    border-bottom: 1px solid rgba(47, 123, 51, 0.25);
    color: var(--go-muted-text);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.readout-row strong {
    color: var(--go-glow-green);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.readout-meter {
    height: 8px;
    margin-top: 1rem;
    overflow: hidden;
    border: 1px solid var(--go-dark-green);
    background: #020402;
}

.readout-meter span {
    display: block;
    width: 36%;
    height: 100%;
    background:
        repeating-linear-gradient(
            90deg,
            var(--go-primary-green) 0,
            var(--go-primary-green) 8px,
            transparent 8px,
            transparent 11px
        );
    box-shadow: 0 0 10px rgba(63, 186, 68, 0.6);
}

.content-section {
    margin-top: 1.6rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--go-border);
}

.section-heading h2 {
    margin-bottom: 0;
}

.text-link,
.card-link {
    color: var(--go-bright-green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible,
.card-link:hover,
.card-link:focus-visible {
    color: var(--go-glow-green);
    text-shadow: 0 0 7px rgba(63, 186, 68, 0.65);
}

.news-grid,
.archive-grid,
.objective-grid,
.guide-grid,
.media-grid,
.community-grid {
    display: grid;
    gap: 1rem;
}

.news-grid,
.archive-grid,
.objective-grid,
.community-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card,
.archive-panel,
.objective-card,
.guide-card,
.media-card,
.community-card {
    position: relative;
    min-width: 0;
    border: 1px solid var(--go-border);
    background:
        linear-gradient(145deg, rgba(20, 78, 25, 0.08), transparent 42%),
        rgba(7, 13, 7, 0.95);
}

.news-card {
    padding: 1.1rem;
}

.news-card::after,
.objective-card::after,
.guide-card::after,
.community-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    content: "";
    background: var(--go-mid-green);
}

.news-card h3,
.objective-card h3 {
    margin: 0.65rem 0 0.5rem;
    color: var(--go-white);
    font-size: 1.1rem;
    line-height: 1.25;
    text-transform: uppercase;
}

.news-card p,
.archive-panel p,
.objective-card p,
.guide-card p,
.media-card p,
.community-card p,
.split-section p,
.transmission p,
.download-row p,
.warning-panel p,
.error-panel p {
    color: var(--go-muted-text);
}

.news-card p {
    margin: 0 0 0.8rem;
    font-size: 0.92rem;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    color: var(--go-dim-text);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-meta span {
    color: var(--go-primary-green);
}

.archive-panel {
    padding: 1.25rem;
}

.archive-panel h2 {
    font-size: 1.35rem;
}

.archive-panel p {
    margin: 0 0 0.8rem;
}

.intro-panel {
    padding: clamp(1.3rem, 3vw, 2rem);
}

.intro-panel h2 {
    max-width: 900px;
}

.objective-card,
.guide-card,
.community-card {
    padding: 1.2rem;
}

.objective-number,
.guide-number,
.community-icon {
    display: inline-flex;
    min-width: 38px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--go-border-bright);
    color: var(--go-bright-green);
    background: #061007;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.split-section article {
    padding: 1.25rem;
    border-top: 1px solid var(--go-border);
    border-bottom: 1px solid var(--go-border);
    background: rgba(4, 9, 4, 0.72);
}

.transmission-list,
.download-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.transmission {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    border: 1px solid var(--go-border);
    background: rgba(5, 11, 5, 0.92);
}

.transmission-index {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--go-border);
    color: var(--go-primary-green);
    background:
        repeating-linear-gradient(
            135deg,
            rgba(63, 186, 68, 0.05) 0,
            rgba(63, 186, 68, 0.05) 8px,
            transparent 8px,
            transparent 16px
        );
    font-size: 1.3rem;
    font-weight: 800;
}

.transmission-body {
    padding: 1.2rem;
}

.transmission h2 {
    margin-top: 0.55rem;
    font-size: 1.4rem;
}

.transmission-summary {
    color: var(--go-text) !important;
    font-size: 1rem;
}

.download-row {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--go-border);
    background:
        linear-gradient(90deg, rgba(20, 117, 48, 0.08), transparent 45%),
        rgba(5, 11, 5, 0.92);
}

.download-code {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--go-border-bright);
    color: var(--go-bright-green);
    background: #051006;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.download-copy h2 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.download-copy p {
    margin: 0;
    font-size: 0.88rem;
}

.download-status,
.guide-state,
.community-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.6rem;
    border: 1px solid rgba(226, 223, 39, 0.3);
    color: var(--go-rehatched-yellow);
    background: rgba(40, 40, 4, 0.32);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.warning-panel {
    margin-top: 1.2rem;
    padding: 1rem 1rem 1rem 1.2rem;
    border-color: rgba(226, 223, 39, 0.3);
}

.warning-panel::before {
    background: var(--go-rehatched-yellow);
    box-shadow: 0 0 12px rgba(226, 223, 39, 0.45);
}

.warning-panel strong {
    color: var(--go-rehatched-yellow);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.warning-panel p {
    margin: 0.25rem 0 0;
}

.guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.guide-card h2 {
    margin-top: 0.8rem;
    font-size: 1.3rem;
}

.guide-card p {
    min-height: 4.8rem;
}

.media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.media-card {
    display: grid;
    grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
}

.media-placeholder {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border-right: 1px solid var(--go-border);
    background:
        radial-gradient(circle at center, rgba(63, 186, 68, 0.17), transparent 42%),
        repeating-linear-gradient(
            135deg,
            #061007 0,
            #061007 10px,
            #030703 10px,
            #030703 20px
        );
}

.media-placeholder::before,
.media-placeholder::after {
    position: absolute;
    content: "";
    background: rgba(63, 186, 68, 0.3);
}

.media-placeholder::before {
    top: 50%;
    right: 16%;
    left: 16%;
    height: 1px;
}

.media-placeholder::after {
    top: 16%;
    bottom: 16%;
    left: 50%;
    width: 1px;
}

.media-placeholder span {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    color: var(--go-mid-green);
    font-size: 0.72rem;
    font-weight: 800;
}

.media-placeholder i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid var(--go-mid-green);
    transform: translate(-50%, -50%) rotate(45deg);
}

.media-card-copy {
    padding: 1.1rem;
}

.media-card h2 {
    font-size: 1.15rem;
}

.community-card h2 {
    font-size: 1.25rem;
}

.community-card p {
    min-height: 6rem;
}

.error-panel {
    display: grid;
    grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1.55fr);
    align-items: center;
    gap: 1.5rem;
    min-height: 360px;
    padding: 2rem;
}

.error-code {
    color: var(--go-rehatched-yellow);
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(5rem, 12vw, 9rem);
    line-height: 1;
    text-align: center;
    text-shadow: 0 0 18px rgba(226, 223, 39, 0.24);
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1.4fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--go-border-bright);
    color: var(--go-dim-text);
    background: #020402;
    font-size: 0.72rem;
}

.site-footer strong {
    display: block;
    color: var(--go-rehatched-yellow);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer span {
    display: block;
}

.site-footer p {
    margin: 0;
    text-align: center;
}

.footer-year {
    white-space: nowrap;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .site-shell {
        width: min(calc(100% - 1rem), var(--content-width));
        margin: 0.5rem auto;
    }

    .logo-stage {
        height: 220px;
    }

    .menu-toggle {
        display: flex;
    }

    .site-layout {
        display: block;
        min-height: 0;
    }

    .site-sidebar {
        display: none;
        border-right: 0;
        border-bottom: 1px solid var(--go-border-bright);
    }

    .site-sidebar.is-open {
        display: block;
    }

    .site-sidebar::after {
        display: none;
    }

    .sidebar-heading {
        text-align: center;
    }

    .site-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        padding: 0;
        background: var(--go-border);
    }

    .site-menu a {
        border: 0;
    }

    .sidebar-module {
        display: none;
    }

    .hero-panel {
        grid-template-columns: 1fr;
    }

    .news-grid,
    .archive-grid,
    .objective-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer p {
        order: 3;
    }
}

@media (max-width: 720px) {
    .logo-stage {
        height: 185px;
    }

    .logo-image {
        background-size: auto 410px;
    }

    .logo-subtitle {
        bottom: 18px;
        letter-spacing: 0.23em;
        transform: translateX(-45%);
    }

    .header-status {
        flex-wrap: wrap;
        gap: 0.35rem 0.6rem;
        text-align: center;
    }

    .page-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .guide-grid,
    .media-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .media-card {
        grid-template-columns: 1fr;
    }

    .media-placeholder {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid var(--go-border);
    }

    .download-row {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .download-status {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .error-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .site-shell {
        width: 100%;
        margin: 0;
        border-right: 0;
        border-left: 0;
    }

    .site-menu {
        grid-template-columns: 1fr;
    }

    .site-main {
        padding: 1rem;
    }

    .page-heading {
        margin: -1rem -1rem 1rem;
        padding: 1rem;
    }

    .hero-panel,
    .intro-panel,
    .error-panel {
        padding: 1.15rem;
    }

    .transmission {
        grid-template-columns: 1fr;
    }

    .transmission-index {
        min-height: 42px;
        border-right: 0;
        border-bottom: 1px solid var(--go-border);
    }

    .download-row {
        grid-template-columns: 1fr;
    }

    .download-code {
        min-height: 46px;
        justify-self: start;
        padding: 0 0.75rem;
    }

    .header-status .status-divider {
        display: none;
    }
}
/* Account, authentication, and player-registration system */

.status-system,
.status-auth {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.header-status {
    justify-content: space-between;
}

.status-auth a,
.status-auth button {
    border: 0;
    color: var(--go-bright-green);
    background: transparent;
    font: inherit;
    font-weight: 800;
    letter-spacing: inherit;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.status-auth a:hover,
.status-auth a:focus-visible,
.status-auth button:hover,
.status-auth button:focus-visible {
    color: var(--go-rehatched-yellow);
    text-shadow: 0 0 7px rgba(226, 223, 39, 0.5);
}

.status-auth form {
    margin: 0;
}

.alert {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--go-border);
    color: var(--go-text);
    background: rgba(6, 14, 7, 0.96);
}

.alert strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--go-white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.alert ul {
    margin: 0.35rem 0 0;
    padding-left: 1.2rem;
}

.alert-success {
    border-color: rgba(63, 186, 68, 0.72);
    box-shadow: inset 4px 0 0 var(--go-bright-green);
}

.alert-error {
    border-color: rgba(226, 223, 39, 0.55);
    box-shadow: inset 4px 0 0 var(--go-rehatched-yellow);
}

.auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1rem;
}

.auth-panel,
.auth-briefing,
.account-summary,
.empty-state,
.builder-section {
    border: 1px solid var(--go-border);
    background:
        linear-gradient(145deg, rgba(20, 78, 25, 0.09), transparent 42%),
        rgba(7, 13, 7, 0.96);
}

.auth-panel,
.auth-briefing {
    padding: clamp(1.2rem, 3vw, 1.8rem);
}

.auth-panel h2,
.auth-briefing h2,
.account-summary h2,
.empty-state h2,
.builder-section h2 {
    margin: 0.25rem 0 0.65rem;
    color: var(--go-white);
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    text-transform: uppercase;
}

.auth-panel > p,
.auth-briefing > p,
.account-summary p,
.empty-state p {
    color: var(--go-muted-text);
}

.archive-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.form-field {
    display: grid;
    gap: 0.35rem;
}

.form-field label {
    color: var(--go-text);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(63, 186, 68, 0.38);
    border-radius: 0;
    outline: none;
    color: var(--go-white);
    background: #020602;
    caret-color: var(--go-rehatched-yellow);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--go-bright-green);
    box-shadow:
        inset 3px 0 0 var(--go-bright-green),
        0 0 0 1px rgba(63, 186, 68, 0.18);
}

.form-field small {
    color: var(--go-dim-text);
    font-size: 0.75rem;
}

.password-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.password-control input {
    border-right: 0;
}

.password-control button {
    min-width: 68px;
    border: 1px solid rgba(63, 186, 68, 0.38);
    color: var(--go-bright-green);
    background: #071008;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.password-control button:hover,
.password-control button:focus-visible {
    color: var(--go-white);
    background: #123016;
}

.form-submit {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.1rem;
    border: 1px solid var(--go-rehatched-yellow);
    color: #090a00;
    background: var(--go-rehatched-yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background var(--transition),
        border-color var(--transition),
        opacity var(--transition);
}

.form-submit:hover,
.form-submit:focus-visible {
    border-color: #ffff67;
    background: #f0ed35;
}

.form-submit:disabled {
    border-color: #52521a;
    color: #767644;
    background: #242408;
    cursor: not-allowed;
    opacity: 0.78;
}

.auth-switch {
    margin: 1rem 0 0;
    padding-top: 0.8rem;
    border-top: 1px solid var(--go-border);
    font-size: 0.85rem;
}

.auth-switch a {
    color: var(--go-bright-green);
    font-weight: 800;
}

.briefing-line {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(63, 186, 68, 0.2);
}

.briefing-line:last-child {
    border-bottom: 0;
}

.briefing-line strong,
.briefing-line span {
    display: block;
}

.briefing-line strong {
    color: var(--go-rehatched-yellow);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.briefing-line span {
    margin-top: 0.2rem;
    color: var(--go-muted-text);
    font-size: 0.84rem;
}

.account-summary {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
}

.account-summary h2 {
    margin-bottom: 0.2rem;
}

.account-summary p {
    margin: 0;
}

.account-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.account-metrics div {
    min-width: 0;
    padding: 0.75rem;
    border: 1px solid rgba(63, 186, 68, 0.24);
    background: rgba(0, 5, 0, 0.64);
}

.account-metrics span,
.account-metrics strong {
    display: block;
}

.account-metrics span {
    color: var(--go-dim-text);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.account-metrics strong {
    margin-top: 0.18rem;
    overflow: hidden;
    color: var(--go-glow-green);
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-heading {
    margin-top: 1.5rem;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.player-card {
    --role-accent: var(--go-bright-green);
    display: grid;
    grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.25fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(63, 186, 68, 0.34);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--role-accent) 10%, transparent), transparent 45%),
        #071007;
}

.player-card.role-scientist {
    --role-accent: #71d7c4;
}

.player-card.role-reporter {
    --role-accent: var(--go-rehatched-yellow);
}

.player-card.role-baby_godzilla {
    --role-accent: #7fe33f;
}

.player-card.is-active {
    border-color: var(--go-bright-green);
    box-shadow:
        inset 0 0 0 1px rgba(128, 234, 137, 0.28),
        0 0 15px rgba(63, 186, 68, 0.18);
}

.player-portrait {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    border-right: 1px solid color-mix(in srgb, var(--role-accent) 46%, transparent);
    background: #020502;
}

.player-portrait img {
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
}

.active-player-badge {
    position: absolute;
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
    padding: 0.42rem;
    border: 1px solid var(--go-bright-green);
    color: #030703;
    background: rgba(128, 234, 137, 0.92);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.player-card-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 1rem;
}

.player-role {
    color: var(--role-accent);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.player-card h2 {
    margin: 0.2rem 0 0.8rem;
    overflow-wrap: anywhere;
    color: var(--go-white);
    font-size: 1.45rem;
    text-transform: uppercase;
}

.player-stat-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin: 0;
}

.player-stat-list div {
    padding: 0.45rem 0.55rem;
    border: 1px solid rgba(63, 186, 68, 0.18);
    background: rgba(0, 5, 0, 0.52);
}

.player-stat-list dt,
.player-stat-list dd {
    margin: 0;
}

.player-stat-list dt {
    color: var(--go-dim-text);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-stat-list dd {
    color: var(--go-text);
    font-size: 0.88rem;
    font-weight: 800;
}

.player-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-top: auto;
    padding-top: 0.9rem;
    color: var(--go-dim-text);
    font-size: 0.65rem;
    text-transform: uppercase;
}

.player-card-footer form {
    margin: 0;
}

.player-card-footer button {
    padding: 0.42rem 0.55rem;
    border: 1px solid var(--role-accent);
    color: var(--role-accent);
    background: transparent;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.player-card-footer button:hover,
.player-card-footer button:focus-visible {
    color: #020402;
    background: var(--role-accent);
}

.player-card-footer strong {
    color: var(--go-bright-green);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
}

.empty-state {
    padding: 2rem;
    text-align: center;
}

.empty-state-symbol {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--go-rehatched-yellow);
    color: var(--go-rehatched-yellow);
    background: rgba(226, 223, 39, 0.06);
    font-size: 2rem;
}

.player-intro {
    margin-bottom: 1rem;
}

.player-builder {
    display: grid;
    gap: 1rem;
}

.builder-section {
    padding: 1.1rem;
}

.role-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.role-option {
    --role-accent: var(--go-bright-green);
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.25rem 0.75rem;
    min-height: 122px;
    align-content: center;
    padding: 1rem;
    border: 1px solid rgba(63, 186, 68, 0.28);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--role-accent) 9%, transparent), transparent 58%),
        #050b05;
    cursor: pointer;
    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.role-option-scientist {
    --role-accent: #71d7c4;
}

.role-option-reporter {
    --role-accent: var(--go-rehatched-yellow);
}

.role-option-baby_godzilla {
    --role-accent: #7fe33f;
}

.role-option:hover,
.role-option:focus-within,
.role-option.is-selected {
    border-color: var(--role-accent);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--role-accent) 16%, transparent), transparent 62%),
        #081208;
}

.role-option.is-selected {
    box-shadow: inset 4px 0 0 var(--role-accent);
}

.role-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.role-option-marker {
    width: 13px;
    height: 13px;
    margin-top: 0.25rem;
    border: 1px solid var(--role-accent);
    background: transparent;
    transform: rotate(45deg);
}

.role-option.is-selected .role-option-marker {
    background: var(--role-accent);
    box-shadow: 0 0 8px color-mix(in srgb, var(--role-accent) 65%, transparent);
}

.role-option strong {
    color: var(--go-white);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.role-option > span:last-child {
    grid-column: 2;
    color: var(--go-muted-text);
    font-size: 0.8rem;
    line-height: 1.45;
}

.portrait-selector {
    display: grid;
    grid-template-columns: auto minmax(190px, 340px) auto;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.portrait-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--go-border-bright);
    background: #020502;
}

.portrait-stage img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.portrait-stage span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.5rem;
    color: var(--go-text);
    background: rgba(0, 0, 0, 0.82);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.portrait-arrow {
    width: 46px;
    height: 64px;
    border: 1px solid var(--go-border-bright);
    color: var(--go-bright-green);
    background: #061007;
    cursor: pointer;
}

.portrait-arrow:hover,
.portrait-arrow:focus-visible {
    color: var(--go-white);
    border-color: var(--go-bright-green);
    background: #123016;
}

.portrait-arrow:disabled {
    color: var(--go-dim-text);
    border-color: rgba(63, 186, 68, 0.14);
    background: #030603;
    cursor: not-allowed;
}

.player-name-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
    align-items: end;
    gap: 1rem;
}

.name-status {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(63, 186, 68, 0.26);
    color: var(--go-muted-text);
    background: #020602;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.name-status.is-checking {
    color: var(--go-rehatched-yellow);
    border-color: rgba(226, 223, 39, 0.35);
}

.name-status.is-available {
    color: var(--go-glow-green);
    border-color: var(--go-bright-green);
    box-shadow: inset 4px 0 0 var(--go-bright-green);
}

.name-status.is-unavailable {
    color: var(--go-rehatched-yellow);
    border-color: rgba(226, 223, 39, 0.7);
    box-shadow: inset 4px 0 0 var(--go-rehatched-yellow);
}

.builder-submit-row {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

@media (max-width: 1080px) {
    .player-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .header-status {
        justify-content: center;
    }

    .status-system,
    .status-auth {
        justify-content: center;
    }

    .auth-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .account-summary {
        grid-template-columns: 1fr;
    }

    .account-metrics {
        grid-template-columns: 1fr;
    }

    .role-selector {
        grid-template-columns: 1fr;
    }

    .player-name-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .header-status {
        align-items: center;
        flex-direction: column;
    }

    .status-system {
        flex-wrap: wrap;
    }

    .player-card {
        grid-template-columns: 1fr;
    }

    .player-portrait {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid rgba(63, 186, 68, 0.34);
    }

    .player-portrait img {
        height: 330px;
        min-height: 0;
    }

    .portrait-selector {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 0.5rem;
    }

    .portrait-arrow {
        width: 38px;
    }

    .builder-submit-row {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .builder-submit-row .action-link,
    .builder-submit-row .form-submit {
        width: 100%;
    }
}
