/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page background */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #74ebd5, #9face6);
  font-family: Arial, sans-serif;
  padding: 15px;
}

/* Game container */
.container {
  background-color: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Heading */
h1 {
  color: #333;
  margin-bottom: 10px;
  font-size: 22px;
}

/* Info text */
.info {
  color: #555;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Input */
input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  margin-bottom: 12px;
}

input:focus {
  border-color: #6c63ff;
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  background-color: #6c63ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background-color: #5848e5;
  transform: scale(1.03);
}

/* Message */
#message {
  margin-top: 18px;
  font-weight: bold;
  font-size: 15px;
}

/* Attempts */
#attempts {
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}

/* 📱 Extra small devices */
@media (max-width: 400px) {
  h1 {
    font-size: 20px;
  }

  .container {
    padding: 20px;
  }
}