html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #87ceeb 0%, #e0f7fa 100%);
  font-family: "Press Start 2P", sans-serif;
  height: 100vh;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(44, 62, 80, 0.9);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  color: #2c3e50;
}

.login-container h2 {
  font-size: 24px;
  color: #e74c3c;
  margin-bottom: 20px;
}

.login-container label {
  display: block;
  font-size: 12px;
  margin: 10px 0 5px;
}

.login-container input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #2c3e50;
  border-radius: 5px;
  font-family: "Press Start 2P", sans-serif;
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #2c3e50;
}

.login-container button {
  width: 100%;
  padding: 10px;
  background-color: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: "Press Start 2P", sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-container button:hover {
  background-color: #c0392b;
}

#game-link {
  margin-top: 20px;
}

#game-link p {
  font-size: 12px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.game-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e74c3c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 12px;
  transition: background-color 0.3s ease;
}

.game-button:hover {
  background-color: #c0392b;
}

.export-button {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background-color: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: "Press Start 2P", sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.export-button:hover {
  background-color: #34495e;
}
