diff --git a/apps/web/src/App.css b/apps/web/src/App.css
index 507b989..a074611 100644
--- a/apps/web/src/App.css
+++ b/apps/web/src/App.css
@@ -1,3300 +1,15 @@
-:root {
- --bg: #070604;
- --bg-soft: #0d0b09;
- --panel: rgba(16, 13, 10, 0.94);
- --panel-strong: rgba(13, 11, 8, 0.98);
- --panel-border: rgba(166, 114, 53, 0.38);
- --panel-border-soft: rgba(255, 255, 255, 0.08);
- --text: #efe2ce;
- --muted: #a38f73;
- --accent: #d58b36;
- --accent-soft: rgba(213, 139, 54, 0.16);
- --safe: #8bc96d;
- --warn: #e0b466;
- --danger: #e16d4c;
- --line: rgba(255, 255, 255, 0.08);
- --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
-}
-
-* {
- box-sizing: border-box;
-}
-
-html,
-body,
-#root {
- height: 100%;
-}
-
-body {
- margin: 0;
- min-width: 320px;
- color: var(--text);
- background:
- radial-gradient(circle at top left, rgba(201, 132, 57, 0.12), transparent 24%),
- radial-gradient(circle at bottom right, rgba(117, 88, 49, 0.14), transparent 30%),
- linear-gradient(180deg, #050404 0%, #090806 48%, #050404 100%);
- overflow: hidden;
-}
-
-body::before {
- content: '';
- position: fixed;
- inset: 0;
- pointer-events: none;
- opacity: 0.18;
- background:
- linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
- radial-gradient(circle at 20% 20%, rgba(213, 139, 54, 0.08), transparent 16%),
- radial-gradient(circle at 80% 70%, rgba(213, 139, 54, 0.06), transparent 18%);
-}
-
-button,
-input {
- font: inherit;
-}
-
-button {
- cursor: pointer;
-}
-
-button:disabled {
- cursor: not-allowed;
-}
-
-img {
- display: block;
- max-width: 100%;
-}
-
-button,
-input,
-.panel,
-.subpanel,
-.auth-panel,
-.auth-hero,
-.new-game-card,
-.loading-card,
-.stat-meter,
-.hud-chip,
-.command-dock,
-.top-hud,
-.brand-block,
-.clock-block {
- border: 1px solid var(--panel-border-soft);
-}
-
-.top-hud,
-.panel,
-.subpanel,
-.auth-panel,
-.auth-hero,
-.new-game-card,
-.loading-card,
-.command-dock {
- background:
- linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
- var(--panel);
- box-shadow: var(--shadow);
- backdrop-filter: blur(18px);
-}
-
-.app-shell {
- display: grid;
- grid-template-rows: auto minmax(0, 1fr) auto;
- gap: 0.5rem;
- height: 100dvh;
- padding: 0.5rem;
- overflow: hidden;
-}
-
-.panel,
-.subpanel {
- min-height: 0;
- overflow: auto;
- border-radius: 24px;
- border-color: var(--panel-border);
-}
-
-.panel {
- padding: 0.75rem;
-}
-
-.subpanel {
- padding: 0.75rem;
-}
-
-.panel-header {
- display: flex;
- justify-content: space-between;
- gap: 0.75rem;
- margin-bottom: 0.7rem;
-}
-
-.panel-header h2 {
- margin: 0;
- font-size: 0.9rem;
- letter-spacing: 0.16em;
- text-transform: uppercase;
-}
-
-.panel-header p {
- margin: 0.25rem 0 0;
- color: var(--muted);
- font-size: 0.76rem;
- line-height: 1.45;
-}
-
-.eyebrow {
- margin: 0;
- color: var(--muted);
- font-size: 0.72rem;
- letter-spacing: 0.16em;
- text-transform: uppercase;
-}
-
-.error-copy {
- margin: 0;
- color: #f08d73;
- line-height: 1.45;
-}
-
-.primary-button,
-.secondary-button,
-.small-button,
-.combat-button,
-.modal-option,
-.dock-tab {
- border-radius: 14px;
- transition: transform 150ms ease, opacity 150ms ease, background 150ms ease, border-color 150ms ease;
-}
-
-.primary-button:hover,
-.secondary-button:hover,
-.small-button:hover,
-.combat-button:hover,
-.modal-option:hover,
-.dock-tab:hover {
- transform: translateY(-1px);
-}
-
-.primary-button {
- min-height: 48px;
- border: 1px solid rgba(228, 158, 75, 0.42);
- background: linear-gradient(135deg, #eeab52, #c86d22);
- color: #160f08;
- font-weight: 700;
-}
-
-.secondary-button,
-.combat-button,
-.modal-option,
-.small-button.secondary,
-.dock-tab {
- min-height: 42px;
- border: 1px solid var(--panel-border-soft);
- background: rgba(255, 255, 255, 0.04);
- color: var(--text);
-}
-
-.small-button {
- min-height: 34px;
- border: 1px solid rgba(215, 138, 51, 0.34);
- background: rgba(215, 138, 51, 0.13);
- color: var(--text);
-}
-
-.primary-button:disabled,
-.secondary-button:disabled,
-.small-button:disabled,
-.combat-button:disabled,
-.modal-option:disabled,
-.dock-tab:disabled {
- opacity: 0.72;
- transform: none;
-}
-
-.hud-chip {
- display: inline-flex;
- align-items: center;
- min-height: 2.15rem;
- padding: 0 0.8rem;
- border-radius: 999px;
- background: rgba(255, 255, 255, 0.03);
- color: rgba(239, 226, 206, 0.8);
- font-size: 0.72rem;
- letter-spacing: 0.1em;
- text-transform: uppercase;
-}
-
-.hud-chip.safe {
- color: #addb7f;
- border-color: rgba(141, 194, 106, 0.28);
- background: rgba(141, 194, 106, 0.08);
-}
-
-.hud-chip.accent {
- color: #f0b55a;
- border-color: rgba(215, 138, 51, 0.34);
- background: rgba(215, 138, 51, 0.12);
-}
-
-.hud-chip.warn {
- color: #f1c27b;
- border-color: rgba(224, 180, 102, 0.34);
- background: rgba(224, 180, 102, 0.12);
-}
-
-.hud-chip.danger {
- color: #f0a08d;
- border-color: rgba(225, 109, 76, 0.34);
- background: rgba(225, 109, 76, 0.12);
-}
-
-.hud-chip.muted {
- color: var(--muted);
-}
-
-.asset-thumb {
- display: grid;
- place-items: center;
- width: 72px;
- min-width: 72px;
- aspect-ratio: 1;
- overflow: hidden;
- border-radius: 16px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background:
- linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
- rgba(8, 7, 6, 0.72);
-}
-
-.asset-thumb img {
- width: 100%;
- height: 100%;
- object-fit: cover;
-}
-
-.asset-thumb span {
- color: var(--accent);
- font-size: 0.8rem;
- font-weight: 700;
- letter-spacing: 0.12em;
-}
-
-.top-hud {
- display: grid;
- grid-template-columns: 240px 100px minmax(0, 1fr) auto;
- gap: 0.65rem;
- align-items: stretch;
- border-color: var(--panel-border);
- border-radius: 18px;
- padding: 0.45rem;
-}
-
-.brand-block,
-.clock-block {
- border-radius: 16px;
- background: rgba(11, 10, 8, 0.78);
-}
-
-.brand-block {
- display: flex;
- align-items: center;
- gap: 0.85rem;
- padding: 0 1rem;
-}
-
-.brand-mark {
- display: grid;
- place-items: center;
- width: 44px;
- height: 44px;
- border-radius: 12px;
- border: 1px solid rgba(215, 138, 51, 0.32);
- background: rgba(215, 138, 51, 0.11);
- color: var(--accent);
- font-size: 0.85rem;
- font-weight: 700;
- letter-spacing: 0.18em;
-}
-
-.brand-copy strong,
-.clock-block strong {
- display: block;
- font-size: 1.05rem;
- font-weight: 700;
- letter-spacing: 0.04em;
- text-transform: uppercase;
-}
-
-.clock-block {
- display: grid;
- align-content: center;
- justify-items: center;
- padding: 0.5rem;
- color: var(--muted);
-}
-
-.clock-block span {
- font-size: 0.72rem;
- letter-spacing: 0.18em;
- text-transform: uppercase;
-}
-
-.status-strip {
- display: grid;
- grid-template-columns: repeat(6, minmax(0, 1fr));
- gap: 0.55rem;
- min-width: 0;
-}
-
-.stat-meter {
- min-width: 0;
- border-radius: 16px;
- background: rgba(8, 7, 6, 0.72);
- padding: 0.65rem 0.75rem;
-}
-
-.stat-meter > div:first-child {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- gap: 0.5rem;
- margin-bottom: 0.5rem;
-}
-
-.stat-meter span {
- min-width: 0;
- color: var(--muted);
- font-size: 0.68rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
-}
-
-.stat-meter strong {
- display: inline-flex;
- align-items: baseline;
- gap: 0.12rem;
- font-size: 1rem;
- white-space: nowrap;
-}
-
-.stat-meter strong small {
- color: var(--muted);
- font-size: 0.68rem;
-}
-
-.meter-track {
- height: 7px;
- overflow: hidden;
- border-radius: 999px;
- background: rgba(255, 255, 255, 0.08);
-}
-
-.meter-fill {
- height: 100%;
- border-radius: inherit;
- background: linear-gradient(90deg, #f2b55e, #df7a27);
-}
-
-.tone-health .meter-fill {
- background: linear-gradient(90deg, #9dda74, #53b96f);
-}
-
-.tone-danger .meter-fill {
- background: linear-gradient(90deg, #f4cc76, #eb6650);
-}
-
-.top-actions {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- gap: 0.45rem;
- flex-wrap: wrap;
-}
-
-.game-grid {
- min-height: 0;
- display: grid;
- grid-template-columns: 280px minmax(0, 1fr) 360px;
- gap: 0.65rem;
- overflow: hidden;
-}
-
-.panel-route {
- display: grid;
- grid-template-rows: auto auto minmax(0, 1fr) auto;
- gap: 0.65rem;
-}
-
-.route-summary-card {
- padding: 1rem;
- border-radius: 18px;
- border-color: rgba(215, 138, 51, 0.32);
- background:
- linear-gradient(180deg, rgba(215, 138, 51, 0.12), rgba(255, 255, 255, 0)),
- rgba(7, 7, 7, 0.46);
-}
-
-.route-summary-card h2,
-.viewport-copy h2,
-.auth-hero-copy h1,
-.new-game-copy h1 {
- margin: 0.42rem 0 0;
- font-size: clamp(1.55rem, 3.4vw, 3.8rem);
- line-height: 0.96;
- letter-spacing: -0.05em;
- text-wrap: balance;
-}
-
-.route-summary-card h2 {
- font-size: clamp(1.9rem, 3vw, 2.8rem);
-}
-
-.route-summary-card p,
-.viewport-copy p,
-.auth-hero-copy p,
-.new-game-copy p,
-.modal-copy {
- color: rgba(239, 226, 206, 0.78);
- line-height: 1.5;
-}
-
-.route-summary-meta {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 0.55rem;
- margin-top: 0.85rem;
-}
-
-.route-summary-meta div,
-.combat-health,
-.mini-intel-card {
- padding: 0.78rem;
- border-radius: 16px;
- background: rgba(255, 255, 255, 0.04);
-}
-
-.route-summary-meta small {
- display: block;
- margin-bottom: 0.25rem;
- color: var(--muted);
- font-size: 0.66rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
-}
-
-.route-summary-meta strong {
- font-size: 0.94rem;
-}
-
-.intel-meta {
- display: flex;
- flex-wrap: wrap;
- gap: 0.45rem;
- margin-top: 0.85rem;
-}
-
-.inventory-list,
-.recipe-list,
-.quest-list,
-.log-list,
-.combat-log,
-.modal-option-list {
- min-height: 0;
- overflow: auto;
- padding-right: 0.2rem;
-}
-
-.inventory-list,
-.recipe-list,
-.quest-list,
-.log-list,
-.combat-log,
-.modal-option-list {
- display: grid;
- gap: 0.55rem;
-}
-
-.inventory-card,
-.quest-card {
- background:
- linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
- rgba(9, 8, 7, 0.52);
- color: var(--text);
- border-radius: 16px;
-}
-
-.route-card-thumb {
- min-height: 88px;
- border-radius: 14px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background-position: center;
- background-size: cover;
-}
-
-.inventory-card strong,
-.quest-card strong {
- font-size: 0.94rem;
-}
-
-.route-card-detail {
- display: flex;
- flex-wrap: wrap;
- gap: 0.45rem;
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-.risk-dots {
- display: flex;
- gap: 0.28rem;
- margin-top: 0.58rem;
-}
-
-.risk-dots span {
- width: 13px;
- height: 13px;
- border-radius: 999px;
- border: 1px solid rgba(255, 255, 255, 0.12);
- background: rgba(255, 255, 255, 0.03);
-}
-
-.world-map-panel {
- min-height: 0;
- display: grid;
- grid-template-rows: auto minmax(0, 1fr);
-}
-
-.map-node-grid {
- grid-template-columns: repeat(2, minmax(0, 1fr));
-}
-
-.map-node-card {
- padding: 0.75rem;
-}
-
-.quest-card header span {
- display: inline-flex;
- align-items: center;
- min-height: 1.75rem;
- width: fit-content;
- padding: 0 0.7rem;
- border-radius: 999px;
- background: rgba(255, 255, 255, 0.03);
- color: rgba(239, 226, 206, 0.74);
- font-size: 0.68rem;
- letter-spacing: 0.08em;
- text-transform: uppercase;
-}
-
-.quest-card header div small {
- display: block;
- margin-top: 0.25rem;
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-.panel-command {
- display: grid;
- grid-template-rows: auto 1fr;
- gap: 0.65rem;
-}
-
-.viewport-stage,
-.auth-hero,
-.new-game-card {
- position: relative;
- overflow: hidden;
- border-radius: 20px;
- background-color: #12100d;
- background-position: center;
- background-size: cover;
-}
-
-.viewport-stage {
- border: 1px solid rgba(215, 138, 51, 0.25);
-}
-
-.viewport-copy,
-.auth-hero-copy,
-.new-game-copy {
- position: relative;
- z-index: 1;
-}
-
-.viewport-copy {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- height: 100%;
- max-width: 36rem;
- padding: 1rem;
-}
-
-.viewport-copy h2 {
- font-size: clamp(1.85rem, 3.1vw, 3.1rem);
-}
-
-.viewport-copy p,
-.auth-hero-copy p,
-.new-game-copy p,
-.modal-copy {
- max-width: 42rem;
-}
-
-.viewport-flags {
- position: absolute;
- top: 0.85rem;
- right: 0.85rem;
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-end;
- gap: 0.45rem;
- z-index: 1;
-}
-
-.viewport-flags span {
- display: inline-flex;
- align-items: center;
- min-height: 1.9rem;
- padding: 0 0.7rem;
- border: 1px solid rgba(255, 255, 255, 0.1);
- border-radius: 999px;
- background: rgba(6, 6, 6, 0.34);
- font-size: 0.68rem;
- letter-spacing: 0.1em;
- text-transform: uppercase;
-}
-
-.command-error {
- margin: 0;
-}
-
-.dock-tab.active {
- border-color: rgba(215, 138, 51, 0.35);
- background: rgba(215, 138, 51, 0.1);
- color: var(--text);
-}
-
-.inventory-card {
- width: 100%;
- text-align: left;
- padding: 0.8rem;
-}
-
-.combat-health {
- display: flex;
- justify-content: space-between;
- gap: 0.65rem;
-}
-
-.recipe-list,
-.inventory-list,
-.quest-list {
- align-content: start;
-}
-
-.panel-loadout {
- display: grid;
- grid-template-rows: auto minmax(0, 1fr);
- gap: 0.75rem;
-}
-
-.inventory-card {
- display: grid;
- grid-template-columns: 72px minmax(0, 1fr) auto;
- align-items: start;
- gap: 0.75rem;
-}
-
-.inventory-card.equipped {
- border-color: rgba(215, 138, 51, 0.35);
-}
-
-.inventory-title-row span {
- color: #f1c27b;
-}
-
-.combat-actions {
- display: flex;
- flex-wrap: wrap;
- gap: 0.55rem;
-}
-
-.quest-card {
- padding: 0.75rem;
-}
-
-.quest-card header {
- display: flex;
- justify-content: space-between;
- gap: 0.65rem;
- margin-bottom: 0.55rem;
-}
-
-.quest-card header div small {
- display: block;
- margin-top: 0.25rem;
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-.quest-card.state-completed {
- border-color: rgba(141, 194, 106, 0.32);
-}
-
-.quest-steps {
- display: grid;
- gap: 0.32rem;
-}
-
-.quest-steps span {
- color: rgba(239, 226, 206, 0.76);
- font-size: 0.78rem;
-}
-
-.quest-steps .done {
- color: #a8e288;
-}
-
-.log-entry {
- display: grid;
- grid-template-columns: auto 1fr;
- gap: 0.7rem;
- padding: 0.72rem 0;
- border-bottom: 1px solid var(--line);
-}
-
-.log-entry:last-child {
- border-bottom: none;
-}
-
-.log-entry span {
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-.log-entry p {
- margin: 0;
-}
-
-.tone-good p {
- color: #b4e88f;
-}
-
-.tone-warn p {
- color: #f3c17a;
-}
-
-.tone-bad p,
-.tone-danger p {
- color: #f38b74;
-}
-
-.command-dock {
- display: grid;
- grid-template-columns: 200px minmax(0, 1fr) auto;
- gap: 0.65rem;
- align-items: center;
- border-radius: 16px;
- border-color: var(--panel-border);
- padding: 0.5rem 0.7rem;
-}
-
-.operator-card {
- display: flex;
- align-items: center;
- gap: 0.7rem;
-}
-
-.operator-emblem {
- display: grid;
- place-items: center;
- width: 38px;
- height: 38px;
- border-radius: 10px;
- border: 1px solid rgba(215, 138, 51, 0.38);
- background: rgba(215, 138, 51, 0.12);
- color: var(--accent);
- font-weight: 700;
- font-size: 0.9rem;
-}
-
-.operator-copy span {
- display: block;
- color: var(--muted);
- font-size: 0.68rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
-}
-
-.dock-nav-groups {
- display: grid;
- gap: 0.55rem;
-}
-
-.dock-tabs,
-.dock-metrics {
- display: flex;
- align-items: center;
- gap: 0.5rem;
- flex-wrap: wrap;
-}
-
-.dock-tabs {
- justify-content: center;
-}
-
-.dock-tab,
-.dock-metrics span {
- display: inline-flex;
- align-items: center;
- min-height: 1.8rem;
- padding: 0 0.7rem;
- border-radius: 999px;
- font-size: 0.68rem;
- letter-spacing: 0.1em;
- text-transform: uppercase;
-}
-
-.dock-metrics span {
- border: 1px solid rgba(255, 255, 255, 0.07);
- background: rgba(255, 255, 255, 0.03);
- color: var(--muted);
-}
-
-.auth-shell,
-.new-game-shell,
-.loading-shell {
- min-height: 100dvh;
- display: grid;
- place-items: center;
- padding: 0.75rem;
-}
-
-.auth-shell {
- grid-template-columns: minmax(0, 1.42fr) minmax(340px, 430px);
- gap: 0.75rem;
-}
-
-.auth-hero,
-.new-game-card {
- min-height: calc(100dvh - 1.5rem);
- padding: 1.4rem;
- border-radius: 24px;
- border-color: var(--panel-border);
-}
-
-.auth-hero-copy,
-.new-game-copy {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- height: 100%;
- max-width: 36rem;
-}
-
-.auth-panel,
-.loading-card {
- border-radius: 24px;
- border-color: var(--panel-border);
-}
-
-.auth-panel {
- width: 100%;
- padding: 1.25rem;
-}
-
-.auth-panel label,
-.new-game-copy label {
- display: grid;
- gap: 0.35rem;
- margin-bottom: 0.8rem;
- color: var(--muted);
-}
-
-.auth-panel input,
-.new-game-copy input {
- min-height: 48px;
- padding: 0 0.95rem;
- border-radius: 14px;
- border: 1px solid rgba(255, 255, 255, 0.12);
- background: rgba(255, 255, 255, 0.04);
- color: var(--text);
-}
-
-.tab-row {
- display: grid;
- grid-template-columns: repeat(2, minmax(0, 1fr));
- gap: 0.45rem;
- margin-bottom: 1rem;
-}
-
-.tab-row button {
- min-height: 42px;
- border-radius: 12px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(255, 255, 255, 0.03);
- color: var(--text);
-}
-
-.tab-row button.active {
- border-color: rgba(215, 138, 51, 0.36);
- background: rgba(215, 138, 51, 0.1);
-}
-
-.new-game-card {
- display: grid;
- align-items: end;
-}
-
-.new-game-overlay {
- position: absolute;
- inset: 0;
- background:
- linear-gradient(180deg, rgba(4, 4, 4, 0.12), rgba(4, 4, 4, 0.78)),
- linear-gradient(90deg, rgba(215, 138, 51, 0.12), transparent 55%);
-}
-
-.loading-card {
- width: min(100%, 360px);
- padding: 1.35rem;
-}
-
-.loading-line {
- width: 76px;
- height: 6px;
- margin-bottom: 1rem;
- border-radius: 999px;
- background: linear-gradient(90deg, #e7aa56, #c56c24);
-}
-
-.modal-shell {
- position: fixed;
- inset: 0;
- display: grid;
- place-items: center;
- padding: 1rem;
- background: rgba(4, 4, 4, 0.8);
- backdrop-filter: blur(8px);
- z-index: 20;
-}
-
-.modal-card {
- width: min(100%, 760px);
- border-radius: 22px;
- border: 1px solid rgba(215, 138, 51, 0.24);
- background: rgba(13, 11, 9, 0.97);
- box-shadow: var(--shadow);
- padding: 1rem;
-}
-
-.modal-card-wide {
- width: min(100%, 1180px);
-}
-
-.modal-header span {
- display: inline-flex;
- align-items: center;
- min-height: 1.75rem;
- padding: 0 0.7rem;
- border-radius: 999px;
- background: rgba(255, 255, 255, 0.03);
- color: rgba(239, 226, 206, 0.74);
- font-size: 0.68rem;
- letter-spacing: 0.08em;
- text-transform: uppercase;
-}
-
-.modal-header {
- display: flex;
- justify-content: space-between;
- gap: 1rem;
- align-items: flex-start;
-}
-
-.modal-header-copy {
- min-width: 0;
-}
-
-.modal-header h3 {
- margin: 0.25rem 0 0;
- font-size: 1.5rem;
-}
-
-.modal-close {
- min-height: 36px;
- padding: 0 0.8rem;
- border: 1px solid rgba(255, 255, 255, 0.1);
- border-radius: 999px;
- background: rgba(255, 255, 255, 0.04);
- color: var(--muted);
- font-size: 0.72rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
-}
-
-.modal-option {
- width: 100%;
- min-height: 60px;
- text-align: left;
- padding: 0.9rem;
-}
-
-.modal-option span {
- display: block;
- margin-top: 0.35rem;
- color: var(--muted);
-}
-
-.combat-shell {
- display: grid;
- gap: 0.85rem;
-}
-
-.combat-log {
- max-height: 220px;
-}
-
-.combat-log p {
- margin: 0;
- padding: 0.7rem 0.85rem;
- border-radius: 14px;
- background: rgba(255, 255, 255, 0.03);
-}
-
-.combat-actions {
- display: grid;
- grid-template-columns: repeat(5, minmax(0, 1fr));
- gap: 0.5rem;
-}
-
-.system-overlay {
- display: grid;
- gap: 0.75rem;
-}
-
-.overlay-summary-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
- gap: 0.55rem;
-}
-
-.overlay-summary-card,
-.overlay-note-card,
-.overlay-loadout-row {
- padding: 0.8rem;
- border-radius: 16px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(255, 255, 255, 0.03);
-}
-
-.overlay-summary-card span,
-.overlay-loadout-row span {
- display: block;
- margin-bottom: 0.26rem;
- color: var(--muted);
- font-size: 0.68rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
-}
-
-.overlay-summary-card strong {
- font-size: 1.02rem;
-}
-
-.system-overlay-grid {
- display: grid;
- gap: 0.75rem;
- min-height: min(72dvh, 760px);
-}
-
-.inventory-overlay-grid,
-.blueprint-overlay-grid,
-.log-overlay-grid {
- grid-template-columns: minmax(0, 1.4fr) 320px;
-}
-
-.overlay-main-stack {
- min-height: 0;
- display: grid;
- gap: 0.75rem;
- grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
-}
-
-.mission-overlay-grid {
- grid-template-columns: minmax(0, 1.2fr) 340px;
-}
-
-.overlay-main-panel,
-.overlay-side-stack,
-.overlay-side-panel {
- min-height: 0;
- display: grid;
-}
-
-.overlay-main-panel,
-.overlay-side-panel {
- grid-template-rows: auto minmax(0, 1fr);
-}
-
-.overlay-side-stack {
- gap: 0.75rem;
- grid-template-rows: repeat(2, minmax(0, 1fr));
-}
-
-.overlay-list {
- min-height: 0;
-}
-
-.overlay-loadout-stack,
-.overlay-note-stack {
- display: grid;
- gap: 0.55rem;
- align-content: start;
-}
-
-.overlay-loadout-row.equipped {
- border-color: rgba(215, 138, 51, 0.28);
-}
-
-.overlay-loadout-row small,
-.overlay-note-card p {
- display: block;
- margin-top: 0.3rem;
- color: rgba(239, 226, 206, 0.76);
- line-height: 1.5;
-}
-
-.empty-state {
- padding: 0.9rem;
- border: 1px dashed rgba(255, 255, 255, 0.12);
- border-radius: 14px;
- color: var(--muted);
-}
-
-.recipe-list::-webkit-scrollbar,
-.log-list::-webkit-scrollbar,
-.inventory-list::-webkit-scrollbar,
-.quest-list::-webkit-scrollbar,
-.combat-log::-webkit-scrollbar,
-.modal-option-list::-webkit-scrollbar {
- width: 8px;
-}
-
-.recipe-list::-webkit-scrollbar-thumb,
-.log-list::-webkit-scrollbar-thumb,
-.inventory-list::-webkit-scrollbar-thumb,
-.quest-list::-webkit-scrollbar-thumb,
-.combat-log::-webkit-scrollbar-thumb,
-.modal-option-list::-webkit-scrollbar-thumb {
- border-radius: 999px;
- background: rgba(215, 138, 51, 0.26);
-}
-
-/* Consolidated into first .game-grid rule */
-
-.panel-route.expedition-panel,
-.panel-command.theater-panel,
-.panel-loadout.survivor-panel {
- padding: 0.85rem;
-}
-
-.panel-route.expedition-panel {
- grid-template-rows: auto auto minmax(0, 1fr) auto;
-}
-
-.expedition-head,
-.survivor-head {
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- gap: 0.75rem;
-}
-
-.expedition-head h2,
-.survivor-head strong {
- margin: 0.3rem 0 0;
- font-size: 1.28rem;
- line-height: 1;
- letter-spacing: -0.03em;
-}
-
-.expedition-core {
- display: grid;
- gap: 0.8rem;
- padding: 0.95rem;
- border-radius: 18px;
- border: 1px solid rgba(215, 138, 51, 0.2);
- background:
- linear-gradient(180deg, rgba(215, 138, 51, 0.08), rgba(255, 255, 255, 0)),
- rgba(10, 8, 7, 0.68);
-}
-
-.expedition-core p {
- margin: 0;
-}
-
-.expedition-status-grid {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 0.5rem;
-}
-
-.expedition-status-card {
- padding: 0.7rem;
- border-radius: 14px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(255, 255, 255, 0.03);
-}
-
-.expedition-status-card small {
- display: block;
- margin-bottom: 0.25rem;
- color: var(--muted);
- font-size: 0.66rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
-}
-
-.route-stack,
-.expedition-map-panel,
-.survivor-supply-panel,
-.survivor-actions-panel {
- min-height: 0;
- display: grid;
- grid-template-rows: auto minmax(0, 1fr);
-}
-
-.expedition-route-list,
-.expedition-map-grid {
- align-content: start;
-}
-
-.expedition-route-card {
- grid-template-columns: 76px minmax(0, 1fr) 56px;
- padding: 0.55rem;
-}
-
-.expedition-route-card .route-card-thumb {
- min-height: 96px;
-}
-
-.expedition-route-card .route-card-copy strong {
- font-size: 1rem;
-}
-
-.expedition-route-card .route-card-state {
- min-width: 0;
- align-items: flex-start;
- gap: 0.45rem;
-}
-
-.expedition-map-grid {
- grid-template-columns: 1fr;
-}
-
-.theater-panel {
- grid-template-rows: auto 1fr;
-}
-
-.theater-scene {
- position: relative;
- overflow: hidden;
- border-radius: 22px;
- border: 1px solid rgba(215, 138, 51, 0.2);
-}
-
-.theater-scene::after {
- content: '';
- position: absolute;
- inset: 0;
- background:
- linear-gradient(90deg, rgba(6, 5, 4, 0.1), rgba(6, 5, 4, 0.72) 74%),
- linear-gradient(180deg, rgba(6, 5, 4, 0.06), rgba(6, 5, 4, 0.78));
-}
-
-.theater-scene-copy,
-.theater-scene-side {
- position: absolute;
- z-index: 1;
-}
-
-.theater-scene-copy {
- left: 1rem;
- right: 21rem;
- bottom: 1rem;
- display: grid;
- gap: 0.45rem;
-}
-
-.theater-scene-copy h2 {
- margin: 0;
- font-size: clamp(2.6rem, 4vw, 4.3rem);
- line-height: 0.9;
- letter-spacing: -0.06em;
-}
-
-.theater-scene-copy p:last-child {
- margin: 0;
- max-width: 35rem;
- color: rgba(239, 226, 206, 0.8);
-}
-
-.theater-scene-side {
- top: 1rem;
- right: 1rem;
- width: 300px;
- display: grid;
- gap: 0.55rem;
-}
-
-.scene-focus-card {
- padding: 0.85rem;
- border-radius: 16px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(7, 6, 5, 0.58);
- backdrop-filter: blur(14px);
-}
-
-.scene-focus-card.error {
- border-color: rgba(225, 109, 76, 0.28);
-}
-
-.scene-focus-card span,
-.primary-operation-copy span,
-.intel-focus-card span,
-.survivor-metric-card span {
- display: block;
- margin-bottom: 0.28rem;
- color: var(--muted);
- font-size: 0.68rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
-}
-
-.scene-focus-card strong,
-.intel-focus-card strong {
- display: block;
- font-size: 0.98rem;
-}
-
-.scene-focus-card p,
-.intel-focus-card p {
- margin: 0.3rem 0 0;
- color: rgba(239, 226, 206, 0.8);
- line-height: 1.45;
-}
-
-.theater-deck {
- display: grid;
- grid-template-columns: minmax(0, 1.15fr) 316px;
- gap: 0.75rem;
-}
-
-.primary-operation-card {
- display: grid;
- gap: 0.8rem;
- padding: 1rem;
- border-radius: 20px;
- border: 1px solid rgba(215, 138, 51, 0.26);
- background:
- radial-gradient(circle at top right, rgba(215, 138, 51, 0.14), transparent 28%),
- linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
- rgba(11, 9, 8, 0.86);
-}
-
-.primary-operation-copy h3 {
- margin: 0;
- font-size: clamp(1.7rem, 2.8vw, 2.5rem);
- line-height: 0.94;
- letter-spacing: -0.04em;
-}
-
-.primary-operation-copy p,
-.secondary-operation-card p {
- margin: 0.4rem 0 0;
- color: rgba(239, 226, 206, 0.78);
- line-height: 1.45;
-}
-
-.operation-chip-row {
- display: flex;
- flex-wrap: wrap;
- gap: 0.45rem;
-}
-
-.operation-chip-row span {
- display: inline-flex;
- align-items: center;
- min-height: 1.9rem;
- padding: 0 0.7rem;
- border-radius: 999px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(255, 255, 255, 0.03);
- font-size: 0.72rem;
- color: rgba(239, 226, 206, 0.82);
-}
-
-.primary-operation-card small {
- color: #f0c27a;
- font-size: 0.78rem;
-}
-
-.operation-commit-button {
- width: min(100%, 220px);
-}
-
-.secondary-operation-stack {
- display: grid;
- gap: 0.55rem;
-}
-
-.secondary-operation-card {
- min-height: 0;
- display: grid;
- gap: 0.3rem;
- text-align: left;
- padding: 0.85rem;
- border-radius: 16px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background:
- linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
- rgba(10, 8, 7, 0.6);
-}
-
-.secondary-operation-card strong {
- font-size: 0.98rem;
-}
-
-.secondary-operation-card small {
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-.theater-intel-grid {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 0.75rem;
-}
-
-.intel-focus-card {
- min-height: 142px;
- padding: 0.9rem;
- border-radius: 18px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(10, 8, 7, 0.52);
-}
-
-.intel-focus-card.system {
- display: grid;
- grid-template-rows: auto auto 1fr;
-}
-
-.intel-system-links {
- display: flex;
- flex-wrap: wrap;
- gap: 0.45rem;
- align-content: end;
- margin-top: 0.7rem;
-}
-
-.survivor-panel {
- grid-template-rows: auto auto auto auto auto;
-}
-
-.survivor-head-chips {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-end;
- gap: 0.45rem;
-}
-
-.survivor-rig {
- display: grid;
- grid-template-columns: 110px minmax(0, 1fr) 110px;
- gap: 0.65rem;
- min-height: 328px;
-}
-
-.rig-column {
- display: grid;
- gap: 0.55rem;
-}
-
-.rig-slot {
- padding: 0.65rem;
-}
-
-.rig-figure {
- min-height: 328px;
-}
-
-.rig-figure-overlay {
- right: 0.85rem;
- left: 0.85rem;
- bottom: 4.85rem;
- text-align: left;
-}
-
-.rig-figure-overlay strong {
- display: block;
- margin-top: 0.25rem;
- font-size: 0.92rem;
-}
-
-.survivor-metrics-strip {
- position: absolute;
- left: 0.85rem;
- right: 0.85rem;
- bottom: 0.85rem;
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 0.45rem;
-}
-
-.survivor-metric-card {
- padding: 0.6rem;
- border-radius: 14px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(7, 6, 5, 0.58);
-}
-
-.survivor-metric-card strong {
- font-size: 1.1rem;
-}
-
-.survivor-warning-strip {
- display: grid;
- gap: 0.5rem;
-}
-
-.survivor-warning-card {
- display: grid;
- grid-template-columns: 42px minmax(0, 1fr);
- gap: 0.65rem;
- align-items: start;
- padding: 0.75rem;
- border-radius: 16px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(10, 8, 7, 0.48);
-}
-
-.survivor-warning-card strong {
- display: block;
- font-size: 0.94rem;
-}
-
-.survivor-warning-card p {
- margin: 0.26rem 0 0;
- color: rgba(239, 226, 206, 0.78);
- font-size: 0.78rem;
- line-height: 1.42;
-}
-
-.survivor-supply-grid {
- display: grid;
- grid-template-columns: repeat(5, minmax(0, 1fr));
- gap: 0.5rem;
-}
-
-.survivor-supply-card {
- min-height: 120px;
- display: grid;
- gap: 0.45rem;
- align-content: start;
- text-align: left;
- padding: 0.6rem;
- border-radius: 16px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background:
- linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
- rgba(10, 8, 7, 0.54);
-}
-
-.survivor-supply-card .asset-thumb {
- width: 100%;
- min-width: 0;
-}
-
-.survivor-supply-copy span {
- display: block;
- margin-top: 0.22rem;
- color: #f1c27b;
-}
-
-.survivor-supply-copy small {
- display: block;
- margin-top: 0.22rem;
- color: var(--muted);
- font-size: 0.68rem;
- text-transform: uppercase;
- letter-spacing: 0.08em;
-}
-
-.survivor-supply-card.locked {
- place-items: center;
- border-style: dashed;
-}
-
-.tactical-dock {
- grid-template-columns: 208px minmax(0, 1fr) 196px;
-}
-
-.tactical-operator {
- min-width: 0;
-}
-
-.dock-commit {
- display: flex;
- justify-content: flex-end;
-}
-
-.dock-commit-button {
- width: 100%;
- min-height: 48px;
-}
-
-@media (max-width: 1580px) {
- .top-hud {
- grid-template-columns: 250px 104px minmax(0, 1fr);
- }
-
- .top-actions {
- grid-column: 1 / -1;
- justify-content: flex-start;
- }
-
- .game-grid {
- grid-template-columns: 248px minmax(0, 1fr) 330px;
- }
-
- .loadout-matrix {
- grid-template-columns: 112px minmax(0, 1fr) 112px;
- }
-
- .theater-deck {
- grid-template-columns: minmax(0, 1fr) 280px;
- }
-
- .theater-scene-copy {
- right: 18rem;
- }
-
- .theater-scene-side {
- width: 260px;
- }
-
- .survivor-rig {
- grid-template-columns: 96px minmax(0, 1fr) 96px;
- }
-}
-
-@media (max-width: 1340px) {
- body {
- overflow: auto;
- }
-
- .app-shell {
- overflow: visible;
- }
-
- .top-hud {
- grid-template-columns: 1fr;
- }
-
- .status-strip {
- grid-template-columns: repeat(3, minmax(0, 1fr));
- }
-
- .game-grid {
- grid-template-columns: 1fr;
- }
-
- .auth-shell,
- .command-dock {
- grid-template-columns: 1fr;
- }
-
- .command-dock {
- align-items: start;
- }
-
- .theater-panel,
- .panel-route.expedition-panel,
- .survivor-panel {
- grid-template-rows: auto;
- }
-
- .theater-scene {
- min-height: 320px;
- }
-
- .theater-scene-copy,
- .theater-scene-side {
- position: absolute;
- }
-
- .theater-scene-copy {
- right: 1rem;
- }
-
- .theater-scene-side {
- width: 260px;
- }
-
- .theater-deck,
- .theater-intel-grid,
- .theater-intel-strip,
- .theater-action-zone,
- .survivor-rig,
- .tactical-dock {
- grid-template-columns: 1fr;
- }
-
- .rig-column {
- grid-template-columns: repeat(3, minmax(0, 1fr));
- }
-
- .survivor-head,
- .expedition-head {
- align-items: flex-start;
- }
-}
-
-/* Mobile breakpoint removed - game only targets PC and tablet */
-
-:root {
- --hud-frame-wide: url('/generated/hud/chrome/panel-wide.png');
- --hud-frame-tall: url('/generated/hud/chrome/panel-tall.png');
- --hud-frame-card: url('/generated/hud/chrome/panel-card.png');
- --hud-frame-compact: url('/generated/hud/chrome/panel-compact.png');
- --hud-frame-route-idle: url('/generated/hud/chrome/route-card-idle.png');
- --hud-frame-route-active: url('/generated/hud/chrome/route-card-active.png');
- --hud-frame-action-primary: url('/generated/hud/chrome/action-card-primary.png');
- --hud-frame-action-secondary: url('/generated/hud/chrome/action-card-secondary.png');
- --hud-frame-status: url('/generated/hud/chrome/status-meter.png');
- --hud-frame-warning: url('/generated/hud/chrome/warning-strip.png');
- --hud-frame-dock-idle: url('/generated/hud/chrome/dock-tab-idle.png');
- --hud-frame-dock-active: url('/generated/hud/chrome/dock-tab-active.png');
- --hud-divider: url('/generated/hud/chrome/divider-ornament.png');
-}
-
-.hud-surface,
-.hud-card-frame,
-.hud-warning-frame,
-.expedition-route-card,
-.dock-tab,
-.stat-meter,
-.brand-block,
-.clock-block {
- position: relative;
- isolation: isolate;
- border-color: transparent;
-}
-
-.hud-surface::before,
-.hud-card-frame::before,
-.hud-warning-frame::before,
-.expedition-route-card::before,
-.dock-tab::before,
-.stat-meter::before,
-.brand-block::before,
-.clock-block::before {
- content: '';
- position: absolute;
- inset: 0;
- z-index: 0;
- pointer-events: none;
- background-repeat: no-repeat;
- background-position: center;
- background-size: 100% 100%;
-}
-
-.hud-surface::before {
- opacity: 0.3;
-}
-
-.hud-card-frame::before,
-.hud-warning-frame::before,
-.expedition-route-card::before,
-.dock-tab::before,
-.stat-meter::before,
-.brand-block::before,
-.clock-block::before {
- opacity: 0.96;
-}
-
-.hud-surface > *,
-.hud-card-frame > *,
-.hud-warning-frame > *,
-.expedition-route-card > *,
-.dock-tab > *,
-.stat-meter > *,
-.brand-block > *,
-.clock-block > * {
- position: relative;
- z-index: 1;
-}
-
-.hud-surface-wide::before,
-.hud-top-frame::before,
-.hud-dock-frame::before {
- background-image: var(--hud-frame-wide);
-}
-
-.hud-surface-tall::before {
- background-image: var(--hud-frame-tall);
-}
-
-.hud-card-frame::before {
- background-image: var(--hud-frame-card);
-}
-
-.hud-card-frame-primary::before {
- display: none;
-}
-
-.hud-warning-frame::before {
- background-image: var(--hud-frame-warning);
-}
-
-.brand-block::before,
-.clock-block::before {
- background-image: var(--hud-frame-compact);
-}
-
-.stat-meter::before {
- background-image: var(--hud-frame-status);
-}
-
-.panel-header {
- align-items: center;
-}
-
-.panel-header::after {
- content: '';
- flex: 1;
- align-self: center;
- min-width: 80px;
- height: 10px;
- opacity: 0.42;
- background: var(--hud-divider) center right / contain no-repeat;
-}
-
-.panel-header-copy {
- display: grid;
- grid-template-columns: auto minmax(0, 1fr);
- gap: 0.7rem;
- align-items: center;
-}
-
-.panel-header-mark {
- display: grid;
- place-items: center;
- width: 34px;
- height: 34px;
- border-radius: 10px;
- background: rgba(7, 6, 5, 0.44);
-}
-
-.panel-header-mark img,
-.hud-icon {
- width: 100%;
- height: 100%;
- object-fit: contain;
-}
-
-.section-glyph {
- width: 36px;
- height: 36px;
- flex: 0 0 36px;
- opacity: 0.92;
-}
-
-.expedition-head-copy,
-.survivor-head-copy {
- display: flex;
- align-items: center;
- gap: 0.7rem;
-}
-
-.survivor-head,
-.expedition-head {
- align-items: center;
-}
-
-.survivor-head-side {
- display: grid;
- gap: 0.55rem;
- justify-items: end;
-}
-
-.top-action-button {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- gap: 0.45rem;
-}
-
-.top-action-icon,
-.clock-icon {
- width: 18px;
- height: 18px;
- flex: 0 0 18px;
-}
-
-.clock-block {
- display: grid;
- grid-template-columns: 22px 1fr;
- align-items: center;
- justify-items: start;
- gap: 0.55rem;
- padding: 0.65rem 0.8rem;
-}
-
-.clock-block div {
- display: grid;
- gap: 0.08rem;
-}
-
-.status-strip {
- gap: 0.45rem;
-}
-
-.stat-meter {
- padding: 0.55rem 0.72rem 0.62rem;
- background: transparent;
-}
-
-.stat-meter-copy {
- display: grid;
- grid-template-columns: 18px minmax(0, 1fr);
- align-items: center;
- gap: 0.5rem;
- margin-bottom: 0.45rem;
-}
-
-.stat-meter-copy > div {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- gap: 0.4rem;
-}
-
-.stat-meter-icon {
- width: 18px;
- height: 18px;
- object-fit: contain;
- opacity: 0.92;
-}
-
-.meter-track {
- background: rgba(255, 255, 255, 0.06);
-}
-
-/* Consolidated into first .game-grid rule */
-
-.panel-route.expedition-panel,
-.panel-command.theater-panel,
-.panel-loadout.survivor-panel,
-.top-hud,
-.command-dock {
- background: rgba(7, 6, 5, 0.74);
-}
-
-.command-dock {
- position: sticky;
- bottom: 0;
- z-index: 5;
-}
-
-.expedition-core,
-.equipment-grid-panel,
-.survivor-resource-panel,
-.intel-focus-card,
-.survivor-metric-card,
-.secondary-operation-card,
-.overlay-summary-card {
- background: rgba(7, 6, 5, 0.42);
-}
-
-.expedition-core,
-.equipment-grid-panel,
-.survivor-resource-panel {
- padding: 0.85rem;
-}
-
-.expedition-route-card {
- background: rgba(5, 5, 4, 0.48);
- border: 0;
-}
-
-.expedition-route-card::before {
- background-image: var(--hud-frame-route-idle);
-}
-
-.expedition-route-card.recommended::before {
- background-image: var(--hud-frame-route-active);
-}
-
-.expedition-route-card .route-card-thumb {
- border-radius: 12px;
- overflow: hidden;
- border: 1px solid rgba(255, 255, 255, 0.08);
-}
-
-.theater-panel {
- grid-template-rows: auto auto auto;
-}
-
-.theater-scene {
- background-color: rgba(6, 5, 4, 0.72);
-}
-
-.primary-operation-card {
- gap: 0.72rem;
- background: rgba(10, 8, 6, 0.42);
- border: 1px solid rgba(215, 138, 51, 0.22);
- box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
- padding: 0.82rem;
-}
-
-.primary-operation-head {
- display: flex;
- align-items: center;
- gap: 0.65rem;
-}
-
-.operation-glyph {
- width: 22px;
- height: 22px;
- flex: 0 0 22px;
-}
-
-.operation-glyph-primary {
- width: 32px;
- height: 32px;
- flex-basis: 32px;
-}
-
-.secondary-operation-card {
- grid-template-columns: 22px minmax(0, 1fr);
- align-items: start;
- gap: 0.65rem;
- min-height: 94px;
-}
-
-.secondary-operation-card::before {
- background-image: var(--hud-frame-compact);
-}
-
-.secondary-operation-card p {
- margin-top: 0.18rem;
-}
-
-.theater-intel-grid {
- gap: 0.65rem;
-}
-
-.theater-scene-copy h2 {
- font-size: clamp(2rem, 3.2vw, 3.15rem);
-}
-
-.theater-scene-copy p:last-child {
- max-width: 26rem;
- font-size: 0.92rem;
-}
-
-.scene-focus-card {
- padding: 0.7rem;
-}
-
-.primary-operation-copy h3 {
- font-size: clamp(1.4rem, 2vw, 2rem);
-}
-
-.operation-chip-row span {
- min-height: 1.7rem;
- padding: 0 0.55rem;
- font-size: 0.68rem;
-}
-
-.primary-operation-card small {
- font-size: 0.72rem;
-}
-
-.secondary-operation-stack {
- align-content: start;
-}
-
-.intel-focus-card {
- min-height: 108px;
- padding: 0.78rem;
-}
-
-.survivor-panel {
- grid-template-rows: auto auto auto auto auto;
- gap: 0.65rem;
-}
-
-.survivor-metrics-row {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 0.5rem;
-}
-
-.survivor-equipment-grid {
- display: grid;
- grid-template-columns: repeat(2, minmax(0, 1fr));
- gap: 0.55rem;
-}
-
-.equipment-module {
- grid-template-columns: 68px minmax(0, 1fr);
- align-items: center;
- min-height: 110px;
- background: rgba(8, 7, 6, 0.52);
-}
-
-.equipment-module.equipped {
- box-shadow: inset 0 0 0 1px rgba(215, 138, 51, 0.22);
-}
-
-.survivor-warning-card {
- border: 0;
- background: rgba(7, 6, 5, 0.5);
-}
-
-.survivor-supply-card,
-.survivor-stash-card {
- border: 0;
- background: rgba(8, 7, 6, 0.52);
-}
-
-.survivor-supply-card {
- min-height: 98px;
-}
-
-.survivor-supply-card.locked {
- background:
- linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
- rgba(8, 7, 6, 0.28);
-}
-
-.survivor-stash-grid {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 0.5rem;
-}
-
-.survivor-resource-grid {
- display: grid;
- grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
- gap: 0.65rem;
-}
-
-.survivor-resource-column {
- display: grid;
- gap: 0.55rem;
- align-content: start;
-}
-
-.resource-column-head {
- display: flex;
- align-items: center;
- gap: 0.55rem;
-}
-
-.resource-column-head strong,
-.resource-column-head span {
- display: block;
-}
-
-.resource-column-head strong {
- font-size: 0.85rem;
- letter-spacing: 0.08em;
- text-transform: uppercase;
-}
-
-.resource-column-head span {
- margin-top: 0.16rem;
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-.survivor-supply-grid.compact {
- grid-template-columns: repeat(4, minmax(0, 1fr));
-}
-
-.survivor-stash-grid.compact {
- grid-template-columns: repeat(2, minmax(0, 1fr));
-}
-
-.survivor-stash-card {
- display: grid;
- grid-template-columns: 56px minmax(0, 1fr);
- align-items: center;
- gap: 0.55rem;
- padding: 0.55rem;
-}
-
-.survivor-stash-card .asset-thumb {
- width: 56px;
- min-width: 56px;
- border-radius: 12px;
-}
-
-.survivor-stash-open {
- grid-column: 1 / -1;
-}
-
-.operator-card {
- background: rgba(8, 7, 6, 0.38);
-}
-
-.dock-tabs {
- gap: 0.55rem;
-}
-
-.dock-tab {
- min-height: 74px;
- padding: 0.55rem 0.8rem;
- border: 0;
- background: transparent;
- display: grid;
- justify-items: center;
- align-content: center;
- gap: 0.3rem;
-}
-
-.dock-tab::before {
- background-image: var(--hud-frame-dock-idle);
-}
-
-.dock-tab.active::before {
- background-image: var(--hud-frame-dock-active);
-}
-
-.dock-tab-icon {
- width: 22px;
- height: 22px;
- flex: 0 0 22px;
-}
-
-.dock-tab span {
- font-size: 0.7rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
-}
-
-.dock-commit-button {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- gap: 0.5rem;
-}
-
-.dock-commit-icon {
- width: 18px;
- height: 18px;
-}
-
-.overlay-summary-card {
- border: 0;
-}
-
-@media (max-width: 1340px) and (min-width: 961px) {
- body {
- overflow: hidden;
- }
-
- .app-shell {
- overflow: hidden;
- }
-
- .top-hud {
- grid-template-columns: 236px 112px minmax(0, 1fr);
- }
-
- .top-actions {
- grid-column: 1 / -1;
- justify-content: flex-start;
- }
-
- .game-grid {
- grid-template-columns: 228px minmax(0, 1fr) 320px;
- height: calc(100dvh - 214px);
- }
-
- .theater-scene-copy {
- right: 15rem;
- }
-
- .theater-scene-side {
- width: 220px;
- }
-
- .survivor-resource-grid {
- grid-template-columns: 1fr;
- }
-}
-
-/* ============================================================
- NEW COMPONENT CLASSES — theater / expedition / equipment / ready-pack
- Added to match the component rewrite (CommandCenter, RoutePanel, LoadoutPanel)
- ============================================================ */
-
-/* --- CommandCenter: theater scene stage --- */
-
-.theater-scene-stage {
- position: relative;
- display: grid;
- grid-template-rows: 1fr auto;
- min-height: 0;
- overflow: hidden;
- border-radius: 16px;
- border: 1px solid rgba(215, 138, 51, 0.2);
-}
-
-.theater-scene-image {
- position: absolute;
- inset: 0;
- background-position: center;
- background-size: cover;
- z-index: 0;
-}
-
-.theater-scene-image::after {
- content: '';
- position: absolute;
- inset: 0;
- background:
- linear-gradient(180deg, rgba(6, 5, 4, 0.15), rgba(6, 5, 4, 0.82)),
- linear-gradient(90deg, rgba(6, 5, 4, 0.06), rgba(6, 5, 4, 0.5) 70%);
- z-index: 1;
-}
-
-.theater-action-zone {
- position: relative;
- z-index: 2;
- display: grid;
- grid-template-columns: minmax(0, 1.3fr) 220px;
- gap: 0.65rem;
- padding: 0.75rem;
- align-content: end;
- min-height: 180px;
-}
-
-.theater-titlebar {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- gap: 0.75rem;
- margin-bottom: 0.55rem;
-}
-
-.theater-titlebar h2 {
- margin: 0;
- font-size: 1.15rem;
- letter-spacing: 0.12em;
- line-height: 1;
-}
-
-.theater-titlebar p {
- margin: 0.25rem 0 0;
- color: var(--muted);
- font-size: 0.78rem;
- line-height: 1.45;
-}
-
-.theater-titlebar-metrics {
- display: flex;
- gap: 0.65rem;
- flex-shrink: 0;
-}
-
-.theater-titlebar-metrics article {
- display: grid;
- gap: 0.15rem;
- padding: 0.45rem 0.65rem;
- border-radius: 12px;
- background: rgba(8, 7, 6, 0.6);
- border: 1px solid rgba(255, 255, 255, 0.06);
- text-align: center;
-}
-
-.theater-titlebar-metrics article span {
- color: var(--muted);
- font-size: 0.62rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
-}
-
-.theater-titlebar-metrics article strong {
- font-size: 0.88rem;
-}
-
-/* --- CommandCenter: primary & secondary action cards --- */
-
-.theater-primary-card {
- display: grid;
- gap: 0.65rem;
- padding: 0.85rem;
- border-radius: 18px;
- border: 1px solid rgba(215, 138, 51, 0.22);
- background:
- radial-gradient(circle at top right, rgba(215, 138, 51, 0.1), transparent 30%),
- linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
- rgba(10, 8, 6, 0.72);
- backdrop-filter: blur(14px);
-}
-
-.theater-primary-head {
- display: flex;
- align-items: center;
- gap: 0.6rem;
-}
-
-.theater-primary-head span {
- color: var(--muted);
- font-size: 0.68rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
-}
-
-.theater-action-icon {
- width: 22px;
- height: 22px;
- flex: 0 0 22px;
- opacity: 0.9;
-}
-
-.theater-primary-copy h3 {
- margin: 0;
- font-size: clamp(1.2rem, 2vw, 1.6rem);
- line-height: 1;
- letter-spacing: -0.02em;
-}
-
-.theater-primary-copy p {
- margin: 0.3rem 0 0;
- color: rgba(239, 226, 206, 0.78);
- font-size: 0.82rem;
- line-height: 1.45;
-}
-
-.theater-find-row {
- display: flex;
- gap: 0.65rem;
-}
-
-.theater-find-meta {
- display: grid;
- gap: 0.12rem;
- padding: 0.5rem 0.7rem;
- border-radius: 12px;
- background: rgba(255, 255, 255, 0.04);
- border: 1px solid rgba(255, 255, 255, 0.06);
- flex: 1;
-}
-
-.theater-find-meta span {
- color: var(--muted);
- font-size: 0.62rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
-}
-
-.theater-find-meta strong {
- font-size: 0.92rem;
-}
-
-.theater-potential-finds {
- display: flex;
- gap: 0.45rem;
- overflow: auto;
-}
-
-.potential-find-thumb {
- width: 48px;
- min-width: 48px;
-}
-
-.potential-find-thumb .asset-thumb {
- width: 48px;
- min-width: 48px;
- border-radius: 12px;
-}
-
-.theater-primary-button {
- width: min(100%, 200px);
-}
-
-.theater-secondary-column {
- display: grid;
- gap: 0.5rem;
- align-content: start;
-}
-
-.theater-secondary-card {
- display: grid;
- grid-template-columns: 22px minmax(0, 1fr) auto;
- align-items: center;
- gap: 0.55rem;
- text-align: left;
- padding: 0.7rem 0.75rem;
- border-radius: 14px;
- border: 1px solid rgba(255, 255, 255, 0.07);
- background:
- linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
- rgba(9, 8, 7, 0.56);
- color: var(--text);
- transition: transform 150ms ease, border-color 150ms ease;
-}
-
-.theater-secondary-card:hover {
- border-color: rgba(215, 138, 51, 0.22);
- transform: translateY(-1px);
-}
-
-.theater-secondary-card strong {
- font-size: 0.88rem;
-}
-
-.theater-secondary-card p {
- margin: 0.15rem 0 0;
- color: var(--muted);
- font-size: 0.72rem;
- line-height: 1.4;
-}
-
-.theater-secondary-card > span {
- color: var(--muted);
- font-size: 0.68rem;
- letter-spacing: 0.08em;
- text-transform: uppercase;
- white-space: nowrap;
-}
-
-/* --- CommandCenter: intel strip --- */
-
-.theater-intel-strip {
- display: grid;
- grid-template-columns: minmax(0, 1.6fr) repeat(4, minmax(0, 0.7fr));
- gap: 0.4rem;
-}
-
-.theater-intel-block {
- padding: 0.6rem 0.7rem;
- border-radius: 12px;
- border: 1px solid rgba(255, 255, 255, 0.06);
- background: rgba(8, 7, 6, 0.55);
- display: grid;
- gap: 0.2rem;
-}
-
-.theater-intel-block span {
- color: var(--muted);
- font-size: 0.62rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
-}
-
-.theater-intel-block p {
- margin: 0;
- color: rgba(239, 226, 206, 0.78);
- font-size: 0.78rem;
- line-height: 1.4;
-}
-
-.theater-intel-block.compact {
- display: flex;
- align-items: center;
- gap: 0.5rem;
-}
-
-.theater-intel-block.compact strong {
- font-size: 0.82rem;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-.theater-intel-icon {
- width: 18px;
- height: 18px;
- flex: 0 0 18px;
- opacity: 0.8;
-}
-
-/* --- RoutePanel: expedition panel --- */
-
-.expedition-panel-head {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- gap: 0.75rem;
- margin-bottom: 0.55rem;
-}
-
-.expedition-panel-head h2 {
- margin: 0.25rem 0 0;
- font-size: 1.15rem;
- line-height: 1;
- letter-spacing: -0.02em;
-}
-
-.expedition-location-card {
- padding: 0.85rem;
- border-radius: 16px;
- border: 1px solid rgba(215, 138, 51, 0.18);
- background:
- linear-gradient(180deg, rgba(215, 138, 51, 0.06), rgba(255, 255, 255, 0)),
- rgba(9, 8, 7, 0.52);
- display: grid;
- gap: 0.5rem;
-}
-
-.expedition-location-card strong {
- font-size: 1.05rem;
-}
-
-.expedition-weather-block {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0.55rem 0.7rem;
- border-radius: 12px;
- background: rgba(255, 255, 255, 0.03);
- border: 1px solid rgba(255, 255, 255, 0.06);
-}
-
-.expedition-weather-main {
- display: flex;
- align-items: center;
- gap: 0.5rem;
-}
-
-.expedition-weather-icon {
- width: 20px;
- height: 20px;
- flex: 0 0 20px;
- opacity: 0.85;
-}
-
-.expedition-weather-main span {
- font-size: 0.88rem;
-}
-
-.expedition-weather-meta {
- display: flex;
- gap: 0.65rem;
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-.expedition-risk-line {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-top: 0.35rem;
- border-top: 1px solid rgba(255, 255, 255, 0.06);
-}
-
-.expedition-risk-line span {
- color: var(--muted);
- font-size: 0.72rem;
- letter-spacing: 0.08em;
- text-transform: uppercase;
-}
-
-.expedition-risk-line strong {
- font-size: 0.88rem;
-}
-
-/* --- RoutePanel: routes section --- */
-
-.expedition-routes-card {
- display: grid;
- gap: 0.55rem;
- min-height: 0;
-}
-
-.expedition-section-head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- gap: 0.5rem;
-}
-
-.expedition-section-head > span {
- font-size: 0.82rem;
- font-weight: 600;
- letter-spacing: 0.06em;
-}
-
-.expedition-toggle {
- min-height: 30px;
- padding: 0 0.7rem;
- border-radius: 999px;
- border: 1px solid rgba(255, 255, 255, 0.1);
- background: rgba(255, 255, 255, 0.04);
- color: var(--muted);
- font-size: 0.66rem;
- letter-spacing: 0.1em;
- text-transform: uppercase;
- transition: border-color 150ms ease, background 150ms ease;
-}
-
-.expedition-toggle:hover {
- border-color: rgba(215, 138, 51, 0.28);
- background: rgba(215, 138, 51, 0.08);
- color: var(--text);
-}
-
-.expedition-toggle.active {
- border-color: rgba(141, 194, 106, 0.32);
- background: rgba(141, 194, 106, 0.1);
- color: #addb7f;
-}
-
-.expedition-route-stack {
- display: grid;
- gap: 0.5rem;
- min-height: 0;
- overflow: auto;
- align-content: start;
-}
-
-.expedition-route-card {
- display: grid;
- grid-template-columns: 64px minmax(0, 1fr);
- gap: 0.55rem;
- width: 100%;
- padding: 0.5rem;
- text-align: left;
- background:
- linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
- rgba(8, 7, 6, 0.48);
- color: var(--text);
- border-radius: 14px;
- border: 1px solid rgba(255, 255, 255, 0.06);
- transition: border-color 150ms ease, transform 150ms ease;
-}
-
-.expedition-route-card:hover:not(:disabled) {
- border-color: rgba(215, 138, 51, 0.22);
- transform: translateY(-1px);
-}
-
-.expedition-route-card.active {
- border-color: rgba(215, 138, 51, 0.28);
-}
-
-.expedition-route-card.tone-safe .risk-dots span.active {
- background: var(--safe);
- border-color: rgba(141, 194, 106, 0.6);
-}
-
-.expedition-route-card.tone-warn .risk-dots span.active {
- background: var(--warn);
- border-color: rgba(224, 180, 102, 0.6);
-}
-
-.expedition-route-card.tone-danger .risk-dots span.active {
- background: var(--danger);
- border-color: rgba(225, 109, 76, 0.6);
-}
-
-.expedition-route-card .route-card-thumb {
- min-height: 64px;
- border-radius: 10px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background-position: center;
- background-size: cover;
-}
-
-.expedition-route-card .route-card-copy {
- display: grid;
- gap: 0.2rem;
- align-content: center;
-}
-
-.route-card-topline {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- gap: 0.5rem;
-}
-
-.route-card-topline strong {
- font-size: 0.94rem;
-}
-
-.route-card-topline span {
- color: var(--muted);
- font-size: 0.66rem;
- letter-spacing: 0.08em;
-}
-
-.expedition-route-card .route-card-copy p {
- margin: 0.2rem 0 0;
- color: rgba(239, 226, 206, 0.72);
- font-size: 0.78rem;
- line-height: 1.4;
-}
-
-.route-card-detail {
- display: flex;
- gap: 0.55rem;
- margin-top: 0.35rem;
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-/* --- RoutePanel: expedition status --- */
-
-.expedition-status-card {
- display: grid;
- gap: 0.55rem;
- padding: 0.75rem;
- border-radius: 14px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(9, 8, 7, 0.48);
-}
-
-.expedition-status-grid {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 0.5rem;
-}
-
-.expedition-status-cell {
- padding: 0.55rem;
- border-radius: 12px;
- background: rgba(255, 255, 255, 0.04);
- border: 1px solid rgba(255, 255, 255, 0.06);
- text-align: center;
-}
-
-.expedition-status-cell small {
- display: block;
- margin-bottom: 0.2rem;
- color: var(--muted);
- font-size: 0.62rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
-}
-
-.expedition-status-cell strong {
- font-size: 1rem;
-}
-
-.expedition-launch-button {
- width: 100%;
-}
-
-/* --- LoadoutPanel: equipment terminal --- */
-
-.equipment-terminal {
- display: grid;
- grid-template-rows: auto auto auto auto auto;
- gap: 0.55rem;
- padding: 0.75rem;
-}
-
-.equipment-terminal-head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- gap: 0.75rem;
-}
-
-.equipment-terminal-title {
- display: flex;
- align-items: center;
- gap: 0.7rem;
-}
-
-.equipment-terminal-badges {
- display: flex;
- gap: 0.45rem;
- flex-wrap: wrap;
-}
-
-.equipment-grid-frame {
- display: grid;
- gap: 0.55rem;
-}
-
-.equipment-grid-head {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- gap: 0.5rem;
-}
-
-.equipment-grid-head span {
- font-size: 0.82rem;
- font-weight: 600;
- letter-spacing: 0.06em;
-}
-
-.equipment-grid-head p {
- margin: 0;
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-.equipment-grid {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 0.4rem;
-}
-
-.equipment-slot-card {
- display: grid;
- gap: 0.45rem;
- padding: 0.65rem;
- border-radius: 14px;
- border: 1px solid rgba(255, 255, 255, 0.07);
- background:
- linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
- rgba(9, 8, 7, 0.5);
- text-align: center;
-}
-
-.equipment-slot-card.equipped {
- border-color: rgba(215, 138, 51, 0.28);
- background:
- linear-gradient(180deg, rgba(215, 138, 51, 0.06), rgba(255, 255, 255, 0)),
- rgba(9, 8, 7, 0.5);
-}
-
-.equipment-slot-card.placeholder {
- place-items: center;
- border-style: dashed;
- border-color: rgba(255, 255, 255, 0.1);
-}
-
-.equipment-slot-top span {
- color: var(--muted);
- font-size: 0.62rem;
- letter-spacing: 0.14em;
- text-transform: uppercase;
-}
-
-.equipment-slot-thumb {
- width: 100%;
- min-width: 0;
-}
-
-.equipment-slot-thumb .asset-thumb {
- width: 100%;
- min-width: 0;
- border-radius: 12px;
-}
-
-.equipment-slot-copy strong {
- display: block;
- font-size: 0.85rem;
-}
-
-.equipment-slot-copy small {
- display: block;
- margin-top: 0.15rem;
- color: var(--muted);
- font-size: 0.68rem;
-}
-
-.equipment-slot-placeholder {
- display: grid;
- place-items: center;
- width: 44px;
- height: 44px;
- border-radius: 12px;
- border: 1px dashed rgba(255, 255, 255, 0.12);
- color: var(--muted);
- font-size: 1.1rem;
-}
-
-/* --- LoadoutPanel: metrics row --- */
-
-.equipment-metrics-row {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 0.5rem;
-}
-
-.equipment-metric-box {
- padding: 0.6rem;
- border-radius: 12px;
- border: 1px solid rgba(255, 255, 255, 0.06);
- background: rgba(8, 7, 6, 0.5);
- text-align: center;
-}
-
-.equipment-metric-box span {
- display: block;
- margin-bottom: 0.2rem;
- color: var(--muted);
- font-size: 0.62rem;
- letter-spacing: 0.12em;
- text-transform: uppercase;
-}
-
-.equipment-metric-box strong {
- font-size: 1.05rem;
-}
-
-/* --- LoadoutPanel: warning terminal --- */
-
-.warning-terminal {
- display: grid;
- gap: 0.45rem;
-}
-
-.warning-terminal-head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- gap: 0.5rem;
-}
-
-.warning-terminal-head > span {
- font-size: 0.82rem;
- font-weight: 600;
- letter-spacing: 0.06em;
-}
-
-.warning-terminal-button {
- min-height: 28px;
- padding: 0 0.6rem;
- border-radius: 999px;
- border: 1px solid rgba(255, 255, 255, 0.08);
- background: rgba(255, 255, 255, 0.03);
- color: var(--muted);
- font-size: 0.64rem;
- letter-spacing: 0.1em;
- text-transform: uppercase;
-}
-
-.warning-terminal-list {
- display: grid;
- gap: 0.4rem;
-}
-
-.warning-meter {
- display: grid;
- grid-template-columns: auto minmax(0, 1fr);
- gap: 0.55rem;
- align-items: center;
- padding: 0.5rem 0.65rem;
- border-radius: 12px;
- border: 1px solid rgba(255, 255, 255, 0.06);
- background: rgba(9, 8, 7, 0.42);
-}
-
-.warning-meter.tone-good {
- border-color: rgba(141, 194, 106, 0.18);
-}
-
-.warning-meter.tone-warn {
- border-color: rgba(224, 180, 102, 0.18);
-}
-
-.warning-meter.tone-danger {
- border-color: rgba(225, 109, 76, 0.18);
-}
-
-.warning-meter-head {
- display: flex;
- align-items: center;
- gap: 0.45rem;
-}
-
-.warning-meter-icon {
- width: 16px;
- height: 16px;
- flex: 0 0 16px;
- opacity: 0.75;
-}
-
-.warning-meter-head span {
- font-size: 0.76rem;
- white-space: nowrap;
-}
-
-.warning-meter-track {
- height: 5px;
- border-radius: 999px;
- background: rgba(255, 255, 255, 0.08);
- overflow: hidden;
-}
-
-.warning-meter-fill {
- height: 100%;
- border-radius: inherit;
- background: linear-gradient(90deg, #f2b55e, #df7a27);
- transition: width 300ms ease;
-}
-
-.tone-good .warning-meter-fill {
- background: linear-gradient(90deg, #9dda74, #53b96f);
-}
-
-.tone-warn .warning-meter-fill {
- background: linear-gradient(90deg, #f4cc76, #e0a030);
-}
-
-.tone-danger .warning-meter-fill {
- background: linear-gradient(90deg, #f4cc76, #eb6650);
-}
-
-/* --- LoadoutPanel: ready pack --- */
-
-.ready-pack-frame {
- display: grid;
- gap: 0.45rem;
- padding: 0.65rem;
- border-radius: 12px;
- border: 1px solid rgba(255, 255, 255, 0.06);
- background: rgba(9, 8, 7, 0.4);
-}
-
-.ready-pack-head {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- gap: 0.5rem;
-}
-
-.ready-pack-head > span {
- font-size: 0.82rem;
- font-weight: 600;
- letter-spacing: 0.06em;
-}
-
-.ready-pack-head p {
- margin: 0;
- color: var(--muted);
- font-size: 0.72rem;
-}
-
-.ready-pack-columns {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 0.75rem;
-}
-
-.ready-pack-columns > div > strong {
- display: block;
- margin-bottom: 0.4rem;
- font-size: 0.76rem;
- letter-spacing: 0.06em;
- text-transform: uppercase;
- color: var(--muted);
-}
-
-.quick-access-row {
- display: grid;
- grid-template-columns: repeat(4, minmax(0, 1fr));
- gap: 0.4rem;
-}
-
-.quick-access-slot {
- display: grid;
- place-items: center;
- gap: 0.15rem;
- padding: 0.35rem;
- border-radius: 10px;
- border: 1px solid rgba(255, 255, 255, 0.07);
- background: rgba(8, 7, 6, 0.48);
- color: var(--text);
- min-height: 56px;
- transition: border-color 150ms ease;
-}
-
-.quick-access-slot:hover:not(:disabled):not(.locked) {
- border-color: rgba(215, 138, 51, 0.25);
-}
-
-.quick-access-slot.locked {
- border-style: dashed;
- border-color: rgba(255, 255, 255, 0.1);
- color: var(--muted);
- font-size: 0.66rem;
- letter-spacing: 0.1em;
-}
-
-.quick-access-thumb {
- width: 100%;
- min-width: 0;
-}
-
-.quick-access-thumb .asset-thumb {
- width: 100%;
- min-width: 0;
- border-radius: 10px;
-}
-
-.quick-access-slot span {
- font-size: 0.72rem;
- color: #f1c27b;
- font-weight: 600;
-}
-
-.stash-row {
- display: grid;
- grid-template-columns: repeat(4, minmax(0, 1fr));
- gap: 0.4rem;
-}
-
-.stash-slot {
- display: grid;
- place-items: center;
- gap: 0.15rem;
- padding: 0.3rem;
- border-radius: 8px;
- border: 1px solid rgba(255, 255, 255, 0.06);
- background: rgba(8, 7, 6, 0.4);
- min-height: 44px;
-}
-
-.stash-slot span {
- font-size: 0.68rem;
- color: #f1c27b;
-}
-
-.stash-slot.stash-open {
- cursor: pointer;
- color: var(--muted);
- font-size: 1rem;
- border-style: dashed;
- border-color: rgba(255, 255, 255, 0.1);
- transition: border-color 150ms ease, color 150ms ease;
-}
-
-.stash-slot.stash-open:hover {
- border-color: rgba(215, 138, 51, 0.28);
- color: var(--text);
-}
-
-.stash-slot .asset-thumb {
- width: 40px;
- min-width: 40px;
- border-radius: 8px;
-}
-
-/* --- LoadoutPanel: terminal open button --- */
-
-.equipment-terminal-button {
- width: 100%;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- gap: 0.5rem;
-}
+/* ===== TinyWaste — Component CSS Imports ===== */
+
+@import './styles/variables.css';
+@import './styles/base.css';
+@import './styles/game-layout.css';
+@import './styles/top-hud.css';
+@import './styles/bottom-dock.css';
+@import './styles/route-panel.css';
+@import './styles/command-center.css';
+@import './styles/loadout-panel.css';
+@import './styles/overlay.css';
+@import './styles/modal.css';
+@import './styles/auth.css';
+@import './styles/combat.css';
+@import './styles/responsive.css';
diff --git a/apps/web/src/features/game/components/CommandCenter.tsx b/apps/web/src/features/game/components/CommandCenter.tsx
index 8ca8583..f4b0041 100644
--- a/apps/web/src/features/game/components/CommandCenter.tsx
+++ b/apps/web/src/features/game/components/CommandCenter.tsx
@@ -99,28 +99,17 @@ export function CommandCenter({
};
})();
- const secondaryOperations = [
- ...view.place.actions
- .filter((action) => !action.disabledReason && action.id !== firstUtilityAction?.id)
- .slice(0, 3)
- .map((action) => ({
- id: action.id,
- icon: getOperationIcon(action.id),
- title: action.name,
- detail: action.rewardHint,
- time: `${action.timeCostMin} 分钟`,
- onClick: () => onSendAction({ type: 'perform-action', actionId: action.id }),
- })),
- ];
-
- while (secondaryOperations.length < 3) {
- const fillers = [
- { id: 'inventory', icon: 'inventory' as const, title: '背包', detail: '打开野外背包终端', time: '0 分钟', onClick: () => onOpenPanel('inventory') },
- { id: 'craft', icon: 'crafting' as const, title: '制作', detail: '查看蓝图与材料缺口', time: '15 分钟', onClick: () => onOpenPanel('blueprints') },
- { id: 'logs', icon: 'signal' as const, title: '查看日志', detail: '检查最近的探索信号', time: '2 分钟', onClick: () => onOpenPanel('logs') },
- ];
- secondaryOperations.push(fillers[secondaryOperations.length]);
- }
+ const secondaryOperations = view.place.actions
+ .filter((action) => !action.disabledReason && action.id !== firstUtilityAction?.id)
+ .slice(0, 2)
+ .map((action) => ({
+ id: action.id,
+ icon: getOperationIcon(action.id),
+ title: action.name,
+ detail: action.rewardHint,
+ time: `${action.timeCostMin} 分钟`,
+ onClick: () => onSendAction({ type: 'perform-action', actionId: action.id }),
+ }));
return (
@@ -183,7 +172,7 @@ export function CommandCenter({
- {secondaryOperations.slice(0, 3).map((operation) => (
+ {secondaryOperations.map((operation) => (