body {
  background-color: #0d0d0d;
  color: #00ff41;
  font-family: "Courier New", monospace;
  overflow-x: hidden;
}

#brewBtn {
  position: absolute;
  width: 120px;
  height: 45px;
  background: #00ff41;
  color: #000;
  border: none;
  font-weight: bold;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition:
    left 0.1s ease-out,
    top 0.1s ease-out;
}

input {
  width: 100%;
  background: #000;
  border: 1px solid #00ff41;
  color: #00ff41;
  padding: 10px;
  box-sizing: border-box;
}

#terminal {
  margin-top: 20px;
  font-size: 0.9em;
  border-top: 1px solid #333;
  padding-top: 10px;
}

/* Add this to style.css */
#uncentered-mess {
  transition:
    transform 0.3s ease,
    width 0.3s ease; /* Smooth shrinking */
}

/* The Progress Bar Container */
#loading-container {
  width: 100%;
  height: 10px;
  background: #222;
  margin-top: 10px;
  display: none; /* Hidden by default */
}

#progress-bar {
  width: 0%;
  height: 10px;
  background: #00ff41;
  transition: width 4s ease-in;
}

/* The Steam Animation */
.steam {
  font-size: 30px;
  position: absolute;
  top: -40px;
  right: 20px;
  opacity: 0;
  animation: rise 2s infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}

/* Update these lines in style.css */
#uncentered-mess {
  position: relative;
  margin: 40px auto;
  width: 90%;
  max-width: 450px;
  padding: 30px;
  border: 3px double #00ff41;
  background: #1a1a1a;
  transform: rotate(-1.5deg);
  transition: transform 0.1s ease-out;
}

/* Ensure the arena stays visible on small screens */
#arena {
  height: 200px;
  width: 100%;
  margin: 20px 0;
  border: 1px dashed #333;
  position: relative;
}

#touch-guard {
  position: absolute;
  width: 120px; /* Wider than the button */
  height: 80px; /* Taller than the button */
  background: transparent; /* Invisible but deadly */
  z-index: 10; /* Sits above the button */
  cursor: crosshair;
}

/* Make text readable-ish on mobile */
h1 {
  font-size: 1.5rem;
}
p {
  font-size: 0.9rem;
}
