@import url('https://fonts.cdnfonts.com/css/minecraftia');

body {
  margin: 0;
  padding: 0;
  font-family: 'Minecraftia', monospace;
  color: white;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

main {
  margin-top: 20px;
  max-width: 600px;
  width: 90%;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffec;
}

input, button {
  display: block;
  margin: 10px auto;
  font-size: 12px;
  width: 100%;
  max-width: 350px;
}

input[type="file"] {
  padding: 6px;
  border-radius: 6px;
  border: none;
  outline: none;
}

button {
  background: #00ffec;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

button:hover {
  background: #00bbae;
}

#status {
  text-align: center;
  margin-top: 12px;
  min-height: 18px;
  font-weight: bold;
}

#status.success {
  color: #2ecc71;
}

#result img {
  display: block;
  margin: 10px auto;
  background: #222;
  image-rendering: pixelated;
  border: 2px solid #00ffec;
  border-radius: 8px;
  max-width: 100%;
}
