  .floating-help-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
  }

  .widget-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
  }

  .widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #04aff5 0%, #007bff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .headset-icon {
    width: 22px;
    height: 22px;
    color: white;
  }

  .help-text {
    color: white;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  .connect-button {
    background: linear-gradient(135deg, #04aff5 0%, #007bff 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  .connect-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff9d5c 0%, #ff7b45 100%);
  }

  .connect-button:active {
    transform: translateY(0);
  }

  /* Responsive adjustments */
  @media (max-width: 640px) {
    .floating-help-widget {
      bottom: 16px;
      right: 16px;
    }

    .widget-content {
      min-width: 260px;
      padding: 14px 16px;
    }
  }
