
/* ——— Minimal DJ hero (orb-first) ——— */
.dj-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem 1rem 2rem;
  min-height: calc(100dvh - var(--velo-topbar-h) - var(--velo-nav-h) - var(--velo-player-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.dj-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.dj-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--velo-accent);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.dj-live-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--velo-accent);
  animation: dj-live-blink 1.4s ease-in-out infinite;
}

@keyframes dj-live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.dj-hero__orb-wrap {
  position: relative;
  width: min(500px, 94vw);
  height: min(500px, 94vw);
  display: grid;
  place-items: center;
  margin: 0.5rem 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: none;
}

.dj-hero__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(56, 232, 255, 0.8);
}

.dj-hero__title {
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 800;
  color: var(--velo-text-primary);
}

.dj-hero__artist {
  font-size: 0.9rem;
  color: var(--velo-text-secondary);
}

.dj-announcer {
  min-height: 1.5rem;
  max-width: 24rem;
  margin: 0;
  font-size: 0.92rem;
  color: rgba(56, 232, 255, 0.9);
}

.dj-hero__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.dj-btn--start {
  min-width: 180px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.dj-controls--playing {
  display: flex;
  gap: 0.65rem;
}

.dj-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

.dj-filter-select {
  min-width: 120px;
  max-width: 160px;
}

.dj-status {
  font-size: 0.82rem;
  color: var(--velo-text-muted);
  min-height: 1.2rem;
}

.dj-queue-drawer {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dj-queue-drawer summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--velo-text-secondary);
  list-style: none;
}

.dj-queue-drawer summary::-webkit-details-marker { display: none; }

.dj-stage--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.dj-mixing {
  position: fixed;
  bottom: calc(var(--velo-player-h) + var(--velo-nav-h) + 1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(56, 232, 255, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.dj-mixing.is-active {
  opacity: 1;
}

.dj-header,
.dj-layout,
.dj-sidebar,
.dj-start-overlay,
.dj-ambient {
  display: none !important;
}
