body {
  margin: 0;
  padding: 0;
  font-family: 'Press Start 2P', monospace;
  color: white;
  min-height: 100vh;

  background-image: url('../img/background.png');
  background-repeat: repeat;
  background-size: cover;        /* Stretch to fit */
  background-position: center;
  background-color: #1e1e1e;     /* Fallback background color */

  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  background-color: #2b2b2b;
  padding: 2rem;
  border: 4px solid #444;
  box-shadow: 0 0 20px #000;
  border-radius: 10px;
}

.logo {
  max-width: 35vw;
  width: 80%;
  margin-bottom: 2rem;
}

.server-box {
  margin-bottom: 1.5rem;
}

.server-box label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

#server-ip {
  background-color: black;
  color: white;
  border: 2px solid gray;
  padding: 0.6rem;
  font-size: 12px;
  width: 20vw;
  text-align: center;
  font-family: 'Press Start 2P', monospace;
}

.minecraft-button {
  background-color: #aaa;
  border: 2px solid #888;
  color: black;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px #666;
  transition: all 0.1s ease-in-out;
}

.minecraft-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px #666;
}

.copied-msg {
  margin-bottom: 1rem;
  color: limegreen;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #222;
  color: #0f0;
  padding: 10px 20px;
  border: 2px solid #0f0;
  font-size: 12px;
  font-family: 'Press Start 2P', monospace;
  z-index: 9999;
  opacity: 0;
  transform: translateX(150%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 0 10px #0f0;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
