.lbody {
  background: linear-gradient(135deg, #2e2e2e, #121212);
  font-family: 'Share Tech Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.stopwatch-octagon {
  background: linear-gradient(#ccc, #888);
  clip-path: polygon(
    30% 0%, 70% 0%,
    100% 30%, 100% 70%,
    70% 100%, 30% 100%,
    0% 70%, 0% 30%
  );
  padding: 40px;
  box-shadow: 5px 5px 15px #000 inset, -5px -5px 15px #333 inset;
  border: 4px solid #0f0;
  border-radius: 10px;
}

.time-display {
  font-size: 3rem;
  color: #0f0;
  text-shadow: 0 0 8px #0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.time-box {
  border: 2px solid #0f0;
  border-radius: 6px;
  padding: 10px 15px;
  margin: 0 3px;
  background-color: #1b1b1b;
  box-shadow: inset 2px 2px 6px #444, inset -2px -2px 6px #000;
}

.controls {
  text-align: center;
}

.controls button {
  background-color: #1b1b1b;
  color: #0f0;
  border: 2px solid #0f0;
  font-size: 1.2rem;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 5px #0f0;
  transition: 0.2s;
}

.controls button:hover {
  background-color: #0f0;
  color: #000;
}