body {
  font-family: Arial, sans-serif;
  background: #2c2f33;
  color: white;
  text-align: center;
  margin: 0;
  height: 100vh;

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

.container {
  background: #23272a;
  padding: 40px;
  border-radius: 15px;
  width: 350px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

h1 {
  margin-bottom: 10px;
}

input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  width: 80%;
  margin-top: 10px;
  font-size: 16px;
}

button {
  padding: 12px 18px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  opacity: 0.85;
}

#message {
  margin-top: 15px;
  font-size: 18px;
}

#attempts {
  margin-top: 5px;
  font-size: 14px;
  color: #ccc;
}

#infobtn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #7289da;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #23272a;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  color: white;
}

#closebtn {
  float: right;
  cursor: pointer;
  font-size: 20px;
}