.ds-container {
  background-color: #000;
  color: #c0392b;
  font-family: 'Orbitron', sans-serif;
  padding: 10px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

#ds-canvas {
  border: 3px solid #1a1a1a;
  box-shadow: 0 0 20px rgba(192, 57, 43, 0.2);
}

.ds-msg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.9);
  padding: 2rem;
  border: 2px solid #e74c3c;
  text-align: center;
  z-index: 100;
  display: none;
  min-width: 300px;
}

.ds-status-text {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ds-ui {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  padding: 5px 15px;
  border: 1px solid #c0392b;
  border-radius: 5px;
  color: #c0392b;
  font-weight: bold;
  pointer-events: none;
  z-index: 5;
}

.ds-reset {
  margin-top: 1rem;
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.1rem;
  text-transform: uppercase;
}
