/* ==========================================================================
   WS2812B NeoPixel Shift Light - Module Specific Overrides
   ========================================================================== */

:root {
  --accent-color: var(--accent-amber);
  --accent-color-glow: var(--accent-amber-glow);
  --accent-color-dim: rgba(255, 140, 0, 0.12);
}

/* Back Link Hover styling */
.back-hub-link:hover {
  color: var(--accent-amber) !important;
  transform: translateX(-3px);
}

/* Specific wiring section adjustments */
#shift-schematic-svg {
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.6));
}

/* Metallic Accelerator Pedal Button */
.pedal-btn {
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, #1b202c, #0d0e15);
  border: 2px solid #2e3549;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 
    0 8px 0 #07080c,
    0 15px 20px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pedal metal grooves */
.pedal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    #fff 10px,
    #fff 13px
  );
}

.pedal-btn span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 1;
  transition: var(--transition-smooth);
}

.pedal-btn:hover span {
  color: var(--text-primary);
}

.pedal-btn:active {
  transform: translateY(6px);
  box-shadow: 
    0 2px 0 #07080c,
    0 5px 10px rgba(0,0,0,0.5);
}

.pedal-btn:active span {
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-color-glow);
}

/* Virtual Shift Light LED strip display panel */
.neopixel-display-bar {
  background: #080a0f;
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  border-radius: 10px;
}

.display-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}

.neopixel-leds-strip {
  display: flex;
  justify-content: space-between;
  background: #050608;
  border: 1px solid #1a1e2b;
  padding: 0.75rem;
  border-radius: 8px;
  gap: 0.5rem;
}

.pixel-led {
  flex: 1;
  height: 18px;
  border-radius: 50%;
  background-color: #21252d;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.6);
  transition: background-color 0.1s ease, box-shadow 0.15s ease;
}
