.shop-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  padding: 16px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.1);
}

.shop-item:last-child {
  margin-bottom: 0 !important;
}

.shop-item h3 {
  margin: 0 0 4px 0;
  font-size: 1em;
}

.shop-item p {
  margin: 0;
  font-size: 0.7em;
  opacity: 0.8;
}

.shop-item button {
  background-color: hsl(192.22221, 95%, 10%);
  border: 2px solid hsl(192.22221, 95%, 67%);
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;
}

.shop-panel, .stats-panel {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 1px;
}

button {
  color: hsl(0, 0%, 95%);
}

.buttons {
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#click-button {
  background: hsl(150, 100%, 0%);
  border: none;
  cursor: pointer;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  height: 200px;
  transition: all 0.3s ease;
  border: 2px solid hsl(192.22221, 95%, 27%);
}

#reset {
  background: hsl(150, 100%, 0%);
  border: none;
  cursor: pointer;
  border-radius: 4px;
  width: 200px;
  transition: all 0.3s ease;
  padding: 10px;
}

#reset:hover {
  background: hsl(0, 0%, 10%);
}

#click-button:hover {
  background: hsl(0, 0%, 10%);
}

.game-layout {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  padding: 20px;
  align-items: start;
}

.game-area {
  text-align: center;
}

body {
  background: hsl(150, 100%, 0%);
  color: hsl(0, 0%, 95%);
}

.stats-panel h2 {
  margin: 10px 0 10px 0;
}

.stats-panel p {
  margin: 0 5px;
}

ul * {
  text-decoration: none;
}
