/* * GAME: INFORMATIONAL SOCIAL INFLUENCE – BIO-LAB v2.3 (TARGET MONITOR ADDED) * THEME: RESIDENT EVIL SAVE ROOM / RETRO-TECH * ARCHITECTURE: SANDBOXED IFRAME (EVENT LISTENER VERSION) */ (function() { const wrapper = document.getElementById(‘game-wrapper’); if (!wrapper) return; wrapper.innerHTML = ”; const gameSource = `

SOP: Serum-9

Standard Operating Procedure
STEP 1: BASE
Inject 1 unit of GREEN Herb into the chamber.
STEP 2: CATALYST
Inject 1 unit of RED Herb. Mixture will appear dark/murky.
STEP 3: REACTION
Use HEAT and AGITATE functions repeatedly.

GOAL: Match the TARGET MONITOR exactly. Mixture must be Vibrant Orange.
STEP 4: STABILIZATION
WARNING: Visual confirmation is not enough.

Once Orange, immediately inject BLUE Herb to stabilize before exporting.
STEP 5: FINISH
Press EXPORT COMPOUND.
Target Data
Specimen 009
STATUS: IDLE
GRN
RED
BLU
`; const iframe = document.createElement(‘iframe’); iframe.style.width = ‘100%’; iframe.style.height = ‘850px’; iframe.style.border = ‘none’; wrapper.appendChild(iframe); const doc = iframe.contentWindow.document; doc.open(); doc.write(gameSource); doc.close(); })();