/* Game-specific fonts (the trading-terminal look stays unique to this game) */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Bebas+Neue&display=swap');
/* Game-specific dark terminal background + CRT scanline. Reset, header,
   overlays, ad slots, push bar and the game-over/CPA card now all come from
   site.css + game-shell.css. */
body.sg-game{background:#080810;}
#game-wrap{background:#080810;}
body::after{content:'';position:fixed;inset:0;pointer-events:none;z-index:997;background:repeating-linear-gradient(0deg,transparent,transparent 3px,rgba(0,0,0,.08) 3px,rgba(0,0,0,.08) 4px);}

/* Mute button — pinned top-right, clear of the header on the left. */
#ctrl-bar{position:fixed;top:60px;right:10px;z-index:500;display:flex;gap:6px;}
.ctrl-btn{width:34px;height:34px;background:#0d1a0d;border:1px solid #1a3a1a;color:#5aaa5a;font-size:17px;cursor:pointer;border-radius:4px;display:flex;align-items:center;justify-content:center;}
.ctrl-btn:hover{background:#1a3a1a;color:#00ff66;}

/* IRS AUDIT — game-specific choice modal (reuses the shared .overlay base). */
#irs-overlay{background:rgba(4,4,8,.97);border-top:3px solid #ffdd00;}
.irs-inner{text-align:center;max-width:380px;padding:28px 24px;}
.irs-title{font-family:'Bebas Neue';font-size:44px;color:#ffdd00;letter-spacing:3px;margin-bottom:4px;}
.irs-body{font-size:12px;color:#aaaa66;line-height:1.7;margin-bottom:12px;}
.irs-cd{font-family:'Bebas Neue';font-size:52px;color:#ff2244;margin-bottom:14px;}
.irs-choices{display:flex;gap:12px;justify-content:center;}
.irs-btn{flex:1;max-width:160px;padding:12px 8px;border:none;font-family:'Share Tech Mono',monospace;font-size:12px;letter-spacing:1px;cursor:pointer;line-height:1.5;}
.irs-pay{background:#ffdd00;color:#080810;}
.irs-fight{background:#333;color:#ffaa00;border:1px solid #ffaa0066;}
/* EASTER EGG TOAST — fixed position, slides up from bottom, never touches game-wrap */
#egg-toast{position:fixed;left:50%;transform:translateX(-50%);bottom:-90px;z-index:250;text-align:center;pointer-events:none;transition:bottom 0.32s ease;}
#egg-toast.show{bottom:160px;}
.egg-inner{background:#080810ee;border:2px solid #ffdd00;padding:8px 18px;white-space:nowrap;}
.egg-title{font-family:'Bebas Neue';font-size:26px;color:#ffdd00;letter-spacing:2px;}
.egg-sub{font-size:11px;color:#aaaa66;letter-spacing:1px;}