body {
  background: #f4f4f4;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  font-family: 'Arial', sans-serif;
}

.calculator {
  background: #222;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.display {
  background: #000;
  color: #0f0;
  font-size: 2em;
  text-align: right;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  min-height: 50px;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.btn {
  padding: 20px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  background: #444;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: #555;
}

.zero {
  grid-column: span 2;
}
