#token-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    gap: 1px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .token {
    animation: pulse 3s infinite ease-in-out;
  }
  
  @keyframes pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
  }
  

  
  .token {
    flex: 1 0 auto;
    height: 20px;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    overflow: hidden;
    max-width: 6px;
    min-width: 2px;
  }
  
  
  .token:hover {
    transform: scale(1.4);
    z-index: 2;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  }
  
  .token-start {
    animation: token-ping 0.6s ease-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  
  @keyframes token-ping {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0px rgba(0, 0, 0, 0.0);
    }
    50% {
      transform: scale(1.5);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0px rgba(0, 0, 0, 0.0);
    }
  }
  