@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Syne+Mono&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { min-height: 100vh; background: #0c0a08; font-family: 'Syne Mono', monospace; color: #c8a84b; user-select: none; }
#eb-app { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; position: relative; }
#eb-panel { max-width: 360px; width: 100%; background: #1a1610; border: 2px solid #3a3020; border-radius: 12px; padding: 20px; }
#eb-display { font-family: 'Bungee', cursive; font-size: 2rem; text-align: center; color: #f0d880; margin-bottom: 16px; }
#eb-doors { height: 160px; background: #0a0806; border: 1px solid #3a3020; margin-bottom: 12px; position: relative; overflow: hidden; }
#eb-scene { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
#eb-scene.hostile { background: rgba(80,0,0,0.3); }
#eb-scene .silhouette { width: 40px; height: 100px; background: #000; border-radius: 20px 20px 0 0; }
#eb-timer {
  position: absolute; top: 8px; right: 10px; z-index: 2;
  font-family: 'Bungee', cursive; font-size: 1.1rem; color: #ff6680;
}
#eb-timer[hidden] { display: none; }
#eb-buttons { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 12px; }
.eb-btn { padding: 14px; font-family: 'Bungee', cursive; font-size: 0.95rem; background: #2a2010; border: 1px solid #5a4830; color: #f0d880; border-radius: 6px; cursor: pointer; }
.eb-btn:disabled { opacity: 0.35; cursor: not-allowed; }
#eb-close { width: 100%; padding: 16px; font-family: 'Bungee', cursive; background: #4a1010; border: 2px solid #c41e3a; color: #fff; border-radius: 6px; cursor: pointer; animation: eb-blink 0.4s infinite alternate; }
#eb-close[hidden] { display: none; }
.eb-hint { font-size: 0.72rem; opacity: 0.65; max-width: 360px; line-height: 1.5; margin: -8px auto 18px; }
@keyframes eb-blink { from { opacity: 1; } to { opacity: 0.7; } }
.eb-screen { position: fixed; inset: 0; z-index: 20; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; background: rgba(6,4,2,0.96); }
.eb-screen.active { display: flex; }
.eb-credit { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; opacity: 0.7; margin-bottom: 12px; }
h1 { font-family: 'Bungee', cursive; font-size: clamp(1.3rem, 4vw, 2rem); color: #f0d880; margin-bottom: 12px; }
.eb-tagline { font-size: 0.85rem; margin-bottom: 20px; }
button { font-family: 'Syne Mono', monospace; font-size: 0.75rem; padding: 12px 28px; color: #fff; background: #2a1018; border: 1px solid rgba(200,168,75,0.4); border-radius: 6px; cursor: pointer; }
.eb-exit { position: fixed; bottom: 12px; right: 14px; font-size: 0.7rem; color: rgba(200,168,75,0.6); text-decoration: none; }
