.eq-visualizer-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  bottom: 80px;
}

.eq-bars-group {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
}

.eq-bar {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
}

.eq-segment {
  width: 32px;
  height: 14px;
  border-radius: 9px;
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.eq-segment.eq-hidden {
  opacity: 0;
}

/* Optional grid background - wrap in container if needed */
.eq-grid-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #666666 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

/* Day/Night Toggle Switch */
.theme-toggle {
  position: fixed;
  top: 25px;
  right: 70px;
  z-index: 1000;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #1a1a1a;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.day-mode .toggle-switch {
  background: #e0e0e0;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

body.day-mode .toggle-slider {
  transform: translateX(30px);
}

/* Grid background adjustment for day/night */
.eq-grid-background {
  transition: opacity 0.3s ease;
}

body.day-mode .eq-grid-background {
  background-image: radial-gradient(circle, #999999 1px, transparent 1px);
  opacity: 0.5;
}

body.day-mode {
  background: #ffffff;
}

