.main-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 20px;
}

.stats-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  width: fit-content;
}

.game-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

canvas {
  cursor: default;
}

.stats-panel {
  background: #2a2a2a;
  border: 2px solid #4caf50;
  border-radius: 8px;
  padding: 20px;
  min-width: 200px;
  color: #fff;
  font-family: monospace;
}

.stats-panel h2 {
  margin: 0 0 15px;
  color: #4caf50;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #444;
}

.stat-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.stat-label {
  color: #888;
  font-weight: bold;
}

.stat-value {
  color: #4caf50;
  font-weight: bold;
  font-size: 14px;
}

.seed-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #444;
}

#seed-input {
  padding: 8px;
  background: #1a1a1a;
  border: 1px solid #4caf50;
  border-radius: 4px;
  color: #fff;
  font-family: monospace;
  font-size: 14px;
}

#seed-input::placeholder {
  color: #666;
}

#seed-input:focus {
  outline: none;
  border-color: #52ca56;
  box-shadow: 0 0 5px #4caf504d;
}

#apply-seed-btn, #random-seed-btn {
  padding: 8px 12px;
  background: #4caf50;
  border: none;
  border-radius: 4px;
  color: #1a1a1a;
  font-weight: bold;
  font-family: monospace;
  cursor: pointer;
  transition: background .2s;
}

#apply-seed-btn:hover, #random-seed-btn:hover {
  background: #52ca56;
}

#apply-seed-btn:active, #random-seed-btn:active {
  background: #45a049;
}
