* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background: #0b0d12;
  color: #d7e6ff;
  min-height: 100vh;
}

#hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #12151c;
  border-bottom: 1px solid #2a3140;
}

#timer {
  font-size: 1.4rem;
  color: #6fffb0;
  letter-spacing: 2px;
}

#timer.warning {
  color: #ff5f5f;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  50% { opacity: 0.4; }
}

#inventory {
  display: flex;
  gap: 8px;
}

.item-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #1c2230;
  border: 1px solid #3a4a63;
  border-radius: 4px;
  font-size: 0.9rem;
}

.item-icon-glyph {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.item-icon-keycard .item-icon-glyph {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M2 5h20v14H2V5zm2 3h4v2H4V8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M2 5h20v14H2V5zm2 3h4v2H4V8z'/%3E%3C/svg%3E");
}

.item-icon-fuse .item-icon-glyph {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='9' y='0' width='6' height='4'/%3E%3Crect x='6' y='4' width='12' height='16' rx='4'/%3E%3Crect x='9' y='20' width='6' height='4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='9' y='0' width='6' height='4'/%3E%3Crect x='6' y='4' width='12' height='16' rx='4'/%3E%3Crect x='9' y='20' width='6' height='4'/%3E%3C/svg%3E");
}

.item-icon-access-chip .item-icon-glyph {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='6' width='12' height='12' rx='1'/%3E%3Crect x='0' y='8' width='4' height='2'/%3E%3Crect x='0' y='14' width='4' height='2'/%3E%3Crect x='20' y='8' width='4' height='2'/%3E%3Crect x='20' y='14' width='4' height='2'/%3E%3Crect x='8' y='0' width='2' height='4'/%3E%3Crect x='14' y='0' width='2' height='4'/%3E%3Crect x='8' y='20' width='2' height='4'/%3E%3Crect x='14' y='20' width='2' height='4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='6' width='12' height='12' rx='1'/%3E%3Crect x='0' y='8' width='4' height='2'/%3E%3Crect x='0' y='14' width='4' height='2'/%3E%3Crect x='20' y='8' width='4' height='2'/%3E%3Crect x='20' y='14' width='4' height='2'/%3E%3Crect x='8' y='0' width='2' height='4'/%3E%3Crect x='14' y='0' width='2' height='4'/%3E%3Crect x='8' y='20' width='2' height='4'/%3E%3Crect x='14' y='20' width='2' height='4'/%3E%3C/svg%3E");
}

#hint-btn {
  background: #1c2230;
  color: #d7e6ff;
  border: 1px solid #3a4a63;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

#hint-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

main#game {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px;
  overflow-x: hidden;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

h1 {
  color: #6fffb0;
}

#title-screen {
  position: relative;
  overflow: hidden;
  margin-top: -40px;
  padding: 64px 32px 48px;
  border-radius: 12px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 15%, rgba(111, 255, 176, 0.1), transparent 55%),
    linear-gradient(165deg, #151b28, #0b0d12 75%);
  border: 1px solid #2a3140;
}

#title-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1.6px);
  background-size: 70px 70px, 130px 130px;
  background-position: 0 0, 35px 55px;
  opacity: 0.6;
  pointer-events: none;
}

.title-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.title-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background-color: #6fffb0;
  filter: drop-shadow(0 0 14px rgba(111, 255, 176, 0.55));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c3 3 4 7 4 11 0 3-1 5-4 8-3-3-4-5-4-8 0-4 1-8 4-11z'/%3E%3Cpath d='M6 15l-3 5 5-2z'/%3E%3Cpath d='M18 15l3 5-5-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c3 3 4 7 4 11 0 3-1 5-4 8-3-3-4-5-4-8 0-4 1-8 4-11z'/%3E%3Cpath d='M6 15l-3 5 5-2z'/%3E%3Cpath d='M18 15l3 5-5-2z'/%3E%3C/svg%3E");
}

#title-screen h1 {
  font-size: 2.1rem;
  letter-spacing: 4px;
  margin: 0 0 16px;
  text-shadow: 0 0 20px rgba(111, 255, 176, 0.4);
}

#title-screen p {
  color: #9fb3d1;
  line-height: 1.6;
}

#title-screen .best-time {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  border: 1px solid #3a4a63;
  border-radius: 999px;
  background: #12151c;
  font-size: 0.85rem;
}

#title-screen #start-btn {
  margin-top: 20px;
  padding: 12px 34px;
  font-size: 1.05rem;
  letter-spacing: 1px;
  box-shadow: 0 0 0 rgba(111, 255, 176, 0);
  transition: box-shadow 0.3s, transform 0.2s;
}

#title-screen #start-btn:hover {
  box-shadow: 0 0 22px rgba(111, 255, 176, 0.55);
  transform: translateY(-1px);
}

.outcome-screen {
  position: relative;
  overflow: hidden;
  margin-top: -40px;
  padding: 64px 32px 48px;
  border-radius: 12px;
  text-align: center;
}

.outcome-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 1px, transparent 1.6px);
  background-size: 70px 70px, 130px 130px;
  background-position: 0 0, 35px 55px;
  opacity: 0.5;
  pointer-events: none;
}

.outcome-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.outcome-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.outcome-screen p {
  color: #9fb3d1;
  line-height: 1.6;
}

.outcome-win {
  background:
    radial-gradient(circle at 30% 15%, rgba(111, 255, 176, 0.1), transparent 55%),
    linear-gradient(165deg, #151b28, #0b0d12 75%);
  border: 1px solid #2a3140;
}

.outcome-win h1 {
  text-shadow: 0 0 20px rgba(111, 255, 176, 0.4);
}

.outcome-win .outcome-icon {
  background-color: #6fffb0;
  filter: drop-shadow(0 0 14px rgba(111, 255, 176, 0.55));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c3 3 4 7 4 11 0 3-1 5-4 8-3-3-4-5-4-8 0-4 1-8 4-11z'/%3E%3Cpath d='M6 15l-3 5 5-2z'/%3E%3Cpath d='M18 15l3 5-5-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c3 3 4 7 4 11 0 3-1 5-4 8-3-3-4-5-4-8 0-4 1-8 4-11z'/%3E%3Cpath d='M6 15l-3 5 5-2z'/%3E%3Cpath d='M18 15l3 5-5-2z'/%3E%3C/svg%3E");
  animation: rocketLaunch 1.1s ease-out;
  z-index: 1;
}

.outcome-win .outcome-icon::after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 255, 176, 0.4), transparent 65%);
  animation: launchBurst 0.9s ease-out;
  z-index: -1;
}

@keyframes rocketLaunch {
  0% {
    transform: translateY(36px) scale(0.55);
    opacity: 0;
  }
  55% {
    transform: translateY(-6px) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes launchBurst {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  35% {
    opacity: 0.85;
    transform: scale(1.3);
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

#final-time {
  color: #6fffb0;
}

#win-screen #restart-btn {
  margin-top: 16px;
  margin-left: 0;
  padding: 12px 34px;
  font-size: 1.05rem;
}

.outcome-lose {
  background:
    radial-gradient(circle at 30% 15%, rgba(255, 95, 95, 0.12), transparent 55%),
    linear-gradient(165deg, #241318, #0b0d12 75%);
  border: 1px solid #4a2a2a;
}

.outcome-lose h1 {
  color: #ff5f5f;
  text-shadow: 0 0 20px rgba(255, 95, 95, 0.4);
}

.outcome-lose .outcome-icon {
  background-color: #ff5f5f;
  filter: drop-shadow(0 0 14px rgba(255, 95, 95, 0.55));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 2 23 21H1L12 2zm-.75 6v6h1.5V8h-1.5zm.05 8v1.4h1.4V16h-1.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 2 23 21H1L12 2zm-.75 6v6h1.5V8h-1.5zm.05 8v1.4h1.4V16h-1.4z'/%3E%3C/svg%3E");
}

button#restart-btn-lose {
  margin-top: 16px;
  padding: 12px 34px;
  font-size: 1.05rem;
  background: #ff5f5f;
  color: #1a0d0d;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}

button#restart-btn-lose:hover {
  box-shadow: 0 0 22px rgba(255, 95, 95, 0.55);
  transform: translateY(-1px);
}

.room-desc {
  color: #9fb3d1;
  line-height: 1.5;
}

.hotspots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.hotspot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 96px;
  padding: 14px 18px;
  background: #12151c;
  border: 1px solid #3a4a63;
  border-radius: 6px;
  color: #d7e6ff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.hotspot::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: currentColor;
  opacity: 0.85;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.hotspot.decorative {
  cursor: default;
}

#vent::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='2' width='6' height='6'/%3E%3Crect x='9' y='2' width='6' height='6'/%3E%3Crect x='16' y='2' width='6' height='6'/%3E%3Crect x='2' y='9' width='6' height='6'/%3E%3Crect x='9' y='9' width='6' height='6'/%3E%3Crect x='16' y='9' width='6' height='6'/%3E%3Crect x='2' y='16' width='6' height='6'/%3E%3Crect x='9' y='16' width='6' height='6'/%3E%3Crect x='16' y='16' width='6' height='6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='2' width='6' height='6'/%3E%3Crect x='9' y='2' width='6' height='6'/%3E%3Crect x='16' y='2' width='6' height='6'/%3E%3Crect x='2' y='9' width='6' height='6'/%3E%3Crect x='9' y='9' width='6' height='6'/%3E%3Crect x='16' y='9' width='6' height='6'/%3E%3Crect x='2' y='16' width='6' height='6'/%3E%3Crect x='9' y='16' width='6' height='6'/%3E%3Crect x='16' y='16' width='6' height='6'/%3E%3C/svg%3E");
}

#terminal::before,
#riddle-monitor::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='3' width='20' height='14' rx='1'/%3E%3Crect x='9' y='19' width='6' height='2'/%3E%3Crect x='7' y='17' width='10' height='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='3' width='20' height='14' rx='1'/%3E%3Crect x='9' y='19' width='6' height='2'/%3E%3Crect x='7' y='17' width='10' height='2'/%3E%3C/svg%3E");
}

.door::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M4 2h16v20H4V2zm10 9a1.4 1.4 0 100 2.8 1.4 1.4 0 000-2.8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M4 2h16v20H4V2zm10 9a1.4 1.4 0 100 2.8 1.4 1.4 0 000-2.8z'/%3E%3C/svg%3E");
}

#toolbox::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='9' width='20' height='12' rx='2'/%3E%3Crect x='8' y='4' width='8' height='6' rx='2'/%3E%3Crect x='0' y='13' width='24' height='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='9' width='20' height='12' rx='2'/%3E%3Crect x='8' y='4' width='8' height='6' rx='2'/%3E%3Crect x='0' y='13' width='24' height='3'/%3E%3C/svg%3E");
}

.container::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='4' width='20' height='6' rx='1'/%3E%3Crect x='2' y='12' width='20' height='9' rx='1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='4' width='20' height='6' rx='1'/%3E%3Crect x='2' y='12' width='20' height='9' rx='1'/%3E%3C/svg%3E");
}

#console-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M2 6h20v14H2V6zm4 3a1.6 1.6 0 100 3.2A1.6 1.6 0 006 9zm6 0a1.6 1.6 0 100 3.2A1.6 1.6 0 0012 9zm6 0a1.6 1.6 0 100 3.2A1.6 1.6 0 0018 9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M2 6h20v14H2V6zm4 3a1.6 1.6 0 100 3.2A1.6 1.6 0 006 9zm6 0a1.6 1.6 0 100 3.2A1.6 1.6 0 0012 9zm6 0a1.6 1.6 0 100 3.2A1.6 1.6 0 0018 9z'/%3E%3C/svg%3E");
  width: 48px;
  height: 48px;
}

.hotspot:hover:not(:disabled) {
  background: #1c2230;
  border-color: #6fffb0;
}

.hotspot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.hotspot.solved {
  border-color: #6fffb0;
  color: #6fffb0;
}

.puzzle {
  margin-top: 16px;
  padding: 16px;
  background: #12151c;
  border: 1px solid #3a4a63;
  border-radius: 6px;
}

.puzzle.hidden {
  display: none;
}

.cipher-text {
  color: #ffd76f;
}

#terminal-input {
  padding: 8px;
  background: #0b0d12;
  border: 1px solid #3a4a63;
  color: #d7e6ff;
  font-family: inherit;
  width: 140px;
}

button#terminal-submit,
button#start-btn,
button#restart-btn {
  padding: 8px 16px;
  background: #6fffb0;
  color: #0b0d12;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 8px;
}

.feedback {
  min-height: 1.2em;
  color: #ff5f5f;
}

.feedback.success {
  color: #6fffb0;
}

@keyframes shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

.shake {
  animation: shake 0.4s ease;
  border-color: #ff5f5f !important;
}

@keyframes screenShake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(3px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-6px, 0, 0); }
  40%, 60% { transform: translate3d(6px, 0, 0); }
}

.screen-shake {
  animation: screenShake 0.4s ease;
}

@keyframes pulseSolved {
  0% { box-shadow: 0 0 0 rgba(111, 255, 176, 0.6); }
  40% { box-shadow: 0 0 18px rgba(111, 255, 176, 0.7); }
  100% { box-shadow: 0 0 0 rgba(111, 255, 176, 0); }
}

.pulse-solved {
  animation: pulseSolved 0.6s ease;
}

.best-time {
  color: #9fb3d1;
}

.breakers {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.breaker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #1c2230;
  border: 1px solid #3a4a63;
  border-radius: 4px;
  color: #d7e6ff;
  cursor: pointer;
  font-family: inherit;
}

.breaker::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: currentColor;
  opacity: 0.7;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 4 14h6l-1 8 9-12h-6l1-8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 4 14h6l-1 8 9-12h-6l1-8z'/%3E%3C/svg%3E");
}

.breaker[data-state="on"] {
  border-color: #6fffb0;
  color: #6fffb0;
}

.breaker[data-state="on"]::before {
  opacity: 1;
}

.breaker:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#breaker-submit {
  padding: 8px 16px;
  background: #6fffb0;
  color: #0b0d12;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

#breaker-submit:disabled {
  background: #3a4a63;
  color: #7d8aa0;
  cursor: not-allowed;
}

#room-2 {
  transition: filter 0.6s ease;
  filter: brightness(0.75);
}

#room-2.room-lit {
  filter: brightness(1);
}

.containers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

#riddle-input,
#final-input {
  padding: 8px;
  background: #0b0d12;
  border: 1px solid #3a4a63;
  color: #d7e6ff;
  font-family: inherit;
  width: 140px;
}

button#riddle-submit,
button#final-submit {
  padding: 8px 16px;
  background: #6fffb0;
  color: #0b0d12;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 8px;
}

button#riddle-submit:disabled,
button#final-submit:disabled {
  background: #3a4a63;
  color: #7d8aa0;
  cursor: not-allowed;
}

.scene {
  border-radius: 10px;
  padding: 20px 16px 16px;
}

.scene-pod {
  background: linear-gradient(160deg, #16202c, #0d1119);
  border: 1px solid #2a3140;
}

.scene-engineering {
  background: linear-gradient(160deg, #241a14, #14100d);
  border: 1px solid #3a2a1c;
}

.scene-server {
  background: linear-gradient(160deg, #10221c, #0c1512);
  border: 1px solid #204a3a;
}

.scene-bridge {
  background: linear-gradient(160deg, #1a1428, #0f0c18);
  border: 1px solid #3a2a5c;
  display: flex;
  justify-content: center;
  margin: 24px 0;
}
