#txc-radio {
    position: fixed;
    z-index: 99999;
    width: 3.25rem;
    height: 3.25rem;
  }
  @media (max-width: 1199.98px) {
    #txc-radio {
      right: 1rem;
      bottom: calc(1rem + 3.25rem + 0.75rem);
    }
  }
  @media (min-width: 1200px) {
    #txc-radio {
      right: 2rem;
      bottom: calc(2rem + 3.25rem + 0.75rem);
    }
  }
  #txc-radio .txc-unit {
    position: absolute;
    right: 0;
    left: auto;
    bottom: 0;
    width: 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  #txc-radio .txc-card {
    position: absolute;
    right: 0;
    left: auto;
    transform: none;
    width: 15rem;
    height: 7.5rem;
    border-radius: 12px;
    background: var(--txc-card-bg, #353d97);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    bottom: 0;
  }
  #txc-radio .txc-min {
    position: absolute;
    left: -14rem;
    bottom: 4.5rem;
    --txc-min-transform: none;
    transform: var(--txc-min-transform);
    background: var(--txc-min-bg, #f67619);
    color: #fff;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      background 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
    animation: txc-min-pulse 2.4s ease-in-out infinite;
  }
  #txc-radio .txc-min:hover {
    background: var(--txc-min-bg-hover, #e75b0f);
    transform: var(--txc-min-transform) scale(1.08);
    animation-play-state: paused;
  }
  #txc-radio .txc-min:active {
    transform: var(--txc-min-transform) scale(0.95);
  }
  #txc-radio .txc-min:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
  }
  #txc-radio .txc-logo-wrap {
    position: relative;
    width: 100%;
    top: -5.5rem;
    display: flex;
    justify-content: center;
  }
  #txc-radio .txc-logo {
    max-width: 150px;
    width: auto;
    height: auto;
    z-index: 50;
  }
  #txc-radio .txc-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    outline: 0;
    appearance: none;
    z-index: 1;
  }
  #txc-radio .txc-btn:before,
  #txc-radio .txc-btn:after {
    display: none;
  }
  #txc-radio.txc-small .txc-card {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
  }
  #txc-radio.txc-small .txc-logo {
    display: none;
  }
  #txc-radio.txc-small .txc-min {
    left: 50%;
    top: -2rem;
    --txc-min-transform: translate(-50%, 0);
    transform: var(--txc-min-transform);
  }
  #txc-radio.txc-small .txc-min:hover {
    transform: var(--txc-min-transform) scale(1.08);
  }
  #txc-radio.txc-small .txc-min:active {
    transform: var(--txc-min-transform) scale(0.95);
  }
  
  @keyframes txc-min-pulse {
    0%,
    100% {
      transform: var(--txc-min-transform) scale(1);
    }
    50% {
      transform: var(--txc-min-transform) scale(1.06);
    }
  }
  #txc-radio canvas {
    width: 100%;
    height: 100%;
    display: block;
  }
  #txc-radio .txc-hidden {
    display: none;
  }
  