body {
  background: #000;
  color: white;
  text-align: center;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 40px 0;
}

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

.studio {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.pad {
  background: #111;
  border: 2px solid #333;
  border-radius: 15px;
  color: white;
  font-size: 1.1em;
  padding: 30px;
  transition: all 0.2s;
  box-shadow: 0 0 10px #111;
}

.pad:active {
  background: #0f0;
  box-shadow: 0 0 20px #0f0;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.controls button {
  background: #222;
  border: 2px solid #444;
  border-radius: 10px;
  color: white;
  font-size: 1.1em;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.2s;
}

.controls button:hover {
  background: #0f0;
  color: #000;
}