diff options
Diffstat (limited to 'frontend/src/styles/heisei.css')
| -rw-r--r-- | frontend/src/styles/heisei.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/frontend/src/styles/heisei.css b/frontend/src/styles/heisei.css index 2500ff8..c56791a 100644 --- a/frontend/src/styles/heisei.css +++ b/frontend/src/styles/heisei.css @@ -442,10 +442,13 @@ body { background: var(--hz-night); color: var(--hz-ink); } box-shadow: 0 24px 60px -24px rgba(8, 10, 24, 0.85), 0 0 0 1px var(--hz-line); - filter: saturate(0.85) brightness(0.92); + filter: none; /* tactical SVG renders flat */ height: clamp(180px, 36vh, 360px); width: 100%; display: block; + object-fit: contain; /* show full reticle, no crop */ + background: rgba(11, 17, 36, 0.6); + animation: none; /* kill pc98 mission-pan */ } /* ----- Desktop (≥1025px): image on the left, copy on the right ----- */ @@ -472,6 +475,16 @@ body { background: var(--hz-night); color: var(--hz-ink); } object-fit: cover; /* Pc98 sets `grid-area: hero` etc — clear leftover row hints */ grid-area: auto; + /* Tactical SVG: render whole frame, no pan/crop, no filter */ + animation: none !important; + filter: none !important; + background: rgba(11, 17, 36, 0.6); + object-fit: contain; + object-position: center; + padding: 0; + box-shadow: + 0 24px 60px -24px rgba(8, 10, 24, 0.85), + 0 0 0 1px var(--hz-line); } /* Right-column text: each block owns its own accent rule */ .mission-screen .mission-headline, |
