* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background: radial-gradient(circle at top, #1f2937, #020617);
  color: white;
}

.container {
  text-align: center;
}

.title {
  font-size: 42px;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Main card */
.card {
  width: 360px;
  padding: 25px;
  border-radius: 20px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.15);

  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Letters hive */
#letters {
  font-size: 26px;
  letter-spacing: 6px;
  margin-bottom: 10px;
  color: #facc15;
  font-weight: bold;
}

/* Center letter */
.center {
  margin-bottom: 15px;
  font-size: 16px;
}

#centerLetter {
  color: #ef4444;
  font-size: 22px;
  font-weight: bold;
}

/* Input */
input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;

  font-size: 16px;
  text-align: center;

  margin-bottom: 10px;
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;

  cursor: pointer;
  font-size: 16px;
  font-weight: bold;

  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;

  transition: 0.25s;
}

button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #22c55e, #3b82f6);
}

/* Score */
.score {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

/* Found words list */
#foundWords {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}
