body {
  background: #0D1117;
  color: #C9D1D9;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 700px;
  width: 100%;
}

h1 {
  font-size: 2em;
  margin-bottom: 0.2em;
}

p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
}

textarea {
  width: 100%;
  background: #161B22;
  color: #C9D1D9;
  border: 1px solid #30363D;
  border-radius: 8px;
  padding: 1em;
  font-family: monospace;
  margin-bottom: 1em;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1em;
}

select, input[type="checkbox"] {
  background: #0D1117;
  color: #C9D1D9;
  border: 1px solid #30363D;
  border-radius: 6px;
  padding: 0.5em;
}

label {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

button {
  background-color: #2ea44f;
  color: white;
  font-weight: bold;
  padding: 0.6em 1.2em;
  margin: 0.5em;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #22863a;
  transform: scale(1.05);
}

canvas {
  margin-top: 1em;
  border: 1px solid #C9D1D9;
  background: #161B22;
}
