body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #74ebd5, #acb6e5);
  margin: 0;
  padding: 40px;
  color: #222;
  text-align: center;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#person-image {
  width: 220px;
  height: auto;
  border-radius: 10px;
  border: 4px solid white;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.input-area {
  position: relative;
  width: 300px;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  margin-top: 10px;
  padding: 10px 16px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#guesses-left {
  margin-top: 10px;
  font-weight: bold;
}

#result-message {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
}

#bonus-btn {
  margin-top: 20px;
}

.dropdown {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  max-height: 120px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown li {
  padding: 8px;
  cursor: pointer;
}

.dropdown li:hover {
  background-color: #eee;
}

.hidden {
  display: none;
}
