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

body {
  margin: 0;
  font-family: 'Minecraftia', sans-serif;
  background: #000;
  color: white;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}

.container {
  padding: 2rem;
  max-width: 600px;
  margin: auto;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input[type="file"] {
  margin: 0.5rem 0 1rem;
}

#mapPreview {
  margin: 1rem 0;
  width: 288px; /* 72 * 4 for scaling */
  height: 96px; /* 24 * 4 for scaling */
  image-rendering: pixelated;
  border: 2px solid white;
}

button {
  font-family: 'Minecraftia', sans-serif;
  font-size: 16px;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  background-color: #444;
  color: white;
  border: 2px solid white;
  transition: background 0.2s;
}

button:hover {
  background-color: #666;
}

#status {
  margin-top: 1rem;
  font-weight: bold;
}

#status.success {
  color: #00ff00;
}

.usage {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  margin-top: 2rem;
  border: 1px solid white;
  text-align: left;
}

footer {
  margin-top: 2rem;
  font-size: 12px;
  opacity: 0.6;
}

body {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
