@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@400;600&display=swap');

:root { color-scheme: dark; --ink: #0b0b0a; --paper: #e9e3d5; --acid: #d9ff43; --red: #ff493a; }
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--ink); color: var(--paper); }
body { font-family: 'IBM Plex Mono', monospace; overflow-x: hidden; }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 10; opacity: .06; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
header, footer { height: 74px; padding: 0 3vw; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #4c4a43; }
.brand { color: var(--paper); text-decoration: none; font: 24px/0.78 'Archivo Black', sans-serif; letter-spacing: -1.5px; transform: skew(-5deg); display: flex; flex-direction: column; }
.brand span:last-child { color: var(--acid); }
.broadcast { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .16em; }
.broadcast i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 14px var(--red); animation: pulse 1.4s infinite; }
main { padding: 3vw; }
.screen-wrap { position: relative; }
.screen-wrap::before { content: ''; position: absolute; background: var(--acid); width: 18%; height: 16px; left: -3vw; top: 12%; }
.screen { position: relative; aspect-ratio: 16/9; max-height: 74vh; margin: 0 auto; background: #050505; border: 1px solid #5e5b51; overflow: hidden; box-shadow: 14px 14px 0 #22221e; }
video, .screen > img, iframe { display: none; width: 100%; height: 100%; object-fit: contain; border: 0; background: #050505; }
.screen.media-video video, .screen.media-image > img, .screen.media-frame iframe { display: block; }
.idle { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 25px; background: radial-gradient(circle, #22231c 0, #090909 58%); }
.screen.connected .idle { display: none; }
.reticle { width: 75px; height: 75px; border: 1px solid var(--acid); border-radius: 50%; position: relative; animation: spin 6s linear infinite; }
.reticle::before, .reticle::after { content: ''; position: absolute; background: var(--acid); }
.reticle::before { width: 105px; height: 1px; left: -16px; top: 36px; }
.reticle::after { height: 105px; width: 1px; top: -16px; left: 36px; }
.idle p { font-size: 11px; letter-spacing: .2em; animation: flicker 1s infinite; }
button { font: 600 10px 'IBM Plex Mono', monospace; letter-spacing: .13em; color: var(--ink); background: var(--acid); padding: 10px 13px; border: 0; cursor: pointer; }
#retry { display: none; }.idle.failed #retry { display: block; }.idle.failed p { color: var(--red); }
.screen-label, .sound, .fullscreen { position: absolute; z-index: 3; bottom: 14px; }
.screen-label { left: 16px; padding: 6px 8px; color: var(--ink); background: var(--paper); font-size: 9px; letter-spacing: .1em; }
.sound { right: 16px; }
.fullscreen { right: 125px; background: var(--paper); }
.screen:fullscreen { width: 100vw; height: 100vh; max-height: none; aspect-ratio: auto; border: 0; box-shadow: none; }
.screen:fullscreen video { object-fit: contain; }
.manifesto { padding: 7vw 0 6vw; display: grid; grid-template-columns: 1fr 3fr; gap: 3vw; }
.eyebrow { font-size: 10px; letter-spacing: .2em; color: var(--acid); padding-top: 12px; }
h1 { font: 8vw/.82 'Archivo Black', sans-serif; letter-spacing: -.065em; margin: 0; text-transform: uppercase; }
h1 em { color: transparent; -webkit-text-stroke: 2px var(--paper); font-style: normal; }
.details { grid-column: 2; display: flex; justify-content: space-between; gap: 40px; max-width: 900px; font-size: 12px; line-height: 1.6; }
.details > p:first-child { max-width: 520px; }.edition { color: #8d897d; text-align: right; white-space: nowrap; }
footer { border-top: 1px solid #4c4a43; border-bottom: 0; font-size: 9px; letter-spacing: .15em; color: #858176; }
@keyframes pulse { 50% { opacity: .25; } } @keyframes spin { to { transform: rotate(360deg); } } @keyframes flicker { 48% { opacity: 1; } 50% { opacity: .4; } 53% { opacity: 1; } }
@media (max-width: 700px) { header { height: 62px; }.broadcast span { display: none; } main { padding: 18px; }.screen { box-shadow: 7px 7px 0 #22221e; }.screen-label { display: none; }.fullscreen { left: 12px; right: auto; }.sound { right: 12px; }.manifesto { grid-template-columns: 1fr; padding-top: 60px; }.manifesto h1 { font-size: 15vw; }.eyebrow, .details { grid-column: 1; }.details { flex-direction: column; gap: 10px; }.edition { text-align: left; } footer { padding: 0 18px; } footer span:last-child { display: none; } }
