      /* Fear & Greed Gradient Bar */
      .fg-bar {
        position: relative;
        height: 10px;
        border-radius: 6px;
        background: linear-gradient(
          to right,
          #dc3545 0%,
          #dc3545 25%,
          /* Extreme Fear */ #fd7e14 40%,
          /* Fear */ #adb5bd 50%,
          /* Neutral */ #6c757d 60%,
          #198754 75%,
          /* Greed */ #198754 100% /* Extreme Greed */
        );
      }

      .fg-marker {
        position: absolute;
        top: -4px;
        width: 2px;
        height: 18px;
        background: var(--vz-body-color);
        transition: left 0.6s ease;
      }