/* ── Dev tab (DCOSMOS-EXOTICS) + fx toggle (DCOSMOS-BLOOM) ─────── */

/* The options toggle mirrors the sound toggle, one seat to its left
   (DCOSMOS-TARGETRINGS: it opens the options sheet, which holds the
   bloom toggle along with the other settings). */
#optionsToggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 200;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  opacity: 0.6;
}
#optionsToggle:hover { opacity: 1; border-color: var(--accent); }
#optionsToggle.open { opacity: 1; border-color: var(--accent); color: var(--accent); }

.options-sheet {
  position: fixed;
  top: 60px;
  right: 16px;
  z-index: 210;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
.options-sheet[hidden] { display: none; }
.options-title {
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 1px;
  display: flex; justify-content: space-between; align-items: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.options-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 2px;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}
.options-row input[type="checkbox"] {
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
}
.options-row input[type="range"] {
  flex: 1;
  accent-color: var(--accent);
  cursor: pointer;
}
.vol-row span { min-width: 54px; }
.options-row select {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  margin-left: auto;
}
