body {
  background: #050505;
  color: #a0fbff;
  font-family: 'Courier New', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.mist-interface {
  border: 2px solid #222;
  padding: 30px;
  background: rgba(10, 10, 15, 0.9);
  box-shadow: 0 0 50px #003344;
  border-radius: 15px;
}

.pump-bar {
  width: 200px;
  height: 12px;
  background: #111;
  border-radius: 6px;
  overflow: hidden;
  margin: 10px 0;
  border: 1px solid #333;
}

.leak-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #fff, #7df9ff);
  box-shadow: 0 0 15px #7df9ff;
  transition: width 0.5s ease-in-out;
}

.release-trigger {
  background: transparent;
  color: #7df9ff;
  border: 1px solid #7df9ff;
  padding: 15px 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.release-trigger:hover {
  background: #7df9ff;
  color: #000;
  box-shadow: 0 0 20px #7df9ff;
}