/* src/styles/mosher.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #fff;
  overflow: hidden;
  background: #000;
  width: 100vw;
  height: 100vh;
  font-family: JetBrains Mono, Fira Code, Cascadia Code, monospace;
}

#canvas-container {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#canvas-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

#start-overlay {
  position: fixed;
  z-index: 100;
  display: flex;
  backdrop-filter: blur(20px);
  background: #000000eb;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#start-overlay h1 {
  letter-spacing: .5em;
  text-transform: uppercase;
  color: #f0f;
  text-shadow: 0 0 30px #f0f6;
  margin-bottom: .5rem;
  font-size: 3rem;
  font-weight: 300;
}

#start-overlay p {
  color: #666;
  letter-spacing: .2em;
  margin-bottom: 3rem;
  font-size: .85rem;
}

#start-btn {
  color: #f0f;
  letter-spacing: .3em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: 1px solid #f0f;
  padding: 1rem 3rem;
  transition: all .3s;
  font-family: inherit;
  font-size: 1rem;
}

#start-btn:hover {
  background: #ff00ff1a;
  box-shadow: 0 0 30px #f0f3;
}

#start-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
}

#transport {
  position: fixed;
  z-index: 50;
  display: flex;
  opacity: 0;
  background: linear-gradient(#0000, #000000d9);
  align-items:  center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  transition: opacity .3s;
  bottom: 0;
  left: 0;
}

#transport.visible {
  opacity: 1;
}

#transport:hover {
  opacity: 1 !important;
}

#play-btn {
  color: #f0f;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: 1px solid #ff00ff80;
  min-width: 5.5rem;
  padding: .4rem 1rem;
  transition: all .2s;
  font-family: inherit;
  font-size: .75rem;
}

#play-btn:hover {
  background: #ff00ff1a;
}

#seek-bar {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  background: #222;
  flex: 1;
  height: 3px;
}

#seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #f0f;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

#seek-bar::-moz-range-thumb {
  cursor: pointer;
  background: #f0f;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

#time-display {
  color: #666;
  text-align: right;
  font-variant-numeric: tabular-nums;
  min-width: 6rem;
  font-size: .75rem;
}
