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

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  gap: 20px;
}

.middle-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ouch-btn {
  width: 180px;
  height: 180px;
  border: none;
  border-radius: 50%;
  background: red;
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
}

.dir-btn {
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 16px;
  background: #333;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.mode-btn {
  margin-top: 80px;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: #0066cc;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

#status-text {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

.debug-container {
  display: none;
}
body.dev-mode .debug-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding-bottom: 20px;
}

.debug-block {
  margin-top: 10px;
  width: 320px;
}

.debug-title {
  font-size: 13px;
  font-weight: bold;
  color: #444;
  margin-bottom: 4px;
}

.debug-panel {
  height: 80px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background: #fafafa;
  padding: 6px;
  font-size: 10px;
  opacity:0.8;
  white-space: pre-wrap;
}