    .hangman-game-wrapper {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
      text-align: center;
	  color: #558DDC;
    }
    #wordDisplay img {
      max-width: 40px;
      max-height: 40px;
      margin: 2px;
      vertical-align: middle;
    }
    #triesDisplay img {
      max-height: 40px;
      margin: 0 2px;
    }
    #usedLetters {
      margin-top: 10px;
      font-weight: bold;
    }
    .keyboard {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
    .key-button {
      padding: 10px 14px;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      background: #fff;
      color: #333;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
      cursor: pointer;
      transition: background 0.3s;
    }
    .key-button:hover {
      background: #ddd;
    }
    .hidden-button {
      display: none;
    }
    .solve-container {
      margin-top: 20px;
    }
    .solve-container input {
      padding: 8px;
      width: 60%;
      max-width: 300px;
    }
    .solve-container button {
      padding: 8px 12px;
      margin-left: 8px;
      font-weight: bold;
      background: #ff4ff0;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    @media (max-width: 480px) {
      #wordDisplay img {
        width: 30px;
        height: 30px;
      }
    }