.Solitaire {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 10px 0 20px;
  background: linear-gradient(180deg, #0b3d1e 0%, #0e4523 40%, #0a3318 100%);
  font-family: "Georgia", serif;
}
.Solitaire-Status {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
  padding: 0 8px;
  color: #d4c9a8;
}
.Solitaire-Title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffd700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.Solitaire-Stat {
  padding: 3px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
.Solitaire-Controls {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.Solitaire-Button {
  padding: 7px 16px;
  border: none;
  border-radius: 6px;
  font-family: "Georgia", serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.Solitaire-Button[data-variant=undo] {
  background: #5a7d6a;
  color: #fff;
}
.Solitaire-Button[data-variant=undo][data-disabled] {
  background: #3a5a4a;
  color: #7a9a8a;
}
.Solitaire-Button[data-variant=new] {
  background: #c9953c;
  color: #1a1a2e;
}
.Solitaire-Canvas {
  border-radius: 8px;
  touch-action: none;
  cursor: pointer;
}
.Solitaire-Canvas[data-dragging] {
  cursor: grabbing;
}
.Solitaire-Hint {
  margin-top: 6px;
  padding: 0 16px;
  font-size: 11px;
  text-align: center;
  color: #6a8a6a;
}