.special-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 1px;
    background-color: transparent;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: background-color 0.3s ease;
  
    &::before {
      content: '';
      position: absolute;
      inset: 0;
      filter: blur(12px);
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1),  /* white */
        rgba(0, 20, 255, 1),     /* violet */
        rgba(255, 120, 0, 1)     /* orange */
      );
      animation: rotate-background 8s linear infinite;
      z-index: 1;
      pointer-events: none;
    }
  
    &:hover .special-button-content {
        background-color: var(--special-button-hover-bg);
        box-shadow: inset 0 0 0 0px var(--surface-border);
    }
  }
  
  .special-button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0 0.75rem;
    height: 2rem;
    border-radius: 0.375rem;
    background-color: var(--special-button-bg);
    transition: background-color 0.3s ease;
    box-shadow: inset 0 0 0 .5px var(--surface-border);
  }
  
  @keyframes rotate-background {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  