* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Courier New', monospace;
  background: #1a1a2e;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#settings {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #16213e;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}

.setting-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.setting-label {
  color: #a0a0b0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.setting-options {
  display: flex;
}

.setting-option {
  background: none;
  border: 1px solid #333;
  color: #666;
  padding: 5px 12px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  border-radius: 4px;
}

.setting-option.active {
  background: #0f3460;
  color: #e0e0e0;
  border-color: #53d8fb;
}

#letters-display {
  display: flex;
  gap: 12px;
  margin-top: 30vh;
  margin-bottom: 40px;
}

.letter-tile {
  width: 64px;
  height: 64px;
  background: #0f3460;
  border: 2px solid #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Century Gothic', Futura, Helvetica, Verdana, sans-serif;
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
}

#solutions {
  text-align: left;
  min-height: 200px;
}

#solutions h3 {
  color: #a0a0b0;
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#solutions .word {
  font-family: 'Century Gothic', Futura, Helvetica, Verdana, sans-serif;
  font-size: 22px;
  margin: 6px 0;
  color: #53d8fb;
}

#prompt {
  position: fixed;
  bottom: 30px;
  color: #555;
  font-size: 14px;
  letter-spacing: 1px;
}
